/* =======================================================
   Maria Aparecida Constantino
   style.css
   Parte 1
   Base + Header + Hero
======================================================= */


/* =======================================================
RESET
======================================================= */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:#F7F3EE;

    color:#3D3A37;

    font-family:'Karla',sans-serif;

    font-size:18px;

    line-height:1.8;

    overflow-x:hidden;

}

img{

    display:block;

    width:100%;

    height:auto;

}

a{

    color:inherit;

    text-decoration:none;

}

button{

    border:none;

    background:none;

    cursor:pointer;

}

ul{

    list-style:none;

}


/* =======================================================
VARIÁVEIS
======================================================= */

:root{

    --bg:#F7F3EE;

    --white:#FFFFFF;

    --text:#3D3A37;

    --text-light:#6B6762;

    --primary:#7B8F74;

    --primary-dark:#657A60;

    --border:#E9E1D8;

    --detail:#CBBDAE;

    --shadow:

        0 20px 50px rgba(0,0,0,.06);

    --radius:18px;

    --transition:.35s;

}


/* =======================================================
TIPOGRAFIA
======================================================= */

h1,
h2,
h3{

    font-family:'Fraunces',serif;

    font-weight:400;

    line-height:1.15;

    color:var(--text);

}

h1{

    font-size:clamp(42px, 4.45vw, 64px);

    margin-bottom:32px;

}

h2{

    font-size:46px;

    margin-bottom:26px;

}

h3{

    font-size:28px;

    margin-bottom:18px;

}

p{

    color:var(--text-light);

    margin-bottom:20px;

}

.section-label{

    display:inline-block;

    margin-bottom:18px;

    color:var(--primary);

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:.82rem;

    font-weight:700;

}


/* =======================================================
CONTAINER
======================================================= */

.container{

    width:min(1180px,92%);

    margin:auto;

}

section{

    padding:120px 0;

}


/* =======================================================
BOTÕES
======================================================= */

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 34px;

    background:linear-gradient(

        180deg,

        #88A081,

        #6E8468

    );

    color:white;

    border-radius:999px;

    font-weight:700;

    transition:var(--transition);

    box-shadow:

        0 14px 30px rgba(103,122,96,.22);

}

.btn-primary:hover{

    transform:translateY(-3px);

    background:linear-gradient(

        180deg,

        #73896C,

        #5F735A

    );

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 32px;

    border-radius:999px;

    border:1px solid var(--detail);

    transition:var(--transition);

}

.btn-secondary:hover{

    background:white;

}


/* =======================================================
HEADER
======================================================= */

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    transition:.4s;

}

.header-scroll{
    background: rgba(250,247,242,.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 6px 24px rgba(0,0,0,.06);
    padding: 12px 0;
    transition: all .35s ease;
}

.header-container{

    min-height:84px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:clamp(18px, 2.5vw, 38px);

}

.logo-title{

    font-family:'Fraunces',serif;

    font-size:clamp(18px, 1.7vw, 24px);

    line-height:1.15;

    white-space:nowrap;

}

.logo-subtitle{

    color:var(--text-light);

    font-size:.8rem;

}

.menu{

    display:flex;

    gap:clamp(16px, 2.5vw, 38px);

}

.menu a{
   position:relative;   
   transition:
      color .25s ease,
      opacity .25s ease;
}

.menu a:hover{
    color: var(--primary);
}

.menu a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:var(--transition);

}

.menu a:hover::after{

    width:100%;

}
.menu a.active{
    color: var(--primary);
    font-weight: 600;
}

.menu a.active::after{
    width: 100%;
}
.btn-header{

    padding:clamp(10px, 1.1vw, 14px)
             clamp(16px, 2vw, 26px);

    border-radius:999px;

    background:var(--primary);

    color:white;

    font-size:clamp(.82rem, 1vw, 1rem);

    font-weight:700;

    white-space:nowrap;

    flex-shrink:1;

    transition:var(--transition);

}

.btn-header:hover{

    background:var(--primary-dark);

}

/* Botão hamburguer (menu mobile) — oculto por padrão no desktop.
   Precisa vir ANTES dos media queries para que a regra de exibição
   em @media(max-width:768px) consiga sobrepor este "display:none". */
