/* ============================================================
   Edson Santiago, Fisioterapeuta (espaco Core Health)
   Landing page: paleta da marca Edson Santiago
   navy #172756 / teal #228fa9 / aqua #97c3c7
   v1.2.0: paleta alinhada a logomarca do Edson, fotos novas
   do espaco e passe de responsividade mobile.
   ============================================================ */

:root {
    --navy: #172756;
    --navy-2: #25356b;
    --navy-deep: #101b3d;
    --turq: #228fa9;
    --turq-dark: #1b7287;
    --turq-line: rgba(34, 143, 169, 0.35);
    --aqua: #97c3c7;
    --tint: #eef5f7;
    --tint-border: #d3e6ea;
    --text: #15233f;
    --text-soft: #45566f;
    --white: #ffffff;
    --success: #2e9e5b;
    --shadow-soft: 0 6px 24px rgba(0, 57, 82, 0.08);
    --shadow-card: 0 4px 16px rgba(0, 57, 82, 0.07);
    --radius: 16px;
    --radius-photo: 18px;
    --font: 'Plus Jakarta Sans', 'Segoe UI', Arial, sans-serif;
    --font-serif: Georgia, 'Times New Roman', serif;
    --section-pad: 88px;
    --gutter: 32px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* Qualidade tipográfica: títulos com quebra equilibrada, parágrafos sem órfãs */
h1, h2, h3, h4, .section-title, .hero h1, .precta-card h2, .sobre-text h2 {
    text-wrap: balance;
}
p, .hero-sub, .section-sub, .service-card p, .step-card p, .testimonial-card p {
    text-wrap: pretty;
}

img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 var(--gutter); }

/* ==================== ICONES SVG (sprite inline) ==================== */
.icon {
    width: 1.1em;
    height: 1.1em;
    display: inline-block;
    vertical-align: -0.16em;
    flex-shrink: 0;
}

/* ==================== BOTOES ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-accent { background: var(--turq); color: var(--white); }
.btn-accent:hover { background: var(--turq-dark); color: var(--white); }

.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-2); }

.btn-outline { background: var(--white); color: var(--navy); border-color: var(--tint-border); }
.btn-outline:hover { border-color: var(--turq); color: var(--turq-dark); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.65); }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); color: var(--white); }

/* ==================== NAVEGACAO ==================== */
.main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--white);
    transition: box-shadow 0.25s ease;
}
.main-nav.scrolled { box-shadow: 0 2px 18px rgba(0, 57, 82, 0.12); }

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px var(--gutter);
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo-icon { height: 42px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.04; }
.nav-logo-text strong { font-size: 1.18rem; font-weight: 800; color: var(--navy); letter-spacing: 0.2px; }
.nav-logo-text em { font-size: 0.62rem; font-weight: 700; font-style: normal; color: var(--turq); letter-spacing: 3.5px; text-transform: uppercase; margin-top: 2px; }

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}
.nav-links a:not(.btn) {
    color: var(--text-soft);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.2s ease;
}
.nav-links a:not(.btn):hover { color: var(--turq-dark); }
.nav-cta { font-size: 0.9rem; padding: 10px 20px; }
.nav-cta-mobile { display: none; }
.nav-drawer-brand { display: none; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    height: 2.5px;
    width: 100%;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 42, 61, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 99;
}
.nav-overlay.active { opacity: 1; pointer-events: auto; }

/* ==================== HERO ==================== */
.hero {
    background-color: var(--navy);
    background-image:
        radial-gradient(circle at 85% 15%, rgba(0, 165, 177, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(0, 165, 177, 0.10) 0%, transparent 40%),
        linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: var(--white);
    padding: 150px 0 90px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}
.hero-kicker {
    color: var(--turq);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.hero h1 {
    font-size: clamp(1.9rem, 5.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}
.hero-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.06rem;
    max-width: 540px;
    margin-bottom: 28px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero-badges {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
}
.hero-badges li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}
/* Marcador linear: traço curto turquesa no lugar de ícone */
.hero-badges li::before {
    content: '';
    width: 16px;
    height: 2px;
    border-radius: 1px;
    background: linear-gradient(90deg, var(--turq), rgba(0, 165, 177, 0.35));
    flex-shrink: 0;
}

/* Foto em caixa com moldura offset turquesa */
.photo-frame {
    background: var(--white);
    border: 1px solid var(--tint-border);
    border-radius: var(--radius-photo);
    padding: 10px;
    box-shadow: var(--shadow-soft);
}
.photo-frame img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.hero-photo { position: relative; max-width: 440px; margin-left: auto; }
.photo-frame-offset { position: relative; z-index: 1; }
.photo-frame-offset::after {
    content: '';
    position: absolute;
    top: 18px; left: 18px; right: -18px; bottom: -18px;
    border: 2px solid var(--turq);
    border-radius: var(--radius-photo);
    z-index: -1;
}

/* ==================== BANNERS (hero / sobre) ==================== */
/* Utilitario: conteudo so para leitor de tela / SEO. O texto "queimado" na
   arte do banner permanece indexavel e acessivel via este bloco oculto. */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* Hero com banner: o fundo navy de .hero faz a moldura do banner contido. */
.hero--banner { padding: 96px 0 64px; }

.banner { position: relative; }
.banner__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-photo);
    box-shadow: var(--shadow-soft);
}
.banner--sobre .banner__img { border: 1px solid var(--tint-border); }

