/* Google Fonts carregado via <link> no HTML — sem @import para não bloquear o parse do CSS */

/* ==========================================================================
   1. RESET & CONFIGURAÇÕES GERAIS
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fonte-principal);
    font-weight: 400;
    background: var(--bg-body);
    color: var(--texto-escuro);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* ==========================================================================
   2. VARIÁVEIS / TOKENS DE DESIGN
   ========================================================================== */
:root {
    --cor-destaque: #64c9ed;
    --cor-destaque-hover: #4dbbe4;
    --bg-body: #f8f9fa;
    --bg-card: #ffffff;
    --bg-alt: #f4f6f8;
    --texto-escuro: #2d3748;
    --texto-muted: #718096;
    --borda-clara: #e2e8f0;
    --borda-escura: rgba(0, 0, 0, 0.1);
    --sombra-suave: 0 4px 12px rgba(0, 0, 0, 0.05);
    --sombra-card: 0 10px 25px rgba(0, 0, 0, 0.08);
    --fonte-principal: 'Inter', system-ui, -apple-system, sans-serif;
    --max-w: 1100px;
    --px: clamp(20px, 5vw, 64px);
    --radius: 12px;
    --transition: 0.3s ease;
}

/* ==========================================================================
   3. CLASSES UTILITÁRIAS & COMPONENTES REUSÁVEIS
   ========================================================================== */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
}

.eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cor-destaque);
    margin-bottom: 12px;
}

.title-main {
    font-weight: 700;
    line-height: 1.2;
    color: var(--texto-escuro);
}

.btn {
    display: inline-block;
    font-family: var(--fonte-principal);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--cor-destaque);
    color: #fff;
    box-shadow: 0 4px 14px rgba(100, 201, 237, 0.4);
}

.btn-primary:hover {
    background: var(--cor-destaque-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(100, 201, 237, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--cor-destaque);
    color: var(--cor-destaque);
}

.btn-outline:hover {
    background: rgba(100, 201, 237, 0.1);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ==========================================================================
   4. NAVEGAÇÃO PRINCIPAL (NAV)
   ========================================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--borda-clara);
    padding: 0 var(--px);
    transition: padding var(--transition);
}

.nav__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo img {
    height: 40px;
    width: auto;
    display: block;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav__links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--texto-muted);
    text-decoration: none;
    transition: color var(--transition);
}

.nav__links a:hover {
    color: var(--cor-destaque);
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav__hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--texto-escuro);
    transition: transform var(--transition);
}

/* ==========================================================================
   5. SEÇÃO HERO (INÍCIO)
   ========================================================================== */
.hero {
    background: var(--bg-body);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Overlay com gradiente escuro lateral para legibilidade do card */
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0, 0, 0, 0.65) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px var(--px);
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero__card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    max-width: 600px;
    backdrop-filter: none;
    border: none;
}

.hero__title {
    font-size: clamp(38px, 6vw, 62px);
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero__sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.7;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-hero-wpp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-family: var(--fonte-principal);
    font-weight: 700;
    font-size: 15px;
    padding: 16px 28px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: all var(--transition);
    animation: pulse-green 2.5s ease infinite;
}

.btn-hero-wpp:hover {
    background: #1da355;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
    animation: none;
}

.btn-hero-wpp svg {
    width: 20px;
    height: 20px;
    fill: #fff;
    flex-shrink: 0;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
    50%       { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.85); }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(100, 201, 237, 0.18);
    border: 1.5px solid rgba(100, 201, 237, 0.5);
    border-radius: 100px;
    padding: 8px 18px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero__badge p {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.3;
    white-space: nowrap;
}

.hero__badge strong {
    color: var(--cor-destaque);
}

/* ==========================================================================
   6. SEÇÃO ESTATÍSTICAS (NÚMEROS)
   ========================================================================== */