.menu-toggle{

    display:none;

    width:28px;

    height:20px;

    flex-direction:column;

    justify-content:space-between;

    position:relative;

    z-index:1000;

}

.menu-toggle span{

    display:block;

    width:100%;

    height:2px;

    background:var(--text);

    border-radius:2px;

    transition:transform .3s ease, opacity .3s ease;

}


/* =======================================================
HERO
======================================================= */

#hero{

    min-height:92vh;

    display:flex;

    align-items:center;

    padding-top:110px;

}

.hero-grid{

    display:grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 560px);

    gap:clamp(32px, 4vw, 56px);

    align-items:center;

}

.hero-content{
    max-width:760px;
    margin-top:-18px;
}

.hero-labels {

    display:grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    justify-content:center;
    align-items:center;

    gap:clamp(8px, 1.4vw, 22px);

    width:calc(100% - 48px);

    margin:2rem auto 0;

}

.hero-label {

    width:100%;
    min-width:0;
    min-height:54px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:10px 8px;

    border:1px solid var(--border);
    border-radius:999px;

    background:rgba(255,255,255,.82);

    font-size:clamp(.78rem, .72vw, .92rem);
    line-height:1.25;

    text-align:center;

    white-space:nowrap;

}

.hero-content p{
    max-width:650px;
    margin-top:36px;
    margin-bottom:36px;
    line-height:1.95;
}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}


/* =======================================================
   FOTO HERO
   Rev5.2 — fotografia retangular
======================================================= */

.hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    min-width:0;
}

.hero-photo{

    width:100%;
    max-width:560px;

    margin:0 auto;

    overflow:hidden;

    border-radius:18px;

    background:var(--white);

    box-shadow:
        0 22px 55px rgba(0,0,0,.08);

}

.hero-photo img{
    display:block;
    width:100%;
    height:auto;
    object-fit:cover;
    transition:transform .7s ease;
}

.hero-photo:hover img{
    transform:scale(1.015);
}


/* =======================================================
RESPONSIVO
======================================================= */

@media(max-width:1100px){

    .hero-grid{

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 46%);

    gap:clamp(24px, 3vw, 42px);

    }

    .hero-content{

        margin-top:0;

    }

    .hero-labels{

    width:calc(100% - 32px);

    gap:clamp(6px, 1.1vw, 16px);

    }

    .hero-label{

        font-size:clamp(.68rem, .8vw, .82rem);

    }

    .hero-content p{

        max-width:100%;

    }

    .hero-photo{

        width:100%;

        max-width:none;

    }

}
@media(max-width:900px){

    .hero-labels{

        grid-template-columns:1fr;

        width:min(100%, 360px);

        gap:10px;

    }

    .hero-label{

        width:100%;

    }

}
@media(max-width:820px){

    #hero{

        padding-top:110px;

    }

    .hero-grid{

        grid-template-columns:1fr;

        gap:48px;

        text-align:center;

    }

    .hero-content{

        max-width:760px;

        margin:0 auto;

    }

    .hero-labels{

        justify-content:center;

    }

    .hero-content p{

        margin-inline:auto;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-image{

        justify-content:center;

        order:initial;

    }

    .hero-photo{

        width:100%;

        max-width:560px;

        margin:0 auto;

    }

}

@media(max-width:920px){

    .logo-title{

        font-size:19px;

    }

    .logo-subtitle{

        font-size:.72rem;

    }

    .menu{

        gap:14px;

    }

    .menu a{

        font-size:.88rem;

    }

    .btn-header{

        padding:10px 15px;

        font-size:.78rem;

    }

}

@media(max-width:768px){

h1{

    font-size:46px;

}

h2{

    font-size:34px;

}





.menu{

    display:none;

}

.menu-toggle{

    display:flex;

}

.menu-toggle.open span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2){
    opacity:0;
}

.menu-toggle.open span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

.menu.open{

    display:flex;

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    flex-direction:column;

    align-items:center;

    gap:0;

    background:white;

    padding:8px 0 18px;

    box-shadow:0 20px 30px rgba(0,0,0,.08);

}

.menu.open li{

    width:100%;

    text-align:center;

}

.menu.open a{

    display:block;

    padding:16px 0;

}

.btn-header{

    display:none;

}
.logo{

    min-width:0;

}

.logo-title{

    white-space:nowrap;

    font-size:18px;

}
section{

    padding:90px 0;

}

}