/* CTA sobreposto a arte. Como o banner guarda aspect-ratio fixo (width 100%,
   height auto), a ancora em % cai sempre no mesmo ponto vazio da arte. */
.banner__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.banner__cta .btn { box-shadow: 0 8px 22px rgba(0, 33, 48, 0.18); }
.banner__cta .btn-outline {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(23, 39, 86, 0.28);
    color: var(--navy);
}
.banner__cta .btn-outline:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* Duas linhas decorativas (efeito classico/organizado) abaixo dos botoes do hero,
   nas cores da marca: traco navy + traco turquesa. Mais finas e mais proximas dos
   botoes, com largura proporcional ao CTA compacto. */
.hero-rules { flex: 1 1 100%; display: flex; flex-direction: column; gap: 5px; margin-top: 2px; }
.hero-rules i { display: block; height: 2px; border-radius: 2px; }
.hero-rules i:nth-child(1) { width: 160px; background: var(--navy); }
.hero-rules i:nth-child(2) { width: 96px; background: var(--turq); }

@media (min-width: 761px) {
    /* Banner principal em tela cheia no desktop: full-bleed (de borda a borda),
       sem moldura/raio/sombra. A arte e 16:9 com texto "queimado", entao em telas
       16:9 ela ja preenche o viewport inteiro; mantemos height auto para nunca
       cortar a headline/sujeito da arte em monitores de outra proporcao.
       padding-top = altura da navbar fixa: assim a arte comeca ABAIXO do menu e a
       cabeca do Edson nunca fica cortada no topo. Fundo branco esconde a emenda. */
    .hero--banner { padding: 70px 0 0; background: #fff; }
    .hero--banner > .container { max-width: none; padding: 0; width: 100%; }
    .banner--hero { line-height: 0; }
    .banner--hero .banner__img { border-radius: 0; box-shadow: none; }

    .banner__cta { position: absolute; margin: 0; z-index: 3; }
    /* CTA alinhado ao inicio do texto da arte (heading/paragrafo ~15% da largura),
       acima da faixa inferior de informacoes. row-gap curto aproxima as linhas. */
    .banner__cta--hero { left: 15.1%; bottom: 26%; gap: 6px 12px; }
    /* Botoes do hero ~30% menores: CTA compacto, leve e profissional sobre a arte. */
    .banner__cta--hero .btn {
        min-height: 31px;
        padding: 10px 21px;
        gap: 6px;
        font-size: 0.72rem;
        border-radius: 8px;
        box-shadow: 0 5px 14px rgba(0, 33, 48, 0.18);
    }
    /* espaco vazio inferior-direito da arte "sobre" */
    .banner__cta--sobre { left: 49%; bottom: 7%; }

    /* Borda "infinita": topo e base da arte se dissolvem no branco da pagina,
       sem emenda dura (efeito de continuidade). Fica sob o CTA (z-index menor). */
    .banner--hero { position: relative; }
    .banner--hero::before,
    .banner--hero::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: clamp(34px, 5.5vh, 68px);
        pointer-events: none;
        z-index: 2;
    }
    .banner--hero::before {
        top: 0;
        background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 0) 100%);
    }
    .banner--hero::after {
        bottom: 0;
        background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0.72) 42%, rgba(255, 255, 255, 0) 100%);
    }
}

/* Desktop/notebook em paisagem: o banner largo preenche a tela (100vh) e fica
   centralizado, sem a proxima secao "espiando" embaixo e sem cortar a arte.
   Restrito a paisagem para nao deixar faixa branca enorme em tablet retrato. */
