*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Lato", sans-serif;
    background:#fcf8f2;
    color:#4a3e32;
}

/* CONTAINER */
.container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* HEADER */
header{
    position:fixed;
    top:0;
    width:100%;
    background:#f1e7dc;
    box-shadow:0 2px 14px rgba(0,0,0,.05);
    z-index:1000;
}

.header-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:18px;
}

.logo-area img{
    width:70px;
    height:70px;
    border-radius:50%;
    object-fit:cover;
}

.title-block h1{
    font-family:"Montserrat";
    font-size:22px;
    font-weight:700;
}

.title-block span{
    font-size:14px;
    color:#6d5a47;
}

nav a{
    margin-left:28px;
    text-decoration:none;
    font-family:"Montserrat";
    font-weight:600;
    font-size:15px;
    color:#4a3e32;
}

/* HERO */
.hero{
    margin-top:120px;
    padding:80px 0;
}

.hero-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-text h2{
    font-family:"Montserrat";
    font-size:36px;
    margin-bottom:15px;
}

.hero-text p{
    font-size:18px;
    line-height:1.7;
    max-width:420px;
}

.btn{
    display:inline-block;
    margin-top:22px;
    padding:14px 32px;
    background:#7e6a54;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
}

.hero-img img{
    width:420px;
    border-radius:12px;
    object-fit:cover;
    box-shadow:0 10px 30px rgba(0,0,0,.18);
}

/* SOBRE */
.sobre{
    display:flex;
    gap:60px;
    align-items:center;
    padding:100px 0;
}

.sobre-img img{
    width:420px;
    border-radius:18px;
}

.sobre-text h2{
    font-family:"Montserrat";
    font-size:32px;
    margin-bottom:20px;
}

.sobre-text p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:15px;
}

/* TERAPIAS */
.terapias{
    background:#f7f1e9;
    padding:110px 0;
    text-align:center;
}

.terapia-banner img{
    width:100%;
    max-width:900px;
    margin:40px auto;
    border-radius:16px;
}

/* TEXTO AJUSTADO */
.terapia-desc{
    max-width:720px;
    margin:0 auto 40px;
}

.texto-destaque{
    font-size:19px;
    font-weight:400;
    line-height:1.8;
    margin-bottom:18px;
    color:#4a3e32;
}

.cards{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
}

.card{
    width:260px;
    background:#f3e7d8;
    padding:22px;
    border-radius:14px;
    text-align:left;
}
/* AVALIAÇÕES */
.avaliacoes{
    background:#fcf8f2;
    padding:110px 0;
}

.avaliacoes h2{
    font-family:"Montserrat";
    font-size:32px;
    text-align:center;
    margin-bottom:50px;
}

.avaliacoes-lista{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
}

.avaliacao-card{
    background:#ffffff;
    max-width:480px;
    padding:28px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.avaliacao-header{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:15px;
}

.avaliacao-header img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.avaliacao-header h4{
    font-family:"Montserrat";
    font-size:16px;
    font-weight:600;
}

.estrelas{
    color:#f5b400;
    font-size:14px;
    margin-top:2px;
}

.avaliacao-card p{
    font-size:15px;
    line-height:1.7;
    color:#4a3e32;
}

/* CONTATO */
.contato{
    padding:110px 0;
    text-align:center;
}

.contato-img img{
    max-width:900px;
    width:100%;
    border-radius:16px;
    margin-bottom:25px;
}

.social-links{
    display:flex;
    justify-content:center;
    gap:20px;
    margin-top:30px;
}

.social-btn{
    padding:14px 30px;
    border-radius:8px;
    text-decoration:none;
    font-family:"Montserrat";
    font-weight:600;
    color:#fff;
}

.insta{background:#d64f82;}
.maps{background:#445eb5;}

/* WHATS */
.zap{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    background:#25d366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    font-size:32px;
    text-decoration:none;
}

/* FOOTER */
footer{
    background:#f1e7dc;
    padding:50px 0;
    text-align:center;
    font-size:14px;
}

/* RESPONSIVO */
@media (max-width: 900px){

    /* HEADER */
    nav{
        display:none;
    }

    .header-container{
        justify-content:center;
    }

    /* HERO */
    .hero{
        margin-top:100px;
        padding:60px 0;
    }

    .hero-container{
        flex-direction:column;
        text-align:center;
        gap:40px;
    }

    .hero-text h2{
        font-size:30px;
    }

    .hero-text p{
        font-size:16px;
    }

    .hero-img img{
        width:100%;
        max-width:420px;
    }

    /* SOBRE */
    .sobre{
        flex-direction:column;
        padding:70px 0;
        text-align:center;
    }

    .sobre-text h2{
        font-size:28px;
    }

    .sobre-text p{
        font-size:16px;
    }

    .sobre-img img{
        width:100%;
        max-width:420px;
    }

    /* TERAPIAS */
    .terapias{
        padding:70px 0;
    }

    .terapias h2{
        font-size:28px;
    }

    .texto-destaque{
        font-size:16px;
    }

    .cards{
        gap:20px;
    }

    .card{
        width:100%;
        max-width:320px;
        margin:0 auto;
    }

    /* AVALIAÇÕES */
    .avaliacoes{
        padding:70px 0;
    }

    .avaliacoes h2{
        font-size:28px;
    }

    .avaliacoes-lista{
        gap:20px;
    }

    .avaliacao-card{
        width:100%;
        max-width:360px;
        margin:0 auto;
    }

    /* CONTATO */
    .contato{
        padding:70px 0;
    }

    .contato h2{
        font-size:28px;
    }

    .social-links{
        flex-direction:column;
        gap:14px;
    }

    .social-btn{
        width:100%;
        max-width:280px;
        margin:0 auto;
    }
}

