 :root{
     --blue:#6f88a4;
     --blue-dark:#566f89;
     --blue-deep:#40566d;
     --blue-soft:#eef3f7;
     --cream:#fff8f3;
     --cream-2:#fbf1ea;
     --paper:#fffdf9;
     --text:#3f2014;
     --muted:#806f66;
     --gold:#d6b461;
     --gold-dark:#9f7532;
     --gold-gradient:linear-gradient(90deg,#b78335 0%,#fff7a6 52%,#c9963d 100%);
     --line:#efe2d8;
     --shadow:0 18px 44px rgba(63,32,20,.10);
     --radius:18px;
}
 *{
    box-sizing:border-box
}
html{
    scroll-behavior:smooth
}
body{
    margin:0;
    background:var(--cream);
    color:var(--text);
    font-family:Montserrat,Arial,sans-serif;
    font-size:16px;
    line-height:1.7
}
a{
    color:inherit;
    text-decoration:none
}
img{
    max-width:100%;
    height:auto
}
.container{
    width:min(1120px,calc(100% - 42px));
    margin:0 auto
}
.narrow{
    max-width:980px
}
.site-header{
    height:108px;
    background:rgba(255,248,243,.96);
    border-bottom:1px solid var(--line);
    position:sticky;
    top:0;
    z-index:50;
    backdrop-filter:blur(12px)
}
.header-inner{
    height:108px;
    display:flex;
    align-items:center;
    gap:28px
}
.site-brand{
    display:flex;
    align-items:center;
    flex:0 0 auto
}
.custom-logo-link,.brand-link{
    display:flex;
    align-items:center;
    width:203px;
    max-width:203px;
    height:108px;
    overflow:hidden
}
.custom-logo,.brand-link img{
    width:203px!important;
    max-width:203px!important;
    height:auto!important;
    max-height:84px!important;
    object-fit:contain!important;
    display:block;
    background:transparent!important;
    mix-blend-mode:multiply
}
.site-nav{
    flex:1;
    display:flex;
    justify-content:flex-end
}
.menu{
    display:flex;
    align-items:center;
    gap:24px;
    list-style:none;
    margin:0;
    padding:0
}
.menu a{
    font-size:13px;
    font-weight:800;
    color:var(--text);
    opacity:.9
}
.menu a:hover{
    color:var(--blue-dark)
}
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    padding:12px 20px;
    font-weight:800;
    font-size:14px;
    border:1px solid transparent;
    transition:.2s
}
.btn-primary{
    background:var(--blue);
    color:#fff;
    box-shadow:0 12px 25px rgba(111,136,164,.28)
}
.btn-primary:hover{
    background:var(--blue-dark);
    transform:translateY(-1px)
}
.btn-outline{
    border-color:rgba(111,136,164,.45);
    color:var(--blue-deep);
    background:rgba(255,255,255,.86)
}
.header-cta{
    padding:10px 16px
}
.menu-toggle{
    display:none;
    background:transparent;
    border:0;
    font-size:28px;
    color:var(--blue)
}
.hero{
    position:relative;
    min-height:720px;
    padding-top:20px;
    padding-bottom:20px;
    background:linear-gradient(90deg,rgba(255,248,243,.98) 0%,rgba(255,248,243,.92) 36%,rgba(238,243,247,.52) 68%,rgba(111,136,164,.16));
    overflow:hidden
}
.hero-bg{
    position:absolute;
    inset:20px 0;
    background-position:right center;
    background-size:cover;
    background-repeat:no-repeat;
    opacity:.82
}
.hero:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(255,248,243,.98) 0%,rgba(255,248,243,.82) 44%,rgba(255,248,243,.36) 100%)
}
.hero-content{
    position:relative;
    z-index:1;
    min-height:680px;
    display:flex;
    align-items:center
}
.hero-text{
    max-width:650px
}
.kicker{
    display:block;
    color:var(--blue);
    text-transform:uppercase;
    letter-spacing:.16em;
    font-size:12px;
    font-weight:900;
    margin-bottom:12px
}
.kicker:before{
    content:"";
    display:inline-block;
    width:34px;
    height:2px;
    background:var(--gold-gradient);
    vertical-align:middle;
    margin-right:8px
}
h1,h2,h3{
    line-height:1.08;
    margin:0 0 18px;
    color:var(--text)
}
h1{
    font-family:Georgia,'Times New Roman',serif;
    font-size:clamp(42px,6vw,74px);
    font-weight:700;
    letter-spacing:-.04em
}
h2{
    font-family:Georgia,'Times New Roman',serif;
    font-size:clamp(28px,3vw,42px);
    font-weight:700;
    letter-spacing:-.035em
}
h3{
    font-size:18px
}
.lead{
    font-size:18px;
    color:var(--muted);
    max-width:640px
}
.lead p,.hero-note p{
    margin:0 0 12px
}
.hero-note{
    font-weight:600;
    color:var(--text);
    font-size:14px;
    margin:22px 0
}
.actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap
}
.actions.center{
    justify-content:center
}
.hero-tags{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin-top:24px;
    max-width:640px
}
.hero-tags span{
    background:rgba(255,253,249,.96);
    border-radius:14px;
    padding:16px 18px;
    box-shadow:var(--shadow);
    font-weight:800;
    color:var(--text);
    border:1px solid var(--line)
}
.hero-tags small{
    display:block;
    font-weight:500;
    color:var(--muted);
    margin-top:4px
}
.section{
    padding:92px 0
}
.intro{
    background:var(--paper)
}
.intro p{
    font-size:17px;
    color:var(--muted)
}
.section-head{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:48px;
    align-items:end;
    margin-bottom:30px
}
.section-copy{
    color:var(--muted)
}
.cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px
}
.card{
    background:rgba(255,253,249,.98);
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:25px;
    box-shadow:var(--shadow)
}
.card p{
    color:var(--muted);
    font-size:14px
}
.card a{
    font-weight:900;
    color:var(--blue-dark);
    font-size:13px
}
.icon{
    width:38px;
    height:38px;
    border-radius:50%;
    background:var(--blue-soft);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--blue-dark);
    font-weight:900;
    margin-bottom:20px
}
.team-section{
    background:var(--cream-2)
}
.team-cards{
    grid-template-columns:repeat(4,1fr)
}
.avatar{
    height:190px;
    background:linear-gradient(135deg,var(--cream),var(--blue-soft));
    border-radius:14px;
    margin:-10px -10px 16px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden
}
.avatar span{
    width:72px;
    height:72px;
    border-radius:50%;
    background:var(--gold-gradient);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    color:var(--text)
}
.avatar img{
    width:100%;
    height:100%;
    object-fit:cover
}
.badge{
    display:inline-flex;
    background:var(--blue-soft);
    color:var(--blue-deep);
    border-radius:999px;
    padding:5px 10px;
    font-size:11px;
    font-weight:900
}
.difference{
    background:var(--blue-soft)
}
.split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:58px;
    align-items:center
}
.media-card{
    height:330px;
    border-radius:18px;
    background:url('../img/familia-caminho.svg') center/cover no-repeat;
    box-shadow:var(--shadow)
}
.checks{
    display:grid;
    gap:14px;
    margin-top:22px
}
.checks div{
    padding-left:34px;
    position:relative
}
.checks div:before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:22px;
    height:22px;
    border-radius:50%;
    background:var(--blue);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px
}
.checks p{
    margin:4px 0 0;
    color:var(--muted)
}
.faq-grid{
    display:grid;
    grid-template-columns:.8fr 1.4fr;
    gap:58px
}
.faq-list{
    display:grid;
    gap:10px
}
details{
    background:rgba(255,253,249,.98);
    border:1px solid var(--line);
    border-radius:14px;
    box-shadow:0 8px 24px rgba(63,32,20,.06)
}
summary{
    cursor:pointer;
    padding:18px;
    font-weight:900;
    color:var(--text)
}
details div{
    padding:0 18px 18px;
    color:var(--muted)
}
.quote-band{
    background:linear-gradient(135deg,var(--blue-deep),var(--blue));
    color:#fff
}
.quote-band h2,.quote-band .kicker,.quote-band p{
    color:#fff
}
.quote-band .kicker:before{
    background:var(--gold-gradient)
}
.quote-grid{
    display:grid;
    grid-template-columns:.8fr 1.3fr;
    gap:52px
}
.quote-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px
}
.quote-cards article{
    background:var(--paper);
    color:var(--text);
    padding:22px;
    border-radius:16px
}
.quote-cards article:nth-child(3){
    grid-column:1/2
}
.quote-cards p{
    color:var(--text)
}
.quote-cards strong{
    font-size:12px;
    color:var(--blue-dark)
}
.resources{
    grid-template-columns:repeat(3,1fr)
}
.resource-img{
    height:170px;
    border-radius:14px;
    background:linear-gradient(135deg,var(--cream-2),var(--blue-soft));
    margin-bottom:18px
}
.final-cta{
    text-align:center;
    background:var(--cream-2)
}
.final-cta .container{
    max-width:820px
}
.site-footer{
    background:#f2e8df;
    color:var(--text);
    padding:72px 0 28px;
    border-top:1px solid var(--line)
}
.footer-grid{
    display:grid;
    grid-template-columns:1.3fr .7fr 1fr 1fr;
    gap:42px
}
.footer-logo{
    width:203px;
    max-height:84px;
    object-fit:contain;
    background:transparent;
    margin-bottom:22px;
    mix-blend-mode:multiply
}
.site-footer a{
    display:block;
    margin:8px 0
}
.copyright{
    font-size:12px;
    color:var(--muted);
    padding-top:36px
}
.site-footer .btn{
    display:inline-flex;
    margin-top:14px
}
@media(max-width:900px){
    .site-nav,.header-cta{
        display:none
    }
    .menu-toggle{
        display:block;
        margin-left:auto
    }
    .site-nav.is-open{
        display:block;
        position:absolute;
        left:0;
        right:0;
        top:108px;
        background:var(--cream);
        padding:20px
    }
    .site-nav.is-open .menu{
        display:grid
    }
    .section-head,.split,.faq-grid,.quote-grid,.footer-grid{
        grid-template-columns:1fr
    }
    .cards,.team-cards,.resources{
        grid-template-columns:1fr 1fr
    }
    .hero-tags{
        grid-template-columns:1fr
    }
    .hero{
        min-height:auto
    }
    .hero-content{
        min-height:620px
    }
    .quote-cards{
        grid-template-columns:1fr
    }
}
@media(max-width:640px){
    .cards,.team-cards,.resources{
        grid-template-columns:1fr
    }
    .header-inner{
        gap:12px
    }
    .custom-logo-link,.brand-link{
        width:180px
    }
    .custom-logo,.brand-link img{
        width:180px!important
    }
    h1{
        font-size:42px
    }
    .section{
        padding:62px 0
    }
}
/* Ajustes: recursos usando posts reais do WordPress e página interna de FAQ */
 .resource-img{
    display:block;
    overflow:hidden
}
 .resource-img.has-image{
    background:none
}
 .resource-img.has-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block
}
 .page-head{
    max-width:820px;
    margin-bottom:34px
}
.faq-list-large{
    max-width:980px
}
.page-blog-list .blog-grid{
    margin-top:10px
}
.single-article h1{
    font-size:clamp(36px,4vw,58px)
}
.post-date{
    color:var(--muted);
    font-weight:700
}
.single-thumb{
    border-radius:18px;
    overflow:hidden;
    margin:28px 0;
    box-shadow:var(--shadow)
}
.single-thumb img{
    width:100%;
    display:block
}
.entry-content{
    font-size:18px;
    color:var(--muted)
}
.entry-content p{
    margin-bottom:18px
}
/* FAQ organizada por cadastro */
 .faq-category-block{
    margin-top:34px
}
 .faq-category-block h2{
    font-size:28px;
    margin:0 0 8px;
    color:var(--as-brown)
}
 .faq-category-desc{
    max-width:720px;
    color:var(--as-muted);
    margin:0 0 18px
}
 .faq-list-large details{
    margin-bottom:12px
}
/* Agenda / pré-anamnese */
 .schedule-page{
    background:var(--cream)
}
 .schedule-page .page-head{
    max-width:860px;
    margin:0 auto 34px;
    text-align:left
}
 .schedule-form{
    background:rgba(255,253,249,.98);
    border:1px solid var(--line);
    border-radius:24px;
    padding:32px;
    box-shadow:var(--shadow);
    max-width:980px;
    margin:0 auto
}
 .schedule-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px
}
 .schedule-form label{
    font-weight:800;
    color:var(--text);
    font-size:14px
}
 .schedule-form input,.schedule-form select,.schedule-form textarea{
    width:100%;
    margin-top:8px;
    border:1px solid var(--line);
    border-radius:14px;
    padding:13px 14px;
    background:#fff;
    color:var(--text);
    font:inherit;
    outline:none
}
 .schedule-form input:focus,.schedule-form select:focus,.schedule-form textarea:focus{
    border-color:var(--blue);
    box-shadow:0 0 0 3px rgba(111,136,164,.15)
}
 .schedule-form h2{
    font-size:26px;
    margin-top:22px
}
.schedule-hint{
    color:var(--muted);
    margin-top:-6px
}
.slot-list{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    margin:20px 0 26px
}
.slot-option{
    position:relative;
    display:block
}
.slot-option input{
    position:absolute;
    opacity:0;
    pointer-events:none
}
.slot-option span{
    display:block;
    border:1px solid var(--line);
    background:var(--cream);
    border-radius:18px;
    padding:16px;
    transition:.2s;
    cursor:pointer
}
.slot-option small{
    display:block;
    color:var(--muted);
    margin-top:4px
}
.slot-option input:checked + span{
    border-color:var(--blue);
    background:var(--blue-soft);
    box-shadow:0 10px 24px rgba(111,136,164,.16)
}
.no-slots{
    background:var(--blue-soft);
    border-radius:18px;
    padding:22px;
    margin:20px 0
}
.schedule-success,.schedule-error{
    max-width:820px;
    margin:0 auto;
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:24px;
    padding:32px;
    box-shadow:var(--shadow)
}
.schedule-success h2{
    color:var(--blue-deep)
}
.schedule-error{
    border-color:#d8a5a5;
    color:#7d2e2e
}
@media(max-width:900px){
    .schedule-grid,.slot-list{
        grid-template-columns:1fr
    }
    .schedule-form{
        padding:22px
    }
}
/* Refino final da tela de agenda: pré-anamnese fixa e layout em duas colunas */
 .schedule-form-refined {
     max-width: 1040px;
     padding: 38px;
}
 .schedule-layout-refined {
     display: grid;
     grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
     gap: 34px;
     align-items: stretch;
}
 .schedule-panel {
     min-width: 0;
}
 .schedule-panel h2 {
     font-size: clamp(26px, 2.6vw, 36px);
     margin-bottom: 16px;
}
 .schedule-fields-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 18px;
}
 .schedule-form-refined p {
     margin: 0 0 18px;
}
 .schedule-form-refined label {
     display: block;
}
 .schedule-fixed-type {
     background: var(--cream);
     border: 1px solid rgba(111,136,164,.26);
     border-radius: 18px;
     padding: 18px;
     margin: 8px 0 22px;
}
 .schedule-fixed-type span {
     display: block;
     color: var(--blue);
     font-size: 12px;
     font-weight: 900;
     text-transform: uppercase;
     letter-spacing: .12em;
     margin-bottom: 5px;
}
 .schedule-fixed-type strong {
     display: block;
     color: var(--text);
     font-size: 18px;
     margin-bottom: 6px;
}
 .schedule-fixed-type p {
     color: var(--muted);
     font-size: 14px;
     line-height: 1.6;
     margin: 0;
}
 .schedule-panel-slots {
     background: linear-gradient(180deg, rgba(238,243,247,.78), rgba(255,248,243,.92));
     border: 1px solid rgba(111,136,164,.18);
     border-radius: 22px;
     padding: 26px;
}
 .slot-list-refined {
     grid-template-columns: 1fr;
     gap: 14px;
     margin: 20px 0 24px;
}
 .slot-option-refined span {
     background: rgba(255,253,249,.96);
     border-color: rgba(111,136,164,.25);
     padding: 18px 20px;
}
 .slot-option-refined strong {
     display: block;
     color: var(--text);
     font-size: 16px;
}
 .slot-option-refined small {
     color: var(--blue-dark);
     font-weight: 800;
     margin-top: 6px;
}
 .slot-option-refined input:checked + span {
     border-color: var(--blue);
     background: #fff;
     box-shadow: 0 14px 30px rgba(111,136,164,.20);
}
 .schedule-submit {
     width: 100%;
     margin-top: 4px;
}
 @media(max-width:900px){
     .schedule-form-refined {
         padding: 24px;
    }
     .schedule-layout-refined, .schedule-fields-row {
         grid-template-columns: 1fr;
    }
     .schedule-panel-slots {
         padding: 22px;
    }
}
/* Trabalhe Conosco / Carreiras */
 .careers-page .page-head{
     max-width:1180px;
     margin:0 auto 42px;
     text-align:left;
}

 .careers-page .page-head .lead{
    max-width:1180px;
 }
 
 .careers-open-jobs{
     margin-bottom:70px;
}
 .careers-jobs-grid{
     display:grid;
     grid-template-columns:repeat(3,1fr);
     gap:22px;
}
 .career-job-card{
     display:flex;
     flex-direction:column;
     gap:10px;
}
 .career-job-card .btn{
     margin-top:auto;
     align-self:flex-start;
}
 .career-job-meta{
     display:flex;
     flex-wrap:wrap;
     gap:8px;
     margin:4px 0 12px;
}
 .career-job-meta span{
     display:inline-flex;
     align-items:center;
     border-radius:999px;
     background:var(--blue-soft);
     color:var(--blue-deep);
     font-size:12px;
     font-weight:800;
     padding:6px 10px;
}
 .careers-empty{
     background:var(--paper);
     border:1px solid var(--line);
     border-radius:22px;
     padding:28px;
     box-shadow:var(--shadow);
}
 .careers-apply{
     background:rgba(255,253,249,.76);
     border:1px solid var(--line);
     border-radius:28px;
     padding:34px;
     box-shadow:var(--shadow);
}
 .careers-form{
     max-width:100%;
     margin:0;
}
 .careers-form-grid{
     display:grid;
     grid-template-columns:repeat(2, minmax(0,1fr));
     gap:18px;
}
 .careers-form .careers-full{
     grid-column:1 / -1;
}
 .careers-form small{
     display:block;
     color:var(--muted);
     margin-top:6px;
}
 .careers-form .lgpd label{
     display:flex;
     align-items:flex-start;
     gap:10px;
     font-weight:700;
     color:var(--muted);
}
 .careers-form .lgpd input{
     width:auto;
     margin-top:6px;
}
 .careers-success{
     margin-bottom:24px;
}
 .career-single-meta{
     margin:18px 0 26px;
}
 @media(max-width:900px){
     .careers-jobs-grid, .careers-form-grid{
         grid-template-columns:1fr;
    }
     .careers-apply{
         padding:22px;
    }
}