@media (min-width: 761px) and (min-aspect-ratio: 1/1) {
    .hero--banner {
        padding: 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Mobile: banners sao verticais (9:16) e nao tem folga interna p/ botao,
   entao o CTA vai logo abaixo da imagem, em largura total. */
@media (max-width: 760px) {
    .banner__cta { margin-top: 18px; justify-content: center; }
    .banner__cta .btn { flex: 1 1 100%; font-size: 0.95rem; }
    .hero-rules { align-items: center; margin-top: 8px; }

    /* Borda "infinita": topo e base da arte se dissolvem no fundo navy da secao,
       respeitando o raio do cartao (cantos arredondados). */
    .banner--hero { position: relative; }
    .banner--hero::before,
    .banner--hero::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 34px;
        pointer-events: none;
        z-index: 2;
    }
    .banner--hero::before {
        top: 0;
        border-radius: var(--radius-photo) var(--radius-photo) 0 0;
        background: linear-gradient(to bottom, var(--navy) 0%, rgba(23, 39, 86, 0) 100%);
    }
    .banner--hero::after {
        bottom: 0;
        border-radius: 0 0 var(--radius-photo) var(--radius-photo);
        background: linear-gradient(to top, var(--navy) 0%, rgba(23, 39, 86, 0) 100%);
    }
}

/* ==================== FAIXA DE CREDIBILIDADE (selos) ==================== */
.cred-strip {
    background: var(--tint);
    padding: 42px 0 46px;
    border-top: 1px solid var(--tint-border);
    border-bottom: 1px solid var(--tint-border);
}
.cred-eyebrow {
    text-align: center;
    color: var(--turq-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 26px;
}
.cred-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.cred-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 0;
    text-align: center;
}
.cred-logo {
    width: 100%;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 22px;
    background: var(--white);
    border: 1px solid var(--tint-border);
    border-radius: 14px;
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cred-item:hover .cred-logo {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 57, 82, 0.13);
}
/* Card escuro para o escudo do São Paulo (logo claro sobre transparente) */
.cred-logo--dark { background: var(--navy); border-color: var(--navy-2); }
.cred-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}
.cred-item figcaption {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-soft);
    line-height: 1.3;
}

/* ==================== SECOES (base) ==================== */
.section { padding: var(--section-pad) 0; }
.section-light { background: var(--white); }
.section-tint { background: var(--tint); }
.section-navy { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%); }

/* Cabecalho de secao: eyebrow com tracos lineares laterais em gradiente,
   titulo navy e subtitulo contido. */
.section-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--turq-dark);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 14px;
    text-align: center;
}
.section-kicker::before,
.section-kicker::after {
    content: '';
    height: 1px;
    width: 44px;
    flex-shrink: 0;
}
.section-kicker::before { background: linear-gradient(90deg, transparent, var(--turq)); }
.section-kicker::after { background: linear-gradient(90deg, var(--turq), transparent); }
.kicker-light { color: var(--turq); }
.kicker-light::before { background: linear-gradient(90deg, transparent, rgba(0, 165, 177, 0.8)); }
.kicker-light::after { background: linear-gradient(90deg, rgba(0, 165, 177, 0.8), transparent); }
.section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 14px;
}
.title-light { color: var(--white); }
.section-sub {
    color: var(--text-soft);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
    font-size: 0.98rem;
    line-height: 1.65;
}
.sub-light { color: rgba(255, 255, 255, 0.82); }

/* ==================== SOBRE ==================== */
.sobre-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: center;
}
.sobre-photo { max-width: 420px; }
.sobre-text .section-kicker,
.sobre-text h2 { text-align: left; }
.sobre-text .section-kicker { justify-content: flex-start; }
.sobre-text .section-kicker::before { display: none; }
.sobre-text h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}
.sobre-text p { color: var(--text-soft); margin-bottom: 16px; }

.check-list { list-style: none; margin: 8px 0 26px; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
}
.check-list .check-ico {
    color: var(--turq);
    width: 18px;
    height: 18px;
    margin-top: 4px;
}