.numeros {
    background: var(--bg-card);
    border-top: 1px solid var(--borda-clara);
    border-bottom: 1px solid var(--borda-clara);
}

.numeros__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: var(--max-w);
    margin: 0 auto;
}

.numeros__item {
    padding: 40px 24px;
    text-align: center;
    border-right: 1px solid var(--borda-clara);
}

.numeros__item:last-child {
    border-right: none;
}

.numeros__valor {
    font-weight: 700;
    font-size: clamp(36px, 4vw, 48px);
    color: var(--cor-destaque);
    line-height: 1;
}

.numeros__label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--texto-muted);
    margin-top: 8px;
}

/* ==========================================================================
   7. SEÇÕES ESTRUTURAIS GERAIS
   ========================================================================== */
.section {
    padding: clamp(60px, 8vw, 100px) 0;
}

.section--clara {
    background: var(--bg-card);
}

.section--alt {
    background: var(--bg-alt);
}

.section__header {
    text-align: center;
    margin-bottom: 48px;
}

.section__title {
    font-size: clamp(28px, 4vw, 38px);
    color: var(--texto-escuro);
    font-weight: 700;
}

/* ==========================================================================
   8. EMPREENDIMENTO (DIFERENCIAIS)
   ========================================================================== */
.diferenciais {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.diferencial {
    background: var(--bg-card);
    border: 1px solid var(--borda-clara);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--sombra-suave);
    transition: all var(--transition);
}

.diferencial:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-card);
    border-color: rgba(100, 201, 237, 0.3);
}

.diferencial__icon {
    width: 48px;
    height: 48px;
    background: rgba(100, 201, 237, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.diferencial__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--cor-destaque);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.diferencial__titulo {
    font-size: 18px;
    font-weight: 600;
    color: var(--texto-escuro);
    margin-bottom: 10px;
}

.diferencial__desc {
    font-size: 14px;
    color: var(--texto-muted);
    line-height: 1.6;
}

/* ==========================================================================
   9. INFRAESTRUTURA & LAZER (GALERIA)
   ========================================================================== */
.lazer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 16px;
}

.lazer__item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: var(--bg-alt);
    cursor: pointer;
    box-shadow: var(--sombra-suave);
}

.lazer__item--tall {
    grid-row: span 2;
}

.lazer__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lazer__item:hover img {
    transform: scale(1.05);
}

.lazer__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
}

.lazer__label p {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

/* ==========================================================================
   10. PLANTAS (ABAS & CONTEÚDOS)
   ========================================================================== */
.plantas__tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.plantas__tab {
    font-family: var(--fonte-principal);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid var(--borda-clara);
    background: var(--bg-card);
    color: var(--texto-muted);
    cursor: pointer;
    transition: all var(--transition);
}

.plantas__tab.ativo,
.plantas__tab:hover {
    background: var(--cor-destaque);
    color: #fff;
    border-color: var(--cor-destaque);
    box-shadow: 0 4px 12px rgba(100, 201, 237, 0.3);
}

.plantas__panel {
    display: none;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--sombra-card);
    padding: 40px;
}

.plantas__panel.ativo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.plantas__img-wrap {
    background: var(--bg-alt);
    border-radius: var(--radius);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.plantas__img-wrap img {
    max-height: 100%;
    object-fit: contain;
}

.plantas__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.plantas__area {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    color: var(--texto-escuro);
    line-height: 1;
}

.plantas__area span {
    font-size: 14px;
    color: var(--texto-muted);
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.plantas__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.plantas__tag {
    font-size: 12px;
    font-weight: 600;
    background: rgba(100, 201, 237, 0.1);
    color: var(--cor-destaque);
    border-radius: 6px;
    padding: 6px 12px;
}

/* ==========================================================================
   11. LOCALIZAÇÃO (ENDEREÇO & PONTOS)
   ========================================================================== */
.localizacao__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.pontos {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ponto {
    background: var(--bg-card);
    border: 1px solid var(--borda-clara);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--sombra-suave);
}

.ponto__icon {
    width: 48px;
    height: 48px;
    background: rgba(100, 201, 237, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ponto__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--cor-destaque);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
}

.ponto h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--texto-escuro);
    margin-bottom: 4px;
}