/* =======================================================
   PARTE 2
   SOBRE
   COMO A PSICOTERAPIA PODE AJUDAR
   ABORDAGEM
======================================================= */



/* =======================================================
SOBRE
======================================================= */

#sobre{

    background:#FCFAF7;

}

.sobre-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:90px;

    align-items:center;

}

.sobre-imagem{

    display:flex;

    justify-content:center;

}

.sobre-card{

    width:100%;

    max-width:400px;

    border-radius:28px;

    overflow:hidden;

    background:white;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.sobre-card img{

    width:100%;

    height:560px;

    object-fit:cover;

}

.sobre-conteudo{

    max-width:700px;

}

.sobre-conteudo p{

    margin-bottom:26px;

}

.sobre-tags{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:flex-start;
    gap:12px;
    width:100%;
    margin-top:34px;
}

.sobre-tags span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 1 auto;
    padding:12px 18px;
    background:white;
    border:1px solid var(--border);
    border-radius:999px;
    color:var(--primary);
    font-size:.90rem;
    white-space:nowrap;
    transition:.30s;
}

.sobre-tags span:hover{

    transform:translateY(-2px);

    background:var(--primary);

    color:white;

}



/* =======================================================
SECTION HEADER
======================================================= */

.section-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.section-header p{

    margin-top:18px;

}



/* =======================================================
AJUDA
======================================================= */

#ajuda{

    background:var(--bg);

}
/* =======================================================
   CONTEÚDO DA SEÇÃO AJUDA
======================================================= */

.ajuda-conteudo{
    width:min(860px,100%);
    margin:0 auto;
}

.ajuda-bloco{
    padding:38px 0;
    border-top:1px solid var(--border);
}

.ajuda-bloco:last-child{
    border-bottom:1px solid var(--border);
}

.ajuda-bloco h3{
    margin-bottom:18px;
    font-size:clamp(24px,2.2vw,30px);
    line-height:1.25;
}

.ajuda-bloco p{
    max-width:820px;
    margin-bottom:20px;
    line-height:1.85;
}

.ajuda-bloco p:last-child{
    margin-bottom:0;
}



/* =======================================================
ABORDAGEM
======================================================= */

#abordagem{

    background:#FCFAF7;

}



/* =======================================================
GRID ABORDAGEM
======================================================= */

.abordagem-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

    margin-top:60px;

}



/* =======================================================
ITEM ABORDAGEM
======================================================= */

.abordagem-grid article{

    text-align:center;

    padding:50px 36px;

    border-radius:24px;

    background:white;

    box-shadow:

        0 12px 35px rgba(0,0,0,.05);

    transition:.35s;

}

.abordagem-grid article:hover{

    transform:translateY(-6px);

    box-shadow:

        0 25px 55px rgba(0,0,0,.08);

}

.abordagem-icone{

    width:82px;

    height:82px;

    margin:0 auto 28px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#F1ECE5;

    font-size:34px;

}

.abordagem-grid h3{

    margin-bottom:18px;

}

.abordagem-grid p{

    margin-bottom:0;

}



/* =======================================================
EFEITOS GERAIS
======================================================= */

.card,
.abordagem-grid article,
.sobre-card{

    transition:

        transform .35s,

        box-shadow .35s;

}

.sobre-card:hover{

    transform:translateY(-6px);

    box-shadow:

        0 30px 65px rgba(0,0,0,.08);

}



/* =======================================================
RESPONSIVO
======================================================= */

@media(max-width:1100px){

.sobre-grid{

    grid-template-columns:1fr;

    gap:60px;

    text-align:center;

}

.sobre-conteudo{

    max-width:100%;

}

.sobre-tags{

    justify-content:center;

}



.abordagem-grid{

    grid-template-columns:1fr;

}

}



@media(max-width:768px){

.sobre-card{

    max-width:340px;

    margin:auto;

}

.sobre-card img{

    height:470px;

}

.card{

    padding:34px;

}

.abordagem-grid article{

    padding:38px 28px;

}

.section-header{

    margin-bottom:50px;

}

}



/* =======================================================
PARTE 3A
CONTATO
FORMULÁRIO
CTA FINAL
WHATSAPP
=======================================================*/



/* =======================================================
CONTATO
======================================================= */