/* ==================== SERVICOS ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--tint-border);
    border-radius: var(--radius);
    padding: 30px 26px;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
/* Hairline com gradiente no topo do card; cresce no hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 58px;
    background: linear-gradient(90deg, var(--turq), transparent);
    transition: width 0.35s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0, 57, 82, 0.12); }
.service-card:hover::before { width: 100%; }
.service-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; padding-top: 4px; }
.service-card p { color: var(--text-soft); font-size: 0.92rem; flex: 1; margin-bottom: 16px; }
.service-link {
    color: var(--turq-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 44px;
    transition: gap 0.2s ease, color 0.2s ease;
}
.service-link:hover { gap: 11px; color: var(--navy); }
.service-link .icon { width: 1em; height: 1em; }

/* ==================== CONDICOES ==================== */
.cond-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.cond-chip {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 44px;
    background: var(--tint);
    border: 1px solid var(--tint-border);
    border-radius: 14px;
    padding: 14px 18px;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.92rem;
    transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.cond-chip:hover {
    transform: translateY(-3px);
    border-color: var(--turq);
    background: var(--white);
}
.cond-chip img { width: 44px; height: 44px; flex-shrink: 0; }

/* ==================== GALERIA / ESPACO ==================== */
/* Mosaico: respeita a orientacao das fotos (tall = vertical em 2 linhas,
   wide = horizontal de destaque em 2 colunas) para nao cortar com zoom. */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px;
    grid-auto-flow: dense;
    gap: 16px;
}
.gallery-item {
    border: 1px solid rgba(212, 236, 239, 0.4);
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-photo);
    padding: 8px;
    cursor: zoom-in;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--feature { grid-column: span 2; grid-row: span 2; }
.gallery-item:hover { transform: translateY(-4px); border-color: var(--turq); }
.gallery-item img {
    border-radius: 12px;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== COMO FUNCIONA ==================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 48px;
}
.step-card {
    background: var(--tint);
    border: 1px solid var(--tint-border);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
}
/* Marcador linear (substitui o número): nó com anel turquesa apoiado em um
   traço curto em gradiente. Mesma linguagem de linhas do hero e da faixa de
   credibilidade, em vez do antigo círculo numerado. */
.step-marker {
    position: relative;
    display: block;
    width: 40px;
    height: 2px;
    margin-bottom: 22px;
    border-radius: 1px;
    background: linear-gradient(90deg, var(--turq), var(--turq-line));
}
.step-marker::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-1px, -50%);
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--turq);
}
/* Linha conectora fina entre os passos (desktop: horizontal), alinhada ao
   centro do nó do marcador. */
.step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -22px;
    width: 22px;
    height: 2px;
    background: linear-gradient(90deg, var(--turq), var(--turq-line));
}
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step-card p { color: var(--text-soft); font-size: 0.9rem; }

/* ==================== PRE-CONSULTA CTA ==================== */
.precta-card {
    background: var(--white);
    border: 1px solid var(--tint-border);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    max-width: 720px;
    margin: 0 auto;
    padding: 52px 48px;
    text-align: center;
}
/* Traço linear turquesa no lugar do ícone */
.precta-line {
    display: block;
    width: 64px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, var(--turq), transparent);
    margin: 0 auto 22px;
}
.precta-card h2 { font-size: clamp(1.35rem, 4vw, 1.7rem); font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.precta-card p { color: var(--text-soft); margin-bottom: 28px; }

/* ==================== DEPOIMENTOS ==================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    max-width: 880px;
    margin: 0 auto;
}
.testimonial-card {
    background: var(--tint);
    border: 1px solid var(--tint-border);
    border-radius: var(--radius);
    padding: 32px 30px;
}
/* Aspas tipográficas grandes no lugar de ícone */
.quote-mark {
    display: block;
    font-family: var(--font-serif);
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 0.55;
    height: 0.55em;
    color: var(--turq);
    opacity: 0.25;
    margin-bottom: 16px;
    user-select: none;
}
.testimonial-card p { color: var(--text); font-size: 1rem; font-weight: 500; margin-bottom: 18px; }
.testimonial-card footer { display: flex; align-items: center; justify-content: space-between; gap: 12px 16px; flex-wrap: wrap; }
.testimonial-card strong { color: var(--navy); font-size: 0.95rem; }
.stars { display: inline-flex; align-items: center; gap: 3px; color: var(--turq); }
.stars .icon { width: 14px; height: 14px; }
/* Bloco autor + selo de origem (nome em cima, origem da avaliação embaixo) */
.testimonial-author {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-width: 0;
}
/* Selo de origem do depoimento (orientado a dados: Google hoje, extensível) */
.testimonial-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--tint);
    border: 1px solid var(--tint-border);
    color: var(--text-soft);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.testimonial-source-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    display: block;
}
.testimonial-source-label { color: var(--navy); }
/* Variante Google: aro sutil turquesa para destacar a origem sem poluir */
.testimonial-source--google { border-color: var(--turq-line); }
/* Nota agregada do Google (acima dos cards quando há avaliações reais) */
.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 auto 30px;
    color: var(--text-soft);
    font-size: 0.95rem;
    font-weight: 500;
}
.reviews-summary .stars .icon { width: 18px; height: 18px; }
.reviews-summary strong { color: var(--navy); font-size: 1.05rem; font-weight: 800; }