.ponto p {
    font-size: 14px;
    color: var(--texto-muted);
}

.endereco__bloco {
    text-align: center;
}

.endereco__bloco p {
    font-size: 15px;
    color: var(--texto-muted);
}

.endereco__bloco strong {
    color: var(--texto-escuro);
    font-weight: 600;
}

/* ==========================================================================
   12. FORMULÁRIO DE CAPTURA (LEADS)
   ========================================================================== */
.contato-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contato-wpp {
    background: #25D366;
    background: linear-gradient(135deg, #1da355 0%, #25D366 60%, #34d472 100%);
    border-radius: var(--radius);
    padding: 48px 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
    height: 100%;
}

.contato-wpp__icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-wpp__icon svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.contato-wpp h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.contato-wpp p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.contato-wpp__numero {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

.btn-wpp-grande {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    color: #1da355;
    font-weight: 700;
    font-size: 16px;
    padding: 18px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-top: auto;
}

.btn-wpp-grande:hover {
    background: #f0fff4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-wpp-grande svg {
    width: 22px;
    height: 22px;
    fill: #25D366;
}

.contato-form {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 48px;
    box-shadow: var(--sombra-card);
    border: 1px solid var(--borda-clara);
}

.form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form__group--full {
    grid-column: span 2;
}

.form__label {
    font-size: 12px;
    font-weight: 600;
    color: var(--texto-escuro);
}

.form__input,
.form__select {
    font-family: var(--fonte-principal);
    font-size: 15px;
    color: var(--texto-escuro);
    background: var(--bg-alt);
    border: 1px solid var(--borda-clara);
    border-radius: 8px;
    padding: 14px 16px;
    width: 100%;
    transition: all var(--transition);
}

.form__input::placeholder {
    color: var(--texto-muted);
    opacity: 0.6;
}

.form__input:focus,
.form__select:focus {
    outline: none;
    border-color: var(--cor-destaque);
    box-shadow: 0 0 0 3px rgba(100, 201, 237, 0.2);
    background: var(--bg-card);
}

.form__submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    background: var(--cor-destaque);
    color: #fff;
    transition: all var(--transition);
    box-shadow: 0 4px 12px rgba(100, 201, 237, 0.3);
}

.form__submit:hover {
    background: var(--cor-destaque-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(100, 201, 237, 0.4);
}

.form__aviso {
    font-size: 12px;
    color: var(--texto-muted);
    text-align: center;
    margin-top: 16px;
}

.alerta {
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
}

.alerta--sucesso {
    background: #e6fffa;
    color: #2c7a7b;
    border: 1px solid #b2f5ea;
}

.alerta--erro {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #fed7d7;
}

/* ==========================================================================
   13. SEÇÃO CREDIBILIDADE & RODAPÉ
   ========================================================================== */
.credibilidade {
    background: var(--texto-escuro);
    padding: 60px 0;
    padding-left: 10%;
    padding-right: 10%;
}

.credibilidade__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}

.credibilidade__bloco p {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.credibilidade__bloco h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.credibilidade__bloco a {
    color: var(--cor-destaque);
    text-decoration: none;
    font-weight: 600;
}

.credibilidade__bloco span {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.footer {
    background: var(--texto-escuro);
    padding: 20px 0 40px;
    text-align: center;
}

.footer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer a {
    color: var(--cor-destaque);
    text-decoration: none;
    font-weight: 500;
}

/* ==========================================================================
   14. MODAL
   ========================================================================== */
.modal-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-backdrop.aberto {
    display: flex;
}

.modal {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 520px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--texto-muted);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition);
}

.modal__close:hover {
    color: var(--texto-escuro);
}

.modal__titulo {
    font-size: 28px;
    font-weight: 700;
    color: var(--texto-escuro);
    margin-bottom: 8px;
}

.modal__sub {
    font-size: 15px;
    color: var(--texto-muted);
    margin-bottom: 24px;
}

/* ==========================================================================
   15. WPP FLOAT
   ========================================================================== */
.wpp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 150;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
}