#contato{

    background:#FCFAF7;

}

.contato-grid{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:80px;

    align-items:start;

}

.contato-info h2{

    margin-bottom:24px;

}

.contato-info>p{

    margin-bottom:42px;

    max-width:360px;

}



/* =======================================================
LISTA CONTATO
======================================================= */

.contato-lista{

    display:flex;

    flex-direction:column;

    gap:22px;

    margin-bottom:42px;

}

.contato-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

}

.contato-icone{

    width:54px;

    height:54px;

    border-radius:50%;

    background:#F2EEE7;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    flex-shrink:0;

}

.contato-item strong{

    display:block;

    margin-bottom:6px;

    font-family:'Fraunces',serif;

    font-size:1.05rem;

}

.contato-item span{

    color:var(--text-light);

    font-size:.95rem;

    line-height:1.6;

}



/* =======================================================
SOCIAL
======================================================= */

.social-links{

    display:flex;

    gap:16px;

    flex-wrap:wrap;

}

.social-links a{

    padding:12px 22px;

    border-radius:999px;

    border:1px solid var(--border);

    background:white;

    transition:.30s;

    font-size:.92rem;

}

.social-links a:hover{

    background:var(--primary);

    color:white;

}



/* =======================================================
FORMULÁRIO
======================================================= */

.contato-formulario{

    background:white;

    padding:54px;

    border-radius:26px;

    box-shadow:

        0 25px 60px rgba(0,0,0,.05);

}

.form-group{

    display:flex;

    flex-direction:column;

    margin-bottom:26px;

}

.form-group label{

    margin-bottom:10px;

    font-weight:700;

    color:var(--text);

}

.form-group input,

.form-group textarea{

    width:100%;

    padding:18px 22px;

    background:#FBFBFB;

    border:1px solid #E4DDD3;

    border-radius:14px;

    font-size:1rem;

    font-family:'Karla',sans-serif;

    transition:.30s;

    resize:none;

}

.form-group input:focus,

.form-group textarea:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:

        0 0 0 4px rgba(123,143,116,.10);

}

.btn-full{

    width:100%;

}



/* =======================================================
CTA FINAL
======================================================= */

#cta-final{

    padding:110px 0;

    background:var(--bg);

}

.cta-box{

    background:white;

    padding:70px;

    border-radius:30px;

    text-align:center;

    box-shadow:

        0 20px 55px rgba(0,0,0,.05);

}

.cta-box h2{

    margin-bottom:24px;

}

.cta-box p{

    max-width:640px;

    margin:0 auto 36px;

}



/* =======================================================
BOTÃO FLUTUANTE
======================================================= */

.whatsapp-float{

    position:fixed;

    right:34px;

    bottom:34px;

    width:68px;

    height:68px;

    border-radius:50%;

    background:linear-gradient(

        180deg,

        #88A081,

        #6F8669

    );

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:.78rem;

    font-weight:700;

    text-align:center;

    box-shadow:

        0 18px 35px rgba(103,122,96,.30);

    z-index:900;

    transition:.35s;

}

.whatsapp-float:hover{

    transform:

        translateY(-5px)

        scale(1.04);

}



/* =======================================================
BOTÃO VOLTAR AO TOPO
======================================================= */

.scroll-top{

    position:fixed;

    right:34px;

    bottom:114px;

    width:52px;

    height:52px;

    border-radius:50%;

    background:linear-gradient(

        180deg,

        #88A081,

        #6F8669

    );

    color:white;

    font-size:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:

        0 14px 30px rgba(103,122,96,.28);

    z-index:900;

    transition:.3s;

}

.scroll-top:hover{

    transform:translateY(-4px);

}

@media(max-width:768px){

.scroll-top{

    width:44px;

    height:44px;

    right:20px;

    bottom:86px;

}

}



/* =======================================================
RESPONSIVO
======================================================= */

@media(max-width:1100px){

.contato-grid{

    grid-template-columns:1fr;

}

.contato-info{

    text-align:center;

}

.contato-info>p{

    margin-inline:auto;

}

.contato-lista{

    align-items:center;

}

.social-links{

    justify-content:center;

}

}



@media(max-width:768px){

.contato-formulario{

    padding:36px;

}

.cta-box{

    padding:46px 30px;

}

.whatsapp-float{

    width:58px;

    height:58px;

    right:20px;

    bottom:20px;

}

}