/* ==================== CONTATO ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--tint-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    display: block;
}
.contact-info { padding: 42px 38px; }
.contact-info h3 { color: var(--navy); font-size: 1.3rem; font-weight: 800; margin-bottom: 20px; }
.contact-list { list-style: none; margin-bottom: 26px; }
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 9px 0;
    color: var(--text-soft);
    font-size: 0.95rem;
}
.contact-list > li > .icon {
    color: var(--turq-dark);
    width: 20px;
    height: 20px;
    margin-top: 3px;
}
.contact-list a { color: var(--turq-dark); font-weight: 700; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.contact-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
/* Botoes sociais: estilo classico na paleta da marca (sem as cores berrantes
   de cada rede). Outline navy com icone turquesa; preenche no hover. */
.social-btn {
    flex: 1 1 0;
    min-width: 150px;
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid var(--tint-border);
    font-weight: 700;
}
.social-btn .icon { color: var(--turq-dark); transition: color 0.2s ease; }
.social-btn:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}
.social-btn:hover .icon { color: var(--white); }
/* WhatsApp: leve destaque turquesa como canal principal, ainda na paleta */
.social-btn--whatsapp { border-color: var(--turq); color: var(--turq-dark); }
.social-btn--whatsapp .icon { color: var(--turq); }
.social-btn--whatsapp:hover { background: var(--turq); border-color: var(--turq); color: var(--white); }
.social-btn--whatsapp:hover .icon { color: var(--white); }

/* ==================== FOOTER ==================== */
.footer { background: var(--navy); color: rgba(255, 255, 255, 0.8); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 40px;
    padding-top: 64px;
    padding-bottom: 48px;
}
.footer-brand img { height: 58px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; }
.footer-col h4 {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-col a { color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--turq); }

.footer-bar { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 18px 0; }
.footer-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}
.footer-bar a { color: var(--turq); text-decoration: none; font-weight: 600; }
.footer-bar a:hover { text-decoration: underline; }

/* ==================== BOTAO FLUTUANTE WHATSAPP ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    z-index: 90;
    text-decoration: none;
    opacity: 0;
    transform: translateY(16px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.whatsapp-float .icon { width: 30px; height: 30px; }
.whatsapp-float.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.whatsapp-float:hover { background: #1ebe5b; color: var(--white); }

/* ==================== LIGHTBOX ==================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 26, 38, 0.94);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img {
    max-width: min(92vw, 1100px);
    max-height: 86vh;
    border-radius: 12px;
    animation: lightboxIn 0.3s ease;
}
@keyframes lightboxIn {
    from { opacity: 0; transform: scale(0.96); }
    to { opacity: 1; transform: scale(1); }
}
.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 201;
}
.lightbox-close .icon,
.lightbox-nav .icon { width: 20px; height: 20px; }
.lightbox-close:hover,
.lightbox-nav:hover { background: var(--turq); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ==================== MODAL DE LEAD ==================== */
.lead-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 26, 38, 0.6);
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.lead-modal.active { display: flex; }
.lead-modal-content {
    background: var(--white);
    border-radius: 20px;
    border-top: 5px solid var(--turq);
    max-width: 420px;
    width: 100%;
    /* Sem rolagem: o conteudo e compacto o bastante para caber em qualquer
       viewport real; max-height generosa so como rede de seguranca extrema. */
    max-height: calc(100dvh - 24px);
    overflow: visible;
    padding: 26px 26px 22px;
    position: relative;
    text-align: center;
    animation: lightboxIn 0.3s ease;
}
/* Labels ocultas em todas as larguras: os placeholders descrevem cada campo.
   Mantidas no DOM (visually hidden) por acessibilidade. */
.lead-modal .form-group label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}
.lead-modal-icon { display: none; }
.lead-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: var(--tint);
    color: var(--text-soft);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}