.wpp-float:hover {
    transform: scale(1.1);
}

.wpp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* ==========================================================================
   16. RESPONSIVO
   ========================================================================== */
@media (max-width: 900px) {
    .numeros__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .numeros__item {
        border-bottom: 1px solid var(--borda-clara);
    }

    .numeros__item:nth-child(even) {
        border-right: none;
    }

    .diferenciais {
        grid-template-columns: repeat(2, 1fr);
    }

    .lazer__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .lazer__item--tall {
        grid-row: auto;
    }

    .lazer__item img {
        height: 250px;
    }

    .plantas__panel.ativo {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .nav__links {
        display: none;
    }

    .nav__hamburger {
        display: flex;
    }

    .nav__links.aberto {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-card);
        padding: 24px var(--px);
        gap: 16px;
        border-bottom: 1px solid var(--borda-clara);
        box-shadow: var(--sombra-card);
    }

    .nav__links.aberto a {
        color: var(--texto-escuro);
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .hero__card {
        padding: 0;
    }
    .hero__inner {
        padding: 40px var(--px) 60px;
    }

    .diferenciais {
        grid-template-columns: 1fr;
    }

    .form__grid {
        grid-template-columns: 1fr;
    }

    .form__group--full {
        grid-column: span 1;
    }

    .contato-wrapper {
        grid-template-columns: 1fr;
        padding: 0 var(--px);
        gap: 24px;
    }

    .contato-wpp {
        padding: 32px 28px;
    }

    .contato-form {
        padding: 32px 24px;
    }

    .credibilidade__inner {
        flex-direction: column;
        text-align: center;
    }

    /* CTA fixo no rodapé mobile */
    .cta-mobile-bar {
        display: flex !important;
    }
}

/* ============================
   CTA BAR FIXO MOBILE
   ============================ */
.cta-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    background: #fff;
    border-top: 1px solid var(--borda-clara);
    padding: 12px 16px;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.10);
}

.cta-mobile-bar a,
.cta-mobile-bar button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 10px;
    border-radius: 8px;
    font-family: var(--fonte-principal);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.cta-mobile-bar__wpp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.4);
}

.cta-mobile-bar__form {
    background: var(--cor-destaque);
    color: #fff;
    box-shadow: 0 2px 10px rgba(100, 201, 237, 0.4);
}

.cta-mobile-bar svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    flex-shrink: 0;
}

/* ==========================================================================
   17. FAQ (AEO/GEO)
   ========================================================================== */
.faq__lista {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--borda-clara);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.faq__item[open] {
    box-shadow: var(--sombra-suave);
    border-color: var(--cor-destaque);
}

.faq__pergunta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-weight: 600;
    color: var(--texto-escuro);
    cursor: pointer;
    list-style: none;
}

.faq__pergunta::-webkit-details-marker {
    display: none;
}

.faq__icone {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
}

.faq__icone::before,
.faq__icone::after {
    content: '';
    position: absolute;
    background-color: var(--cor-destaque);
    transition: transform var(--transition);
}

.faq__icone::before {
    top: 6px;
    left: 0;
    width: 14px;
    height: 2px;
}

.faq__icone::after {
    top: 0;
    left: 6px;
    width: 2px;
    height: 14px;
}

.faq__item[open] .faq__icone {
    transform: rotate(180deg);
}

.faq__item[open] .faq__icone::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq__resposta {
    padding: 0 24px 24px 24px;
    font-size: 15px;
    color: var(--texto-muted);
}