/* =======================================================
FOOTER
======================================================= */

footer{

    background:#ECE6DE;
    padding:80px 0 40px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

    align-items:flex-start;

}

.footer-brand h3{

    margin-bottom:16px;

}

.footer-brand p{

    margin-bottom:8px;

}

.footer-menu{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.footer-menu a{

    color:var(--text-light);

    transition:.30s;

}

.footer-menu a:hover{

    color:var(--primary);

    transform:translateX(6px);

}

.footer-copy{

    text-align:right;

}

.footer-copy p{

    font-size:.90rem;

    margin-bottom:10px;

}



/* =======================================================
LINKS
======================================================= */

a{

    transition:

        color .30s,

        background .30s,

        transform .30s;

}



/* =======================================================
SCROLL REVEAL
======================================================= */

.reveal{

    opacity:0;

    transform:translateY(40px);

    transition:

        opacity .8s ease,

        transform .8s ease;

}

.reveal.active{

    opacity:1;

    transform:none;

}



/* =======================================================
IMAGENS
======================================================= */

img{

    user-select:none;

    -webkit-user-drag:none;

}



.sobre-card img{

    transition:transform .7s ease;

}



.sobre-card:hover img{

    transform:scale(1.05);

}



/* =======================================================
FOCUS
======================================================= */

a:focus-visible,

button:focus-visible,

input:focus-visible,

textarea:focus-visible{

    outline:3px solid rgba(123,143,116,.45);

    outline-offset:4px;

}



/* =======================================================
SELEÇÃO
======================================================= */

::selection{

    background:#88A081;

    color:white;

}



/* =======================================================
SCROLLBAR
======================================================= */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#F3EEE7;

}

::-webkit-scrollbar-thumb{

    background:#B8AA9A;

    border-radius:999px;

}

::-webkit-scrollbar-thumb:hover{

    background:#8A9D84;

}



/* =======================================================
REDUÇÃO DE MOVIMENTO
======================================================= */

@media (prefers-reduced-motion:reduce){

*{

    animation:none !important;

    transition:none !important;

    scroll-behavior:auto !important;

}

}



/* =======================================================
RESPONSIVIDADE
======================================================= */

@media(max-width:980px){

.footer-grid{

    grid-template-columns:1fr;

    gap:45px;

}

.footer-copy{

    text-align:left;

}

}



@media(max-width:768px){

body{

    font-size:17px;

}

.container{

    width:min(94%,1200px);

}

h1{

    font-size:42px;

}

h2{

    font-size:32px;

}
.ajuda-conteudo{
    width:100%;
}

.ajuda-bloco{
    padding:30px 0;
}

.ajuda-bloco h3{
    font-size:22px;
    line-height:1.3;
}

.ajuda-bloco p{
    line-height:1.75;
}   
.hero-image{
    justify-content:center;
}

.hero-photo{
    max-width:520px;
    border-radius:16px;
}
h3{

    font-size:24px;

}

.hero-label{

    display:block;

    width:fit-content;

    margin-inline:auto;

}

.hero-buttons{

    flex-direction:column;

}

.btn-primary{
   padding: 14px 28px;
   font-size: .95rem;
   border-radius: 999px;
}

.btn-secondary{

    width:100%;

}

.social-links{

    flex-direction:column;

}

.social-links a{

    text-align:center;

}

.footer-menu{

    gap:12px;

}

}



/* =======================================================
TELAS MUITO GRANDES
======================================================= */

@media(min-width:1500px){

.container{

    width:min(1280px,90%);

}

.hero-grid{

    gap:120px;

}

}



/* =======================================================
MICROINTERAÇÕES
======================================================= */

.card,
.abordagem-grid article,
.contato-formulario,
.cta-box,
.sobre-card{

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}



/* =======================================================
UTILITÁRIOS
======================================================= */

.text-center{

    text-align:center;

}

.mt-1{

    margin-top:12px;

}

.mt-2{

    margin-top:24px;

}

.mt-3{

    margin-top:36px;

}

.mb-1{

    margin-bottom:12px;

}

.mb-2{

    margin-bottom:24px;

}

.mb-3{

    margin-bottom:36px;

}



/* =======================================================
FIM DO ARQUIVO
=======================================================*/