.lead-modal-close .icon { width: 16px; height: 16px; }
.lead-modal-close:hover { background: var(--tint-border); color: var(--navy); }
.lead-modal-content h3 { color: var(--navy); font-size: 1.15rem; font-weight: 800; margin: 0 26px 6px; line-height: 1.3; }
.lead-modal-content > p { color: var(--text-soft); font-size: 0.85rem; margin-bottom: 14px; }

.form-group { text-align: left; margin-bottom: 10px; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}
.form-group input,
.form-group select {
    width: 100%;
    min-height: 44px;
    padding: 12px 14px;
    border: 1px solid var(--tint-border);
    border-radius: 10px;
    font-family: var(--font);
    font-size: 16px; /* evita zoom no iOS */
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--turq);
    box-shadow: 0 0 0 3px rgba(0, 165, 177, 0.15);
}
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    margin-bottom: 12px;
}
.form-check input {
    accent-color: var(--navy);
    width: 17px;
    height: 17px;
    margin-top: 3px;
    flex-shrink: 0;
}
.form-check label { font-size: 0.78rem; color: var(--text-soft); line-height: 1.5; }
.form-check a { color: var(--turq-dark); font-weight: 700; }
.lead-modal-content form .btn { margin-top: 8px; }

.lead-modal-lgpd-note {
    margin-top: 10px;
    font-size: 0.7rem;
    color: var(--text-soft);
    text-align: center;
}

.lead-success { padding: 2rem 0; }
.lead-success .icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--success);
    margin: 0 auto 1rem;
    display: block;
}
.lead-success p { font-size: 1rem; color: var(--text); font-weight: 600; }

/* ==================== RESPONSIVO ==================== */
/* Tablet / desktop estreito: o banner 16:9 escala junto, mas os botoes sobrepostos
   tem tamanho fixo. Reduz um pouco para ficarem proporcionais a arte e folgados
   acima da faixa inferior. */
@media (min-width: 761px) and (max-width: 1024px) {
    .banner__cta--hero .btn { padding: 8px 16px; font-size: 0.66rem; }
    .banner__cta--hero .btn .icon { width: 1em; height: 1em; }
    .banner__cta--hero { bottom: 27%; }
    .hero-rules i:nth-child(1) { width: 132px; }
    .hero-rules i:nth-child(2) { width: 80px; }
}

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .cond-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    /* Conector horizontal apenas dentro da mesma linha (colunas 1 -> 2) */
    .step-card:not(:last-child)::after { display: none; }
    .step-card:nth-child(odd)::after { display: block; }
    .cred-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-grid { gap: 40px; }
}

