
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(180deg,#ffeef5,#ffdbe9,#fff6fa);
    color:#5e4b56;
}


header{
    background:linear-gradient(135deg,#ffb6c1,#ffc8d8);
    text-align:center;
    color:white;
    padding:80px 20px;
    box-shadow:0 8px 20px rgba(255,182,193,.5);
}

header h1{
    font-size:4rem;
    margin-bottom:20px;
}

header p{
    font-size:1.4rem;
    margin-bottom:30px;
}


button{
    background:white;
    color:#ff69b4;
    border:none;
    padding:15px 35px;
    margin:10px;
    border-radius:50px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.4s;
}

button:hover{
    background:#ff69b4;
    color:white;
    transform:scale(1.1);
    box-shadow:0 8px 20px rgba(255,105,180,.5);
}


main{
    width:90%;
    max-width:1300px;
    margin:40px auto;
}

.conteudo{
    background:white;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

section{
    margin:70px 0;
}

h2{
    color:#ff69b4;
    font-size:2.2rem;
    margin-bottom:20px;
    border-left:8px solid #ffb6c1;
    padding-left:15px;
}

p{
    font-size:18px;
    text-align:justify;
    line-height:1.8;
}


.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:40px;
}

.card{
    background:#fff0f5;
    padding:30px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    cursor:pointer;
}

.card:hover{
    transform:translateY(-12px);
    background:#ffd6e7;
    box-shadow:0 10px 25px rgba(255,105,180,.3);
}

.card h3{
    color:#ff1493;
    margin-bottom:15px;
}


ul{
    list-style:none;
    margin-top:30px;
}

li{
    background:#ffe8f1;
    margin:15px 0;
    padding:18px;
    border-radius:15px;
    transition:.4s;
    font-size:18px;
}

li:hover{
    background:#ffb6c1;
    color:white;
    transform:translateX(15px);
}


blockquote{
    margin-top:50px;
    background:linear-gradient(135deg,#ffb6c1,#ffc8dd);
    color:white;
    padding:40px;
    border-radius:20px;
    text-align:center;
    font-size:24px;
    transition:.4s;
}

blockquote:hover{
    transform:scale(1.03);
}


.galeria{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:40px;
}

.galeria img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:20px;
    transition:.4s;
}

.galeria img:hover{
    transform:scale(1.05);
}


.botoes{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    margin-top:50px;
}

.btn{
    background:#ff69b4;
    color:white;
    text-decoration:none;
    padding:18px 35px;
    border-radius:40px;
    font-weight:bold;
    transition:.4s;
}

.btn:hover{
    background:#ff1493;
    transform:translateY(-8px);
}


footer{
    margin-top:80px;
    background:#ffb6c1;
    color:white;
    text-align:center;
    padding:40px;
}


::-webkit-scrollbar{
    width:12px;
}

::-webkit-scrollbar-thumb{
    background:#ff69b4;
    border-radius:20px;
}

::-webkit-scrollbar-track{
    background:#ffeef5;
}


@keyframes aparecer{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

header,
section,
.card,
blockquote{
    animation:aparecer 1s ease;
}


@media(max-width:768px){

header h1{
    font-size:2.5rem;
}

h2{
    font-size:1.8rem;
}

button{
    width:100%;
}

.card{
    padding:20px;
}

blockquote{
    font-size:20px;
}

}