:root {
    --bg-global: #fcfbfa;
    --card-bg: #ffffff;
    --azul-premium: #0a1d37;
    --verde-patrimonio: #0c5334;
    --bege-ouro: #dfd5c6;
    --texto-titulo: #091524;
    --texto-corpo: #475569;
    --sombra-premium: 0 20px 40px rgba(10, 29, 55, 0.04);
    --transicao-suave: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-global);
    color: var(--texto-corpo);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* BOTÃO FLUTUANTE WHATSAPP */
.btn-whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: var(--transicao-suave);
}
.btn-whatsapp-float:hover {
    transform: scale(1.08) translateY(-3px);
    background-color: #20ba5a;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}
.icon-wpp {
    width: 32px;
    height: 32px;
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transicao-suave);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* NAVBAR LUXURY COM LOGO SVG */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(226, 225, 218, 0.5);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
}
.brand-logo {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
}
.logo-svg {
    width: 100%;
    height: 100%;
}
.logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--azul-premium);
    letter-spacing: 2px;
}
.logo-title-suffix { color: var(--verde-patrimonio); }
.nav-links { display: flex; list-style: none; align-items: center; gap: 2.2rem; }
.nav-links a { text-decoration: none; color: var(--texto-corpo); font-weight: 500; font-size: 0.9rem; transition: 0.25s; }
.nav-links a:hover { color: var(--verde-patrimonio); }
.btn-nav {
    background: var(--azul-premium);
    color: #fff !important;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}
.btn-nav:hover { background: var(--verde-patrimonio); transform: translateY(-1px); }
.menu-toggle { display: none; }

/* HEADER DE PERFIL */
.profile-header {
    background: #fff;
    padding: 8.5rem 2rem 1.5rem 2rem;
    text-align: center;
}
.profile-container {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}
.profile-logo-box-large {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}
.profile-name { font-size: 1.7rem; font-weight: 700; color: var(--texto-titulo); letter-spacing: -0.3px; }
.profile-specialty { font-size: 0.8rem; color: var(--verde-patrimonio); font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; }

/* HERO */
.hero {
    padding: 1rem 2rem 4.5rem 2rem;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
    background: #fff;
}
.hero h1 { font-size: 3.2rem; font-weight: 700; color: var(--azul-premium); line-height: 1.2; margin-bottom: 1.5rem; letter-spacing: -1px; min-height: 120px; }
.txt-dinamico {
    color: var(--verde-patrimonio);
    background: linear-gradient(to right, var(--verde-patrimonio), #1a8c5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.cursor { font-weight: 300; color: var(--verde-patrimonio); animation: piscar 0.8s infinite; }
@keyframes piscar { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero p { font-size: 1.15rem; color: var(--texto-corpo); margin-bottom: 2.2rem; line-height: 1.6; max-width: 720px; margin-left: auto; margin-right: auto; }
.btn-primary {
    background: var(--verde-patrimonio);
    color: white;
    text-decoration: none;
    padding: 1rem 2.4rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(12, 83, 52, 0.15);
    transition: var(--transicao-suave);
}
.btn-primary:hover { background: var(--azul-premium); transform: translateY(-3px); box-shadow: 0 12px 25px rgba(10, 29, 55, 0.2); }

/* CONTÊINERES */
.container { max-width: 1140px; margin: 0 auto; text-align: center; }
.container-medium { max-width: 850px; margin: 0 auto; text-align: center; }
.container-small { max-width: 750px; margin: 0 auto; text-align: left; }
.section-title { font-size: 2rem; font-weight: 700; color: var(--azul-premium); margin-bottom: 0.5rem; letter-spacing: -0.5px; }
.section-subtitle { color: var(--texto-corpo); margin-bottom: 3rem; font-size: 0.95rem; }

/* ESTRUTURA QUEM TE ACOMPANHARÁ (FOTO + BIO LADO A LADO) */
.section-about { padding: 5rem 2rem; background: var(--bg-global); }
.about-wrapper {
    display: flex;
    align-items: stretch;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 3.5rem auto;
}
.about-photo-block {
    flex: 1;
    max-width: 380px;
}
.photo-frame {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--sombra-premium);
    background: #e2e8f0;
}
.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transicao-suave);
}
.profile-photo:hover {
    transform: scale(1.03);
}
.about-biography-block {
    flex: 1.3;
    display: flex;
    align-items: center;
}
.about-biography {
    text-align: left;
    font-size: 1.05rem;
    line-height: 1.8;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--sombra-premium);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-biography p { margin-bottom: 1.2rem; }
.about-biography p:last-child { margin-bottom: 0; }
.about-biography strong { color: var(--azul-premium); }

.grid-metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.card-metric { background: #fff; border-radius: 12px; padding: 2.5rem 1.5rem; box-shadow: var(--sombra-premium); transition: var(--transicao-suave); }
.card-metric:hover { transform: translateY(-5px); }
.card-metric.emphase { background: linear-gradient(180deg, #ffffff 0%, #f1fbf6 100%); border-top: 4px solid var(--verde-patrimonio); }
.metric-badge { background: var(--verde-patrimonio); color: white; font-size: 0.65rem; font-weight: 700; padding: 0.2rem 0.8rem; border-radius: 50px; text-transform: uppercase; margin-bottom: 0.6rem; display: inline-block; letter-spacing: 0.5px; }
.metric-number { font-size: 2.5rem; font-weight: 700; color: var(--azul-premium); margin-bottom: 0.2rem; }
.card-metric.emphase .metric-number { color: var(--verde-patrimonio); }
.metric-text { font-size: 0.88rem; color: var(--texto-corpo); line-height: 1.5; }

/* SEÇÃO 3 PILARES */
.section-pilares { padding: 5.5rem 2rem; background: linear-gradient(180deg, #ffffff 0%, var(--bg-global) 100%); }
.grid-pilares { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card-pilar { background: #fff; padding: 3rem 2.5rem; border-radius: 16px; box-shadow: var(--sombra-premium); transition: var(--transicao-suave); }
.card-pilar:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(10, 29, 55, 0.08); }
.pilar-tag { color: var(--verde-patrimonio); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.6rem; }
.card-pilar h3 { font-size: 1.35rem; color: var(--azul-premium); margin-bottom: 1rem; font-weight: 700; }
.card-pilar p { color: var(--texto-corpo); font-size: 0.92rem; line-height: 1.65; text-align: left; }

/* SEÇÃO MÉTODO */
.section-method { padding: 5.5rem 2rem; background: #fff; }
.grid-method { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.card-method-step { background: var(--bg-global); padding: 3rem 2.2rem; border-radius: 16px; text-align: left; transition: var(--transicao-suave); }
.card-method-step:hover { background: #fff; box-shadow: var(--sombra-premium); transform: translateY(-3px); }
.step-number { background: var(--azul-premium); color: white; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: 600; margin-bottom: 1.2rem; font-size: 0.9rem; }
.card-method-step h3 { font-size: 1.2rem; color: var(--azul-premium); margin-bottom: 0.6rem; }
.card-method-step p { color: var(--texto-corpo); font-size: 0.9rem; line-height: 1.6; }

/* SEÇÃO FAQ */
.section-faq { padding: 5.5rem 2rem; background: var(--bg-global); }
.faq-item { background: #fff; padding: 1.8rem; border-radius: 12px; margin-bottom: 1.2rem; box-shadow: var(--sombra-premium); cursor: pointer; }
.faq-item h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.6rem; color: var(--azul-premium); }

/* SISTEMA DE SANFONA INTERATIVO (ACCORDION) */
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}
.faq-icon {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--verde-patrimonio);
    transition: transform 0.3s ease;
    user-select: none;
    margin-left: 1rem;
}
.faq-item p {
    color: var(--texto-corpo);
    font-size: 0.92rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    margin-bottom: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-item.active p {
    max-height: 200px;
    opacity: 1;
    margin-top: 0.6rem;
}

/* CTA FINAL */
.section-cta-final { padding: 6rem 2rem; background: linear-gradient(135deg, var(--azul-premium) 0%, #061122 100%); text-align: center; color: #fff; }
.section-cta-final h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 0.8rem; color: #fff; letter-spacing: -0.5px; }
.section-cta-final p { color: var(--bege-ouro); font-size: 1.05rem; max-width: 650px; margin: 0 auto; line-height: 1.6; }
.section-cta-final .btn-primary { background: var(--verde-patrimonio); color: white; margin-top: 1rem; }
.section-cta-final .btn-primary:hover { background: #fff; color: var(--azul-premium); }

/* ADMISSÃO / FORM */
.section-contact { padding: 6rem 2rem; display: flex; justify-content: center; }
.page-agendar { padding-top: 9rem; background-color: var(--bg-global); }
.contact-box { background: #fff; border-radius: 16px; padding: 3.5rem 3rem; max-width: 600px; width: 100%; box-shadow: var(--sombra-premium); }
.contact-box h2 { font-size: 1.7rem; color: var(--azul-premium); margin-bottom: 0.6rem; text-align: center; }
.contact-box p { color: var(--texto-corpo); text-align: center; font-size: 0.92rem; margin-bottom: 2.5rem; line-height: 1.6; }
.form-lead { display: flex; flex-direction: column; gap: 1.3rem; }
.input-group { display: flex; flex-direction: column; gap: 0.4rem; }
.input-group label { font-size: 0.8rem; font-weight: 600; text-align: left; color: var(--azul-premium); text-transform: uppercase; letter-spacing: 0.5px; }
.input-group input, .input-group select, .input-group textarea { padding: 0.9rem 1.2rem; border: 1px solid rgba(226, 221, 214, 0.8); border-radius: 8px; font-size: 0.95rem; outline: none; background-color: #faf9f7; width: 100%; transition: all 0.3s ease; color: var(--texto-titulo); }
.input-group input:focus, .input-group select:focus, .input-group textarea:focus { border-color: var(--verde-patrimonio); background-color: #fff; box-shadow: 0 0 0 4px rgba(12, 83, 52, 0.08); }
.btn-submit { background: var(--azul-premium); color: white; border: none; padding: 1.1rem; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: 0.2s; box-shadow: 0 4px 12px rgba(10, 29, 55, 0.15); }
.btn-submit:hover { background: var(--verde-patrimonio); transform: translateY(-2px); }

.footer { text-align: center; padding: 3rem 2rem; color: var(--texto-corpo); font-size: 0.82rem; background: #fff; line-height: 1.6; border-top: 1px solid rgba(226, 225, 218, 0.4); }

/* GARANTE QUE A CLASSE DO SÍMBOLO PRETO DE MARCA REGISTRADA FUNCIONE */
.marca-registrada-preta, .simbolo-preto {
    color: #000000 !important;
    display: inline-block !important;
    font-family: sans-serif !important;
    font-size: 0.65em !important;
    vertical-align: super !important;
    line-height: 1 !important;
    font-weight: bold !important;
    margin-left: 2px;
}

/* =========================================================================
    RESPONSIVIDADE CELULAR UNIFICADA (FOTO ADAPTÁVEL + PILARES COMPACTOS)
   ========================================================================= */
@media (max-width: 768px) {
    .btn-whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; }
    .icon-wpp { width: 26px; height: 26px; }

    .menu-toggle {
        display: block;
        cursor: pointer;
        background: #e2e8f0;
        border: none;
        outline: none;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        transition: 0.25s;
    }
    .menu-toggle:hover { background: #cbd5e1; }
    .bar { display: block; width: 18px; height: 2px; background-color: #334155; border-radius: 2px; transition: all 0.3s ease-in-out; }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        text-align: center;
        gap: 0;
        border-bottom: 1px solid rgba(226, 225, 218, 0.6);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease-in-out;
    }
    .nav-links li { width: 100%; border-bottom: 1px solid #f8fafc; }
    .nav-links a { display: block; padding: 1.2rem 0; width: 100%; color: var(--azul-premium); font-weight: 600; }
    .btn-nav { border-radius: 0; background: var(--verde-patrimonio); }
    .nav-links.active { max-height: 385px; }

    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    /* RESTRUTURAÇÃO DO MAPA SOBRE MOBILE TOTALMENTE FLEXÍVEL */
    .about-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    .about-photo-block {
        max-width: 100%;
        width: 100%;
    }
    .photo-frame {
        height: auto; 
        border-radius: 16px;
        overflow: hidden;
        box-shadow: var(--sombra-premium);
    }
    .profile-photo {
        width: 100%;
        height: auto; 
        display: block;
        object-fit: contain; 
    }

    /* AJUSTE COMPACTO PARA OS PILARES (POR QUÊ, COMO, O QUE) NO MOBILE */
    .section-pilares {
        padding: 2.5rem 1rem !important;
    }
    .grid-pilares {
        gap: 1rem !important;
    }
    .card-pilar {
        padding: 1.5rem 1.2rem !important;
        border-radius: 12px !important;
    }
    .card-pilar h3 {
        margin-bottom: 0.5rem !important;
        font-size: 1.15rem !important;
    }
    .card-pilar p {
        font-size: 0.88rem !important;
        line-height: 1.5 !important;
        text-align: left !important;
    }

    .hero h1 { font-size: 2rem; min-height: 100px; }
    .hero p { font-size: 0.98rem; }
    .section-title { font-size: 1.55rem; }
    .about-biography { padding: 1.8rem; }
    .contact-box { padding: 2.5rem 1.5rem; }
}