@media (max-width: 760px) {
    :root { --section-pad: 56px; --gutter: 20px; }
    html { scroll-padding-top: 72px; }

    /* Nav: botao do menu a ESQUERDA, logo centralizada no cabecalho */
    .nav-inner { position: relative; gap: 12px; }
    .nav-toggle { display: flex; order: -1; margin-left: -8px; }
    .nav-cta { display: none; }
    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Drawer abre pela esquerda, alinhado ao botao do menu */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        right: auto;
        width: min(320px, 86vw);
        background:
            radial-gradient(125% 55% at 0% 0%, rgba(34, 143, 169, 0.12), transparent 62%),
            linear-gradient(180deg, var(--white) 0%, #f3fafb 100%);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 60px 16px 26px;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
        box-shadow: 10px 0 36px rgba(0, 57, 82, 0.20);
        z-index: 100;
        overflow-y: auto;
    }
    .nav-links.open { transform: translateX(0); }
    .nav-links li { width: 100%; }

    /* Logomarca no topo do menu aberto */
    .nav-drawer-brand {
        display: flex;
        justify-content: center;
        padding: 8px 0 16px;
        margin-bottom: 8px;
        border-bottom: 1px solid var(--tint);
    }
    .nav-drawer-brand img { height: 42px; width: auto; }

    .nav-links a:not(.btn) {
        position: relative;
        display: block;
        padding: 15px 16px;
        font-size: 1rem;
        font-weight: 600;
        color: var(--navy);
        border-radius: 10px;
        transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
    }
    /* Efeito azul: divisor em gradiente entre cada opcao do menu aberto */
    .nav-links li:not(:last-child) a:not(.btn)::after {
        content: '';
        position: absolute;
        left: 14px;
        right: 14px;
        bottom: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(34, 143, 169, 0.5), rgba(23, 39, 86, 0.22), transparent);
    }
    /* Acento azul vertical a esquerda no item ativo/tocado */
    .nav-links a:not(.btn)::before {
        content: '';
        position: absolute;
        left: 6px;
        top: 50%;
        transform: translateY(-50%) scaleY(0);
        width: 3px;
        height: 22px;
        border-radius: 2px;
        background: linear-gradient(180deg, var(--turq), var(--navy));
        transition: transform 0.2s ease;
    }
    .nav-links a:not(.btn):hover,
    .nav-links a:not(.btn):focus,
    .nav-links a:not(.btn):active {
        background: linear-gradient(90deg, rgba(34, 143, 169, 0.16), rgba(23, 39, 86, 0.05));
        color: var(--turq-dark);
        padding-left: 22px;
    }
    .nav-links a:not(.btn):hover::before,
    .nav-links a:not(.btn):focus::before { transform: translateY(-50%) scaleY(1); }

    .nav-cta-mobile { display: block; margin-top: 18px; }
    .nav-cta-mobile .btn { width: 100%; }

    /* Hero: mais compacto no mobile (menos conteúdo antes da foto do Edson) */
    .hero { padding: 94px 0 50px; }
    .hero-grid { grid-template-columns: 1fr; gap: 26px; }
    .hero-kicker { font-size: 0.78rem; margin-bottom: 10px; }
    .hero h1 { margin-bottom: 13px; }
    .hero-sub { font-size: 1rem; margin-bottom: 20px; }
    .hero-ctas { margin-bottom: 20px; }
    .hero-badges { gap: 8px 16px; }
    .hero-photo { max-width: 360px; margin: 0 auto; }
    .photo-frame-offset::after { right: -10px; bottom: -10px; top: 10px; left: 10px; }

    /* Credibilidade: selos em 2x2 */
    .cred-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .cred-logo { height: 84px; padding: 14px 16px; }

    /* Sobre */
    .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
    .sobre-photo { max-width: 380px; margin: 0 auto; }
    .sobre-text { text-align: center; }
    .sobre-text .section-kicker, .sobre-text h2 { text-align: center; }
    .sobre-text .section-kicker { justify-content: center; }
    .sobre-text .section-kicker::before { display: block; }
    .check-list { max-width: 420px; margin-left: auto; margin-right: auto; text-align: left; }

    /* Serviços: 1 coluna, cards full */
    .services-grid { grid-template-columns: 1fr; gap: 18px; }

    /* Condições: 2 colunas */
    .cond-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    /* Galeria: 2 colunas com primeira foto destacada full-width */
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; gap: 12px; }

    /* Passos empilhados com linha conectora vertical */
    .steps-grid { grid-template-columns: 1fr; gap: 26px; margin-top: 36px; }
    .step-card:nth-child(odd)::after { display: block; }
    .step-card:not(:last-child)::after {
        display: block;
        top: auto;
        bottom: -26px;
        right: auto;
        left: 28px;
        width: 2px;
        height: 26px;
        background: linear-gradient(180deg, var(--turq), var(--turq-line));
    }

    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map iframe { min-height: 300px; }
    .precta-card { padding: 40px 28px; }

    /* Footer mobile: compacto, links em linha separados por | (mais clássico) */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding-top: 28px;
        padding-bottom: 16px;
        text-align: left;
    }
    .footer-col { padding: 13px 0; border-top: 1px solid rgba(255, 255, 255, 0.10); }
    .footer-col:first-child { border-top: 0; padding-top: 0; }
    .footer-col h4 { margin-bottom: 9px; font-size: 0.78rem; }

    .footer-brand { display: block; }
    .footer-brand img { height: 40px; margin: 0 0 9px; }
    .footer-brand p { font-size: 0.82rem; line-height: 1.5; max-width: 440px; margin: 0; }

    /* Links em linha, separados por | */
    .footer-col ul { display: flex; flex-flow: row wrap; align-items: center; gap: 0; }
    .footer-col li { display: inline-flex; align-items: center; margin: 0; }
    .footer-col li:not(:last-child)::after {
        content: '|';
        margin: 0 9px;
        color: rgba(255, 255, 255, 0.26);
        font-weight: 300;
    }
    .footer-col a { display: inline-block; padding: 2px 0; }

    /* Contato tem telefone/endereço multi-linha: mantém empilhado, sem | */
    .footer-col--contato ul { flex-direction: column; align-items: flex-start; }
    .footer-col--contato li { width: 100%; margin-bottom: 5px; }
    .footer-col--contato li:not(:last-child)::after { content: none; margin: 0; }

    .footer-bar { padding: 14px 0; }
    .footer-bar-inner { justify-content: flex-start; text-align: left; gap: 3px; }
}

@media (max-width: 480px) {
    :root { --section-pad: 40px; }

    .hero { padding: 84px 0 38px; }
    .hero-grid { gap: 20px; }
    .hero-ctas .btn { width: 100%; }
    /* Foto do hero abaixo do texto, em largura total com moldura proporcional */
    .hero-photo { max-width: 100%; }
    .photo-frame { padding: 8px; }
    .hero-photo .photo-frame img { aspect-ratio: 4 / 5; }
    .photo-frame-offset::after { right: -8px; bottom: -8px; top: 8px; left: 8px; }

    .cond-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .cond-chip { flex-direction: column; text-align: center; gap: 8px; padding: 14px 8px; font-size: 0.84rem; }
    .cond-chip img { width: 40px; height: 40px; }

    .cred-grid { gap: 14px; }
    .cred-logo { height: 76px; padding: 12px 14px; }
    .cred-item figcaption { font-size: 0.78rem; }

    .gallery-grid { gap: 12px; }
    .precta-card { padding: 32px 20px; }
    .precta-card .btn { width: 100%; white-space: normal; }
    .testimonial-card { padding: 26px 22px; }

    .footer-bar-inner { justify-content: flex-start; text-align: left; }
    .contact-info { padding: 28px 20px; }
    /* WhatsApp em destaque (linha cheia), Instagram e Facebook lado a lado */
    .contact-buttons { gap: 10px; }
    .social-btn--whatsapp { flex: 1 1 100%; }
    .social-btn--instagram, .social-btn--facebook { flex: 1 1 calc(50% - 5px); min-width: 0; }
    .whatsapp-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
    .whatsapp-float .icon { width: 28px; height: 28px; }
    .nav-logo-icon { height: 36px; }
    .nav-logo-text strong { font-size: 1.05rem; }
    .nav-logo-text em { font-size: 0.58rem; letter-spacing: 3px; }
    .lead-modal { padding: 14px; }
    .lead-modal-content { padding: 30px 20px 24px; }
}

/* Modal de lead compacto no mobile: precisa caber na viewport SEM rolagem.
   Labels saem (placeholders descritivos assumem), icone sai, espacos reduzem. */
@media (max-width: 760px) {
    .lead-modal { padding: 12px; }
    .lead-modal-content {
        max-height: 94dvh;
        padding: 22px 18px 16px;
        border-radius: 16px;
    }
    .lead-modal-icon { display: none; }
    .lead-modal-close { width: 36px; height: 36px; top: 8px; right: 8px; }
    .lead-modal-content h3 { font-size: 1.05rem; margin-bottom: 6px; padding: 0 26px; }
    .lead-modal-content > p { font-size: 0.8rem; margin-bottom: 12px; }
    .lead-modal .form-group { margin-bottom: 8px; }
    .lead-modal .form-group label { display: none; }
    .lead-modal .form-group input,
    .lead-modal .form-group select { padding: 10px 12px; min-height: 42px; }
    .lead-modal .form-check { margin-bottom: 6px; }
    .lead-modal .form-check label { font-size: 0.7rem; line-height: 1.35; }
    .lead-modal-content form .btn { margin-top: 4px; min-height: 44px; }
}

/* Telas baixas (iPhone SE e similares): some tambem o campo de e-mail opcional */
@media (max-width: 760px) and (max-height: 700px) {
    .lead-modal .form-group-email { display: none; }
}

/* ==================== FAQ (#faq) ==================== */
/* Cards <details> com seta linear em CSS puro (sem biblioteca de icones). */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--tint-border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover { border-color: var(--turq-line); }
.faq-item[open] {
    border-color: var(--turq);
    box-shadow: 0 6px 18px rgba(0, 57, 82, 0.07);
}
.faq-question {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--navy);
    user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '';
    flex-shrink: 0;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--turq-dark);
    border-bottom: 2px solid var(--turq-dark);
    transform: rotate(45deg);
    margin-right: 4px;
    transition: transform 0.25s ease;
}
.faq-item[open] .faq-question::after { transform: rotate(225deg); }
.faq-answer {
    padding: 0 20px 18px;
    color: var(--text-soft);
    font-size: 0.93rem;
    line-height: 1.65;
}
@media (max-width: 680px) {
    .faq-question { padding: 14px 16px; font-size: 0.92rem; }
    .faq-answer { padding: 0 16px 16px; }
}
