/* ──────────────────────────────────────────────────────────────────────────
   Conceito OAB · MEE — Design System
   Ordem de hierarquia:
   1  Reset & base
   2  Variáveis globais (:root)
   3  Tipografia
   4  Layout & grid
   5  Keyframes & animações
   6  Decorativos & helpers visuais
   7  Botões
   8  Inputs & formulários
   9  Cards & containers
   10 Seções estruturais
   11 Subcomponentes de seção
   12 Helpers utilitários
   13 Media queries (breakpoints)
   ────────────────────────────────────────────────────────────────────────── */

/* ════════════════════════════════════════════════════════════════════════════
   1 · RESET & BASE
   ════════════════════════════════════════════════════════════════════════════ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: var(--background);
    color: var(--foreground);
    font-family: 'Inter', system-ui, sans-serif;
    font-feature-settings: 'ss01', 'cv11';
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img,
svg {
    display: block;
    max-width: 100%;
}
button {
    cursor: pointer;
    border: none;
    background: none;
    font: inherit;
}
a {
    color: inherit;
    text-decoration: none;
}
ul,
ol {
    list-style: none;
}
::selection {
    background: var(--gold-soft);
    color: var(--noir);
}

/* ════════════════════════════════════════════════════════════════════════════
   2 · VARIÁVEIS GLOBAIS
   ════════════════════════════════════════════════════════════════════════════ */

:root {
    --radius: 0.75rem;

    --background: oklch(0.985 0.006 80);
    --foreground: oklch(0.18 0.012 60);
    --ivory: oklch(0.985 0.006 80);

    --card: oklch(1 0 0);
    --card-foreground: oklch(0.18 0.012 60);

    --noir: oklch(0.135 0.008 60);
    --noir-soft: oklch(0.2 0.01 60);

    --gold: #f0c230;
    --gold-deep: #e8b84b;
    --gold-deepest: #856b2e;
    --gold-soft: oklch(0.7 0.16 78 / 0.12);

    --secondary: oklch(0.96 0.008 80);
    --secondary-foreground: oklch(0.18 0.012 60);
    --muted: oklch(0.95 0.008 80);
    --muted-foreground: oklch(0.38 0.012 70);

    --destructive: oklch(0.6 0.22 25);
    --border: oklch(0.18 0.012 60 / 0.1);
    --input: oklch(0.18 0.012 60 / 0.12);
    --ring: #e8b84b;
    --hairline: oklch(0.18 0.012 60 / 0.12);

    --shadow-gold: 0 0 0 1px oklch(0.7 0.16 78 / 0.2), 0 20px 60px -20px oklch(0.7 0.16 78 / 0.35);
    --shadow-soft: 0 30px 80px -30px oklch(0.18 0.012 60 / 0.18);
    --shadow-card: 0 1px 2px oklch(0.18 0.012 60 / 0.04), 0 12px 40px -16px oklch(0.18 0.012 60 / 0.12);

    --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ════════════════════════════════════════════════════════════════════════════
   3 · TIPOGRAFIA
   ════════════════════════════════════════════════════════════════════════════ */

.font-display {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-variant-numeric: lining-nums;
}
.text-balance {
    text-wrap: balance;
}
.eyebrow {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}
.tabular-nums {
    font-variant-numeric: tabular-nums;
}

/* ════════════════════════════════════════════════════════════════════════════
   4 · LAYOUT & GRID
   ════════════════════════════════════════════════════════════════════════════ */

.container {
    margin-inline: auto;
    padding-inline: 1.5rem;
    max-width: 72rem;
}
.container-md {
    margin-inline: auto;
    padding-inline: 1.5rem;
    max-width: 56rem;
}
.container-lg {
    margin-inline: auto;
    padding-inline: 1.5rem;
    max-width: 64rem;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}
.grid-5 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.grid-2-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.oferta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

/* ── Section spacing ────────────────────────────────────────────────────── */
section.py {
    padding-block: 6rem;
}
section.section-alt {
    background-color: var(--secondary);
}

/* ── Main wrapper ───────────────────────────────────────────────────────── */
.main-wrapper {
    position: relative;
    overflow-x: hidden;
    background: var(--background);
    color: var(--foreground);
}

/* ════════════════════════════════════════════════════════════════════════════
   5 · KEYFRAMES & ANIMAÇÕES
   ════════════════════════════════════════════════════════════════════════════ */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes goldPulse {
    0%,
    100% {
        box-shadow:
            0 0 0 1px var(--gold-soft),
            0 20px 60px -20px oklch(0.7 0.16 78 / 0.25);
    }
    50% {
        box-shadow:
            0 0 0 1px var(--gold-soft),
            0 30px 90px -10px oklch(0.7 0.16 78 / 0.45);
    }
}
@keyframes ping {
    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
@keyframes waPing {
    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
@keyframes pulseDot {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
@keyframes badgeGlow {
    0%,
    100% {
        box-shadow: 0 0 0 0 oklch(0.7 0.16 78 / 0);
        background: var(--gold-soft);
    }
    50% {
        box-shadow: 0 0 14px 4px oklch(0.7 0.16 78 / 0.45);
        background: oklch(0.7 0.16 78 / 0.22);
    }
}
@keyframes clockTick {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.9s var(--ease-premium),
        transform 0.9s var(--ease-premium);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.progressive-release {
    text-align: center;
}

/* ════════════════════════════════════════════════════════════════════════════
   6 · DECORATIVOS & HELPERS VISUAIS
   ════════════════════════════════════════════════════════════════════════════ */

.grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image: radial-gradient(oklch(0.18 0.012 60) 1px, transparent 1px);
    background-size: 3px 3px;
}

.gold-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin-inline: auto;
}

.gold-text {
    background: linear-gradient(135deg, #f5c518, #f0c230, #e8b84b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.inline-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid var(--hairline);
    background: oklch(1 0 0 / 0.6);
    backdrop-filter: blur(8px);
    padding: 0.375rem 1rem;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 9999px;
    background: var(--gold);
    animation: pulseDot 2s ease-in-out infinite;
}

#oferta-badge {
    animation: badgeGlow 2.4s ease-in-out infinite;
}

.rotating-trust-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    max-width: 0;
    opacity: 0;
    transition:
        max-width 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.35s ease;
}
.rotating-trust-text.visible {
    max-width: 200px;
    opacity: 1;
}

/* ════════════════════════════════════════════════════════════════════════════
   7 · BOTÕES
   ════════════════════════════════════════════════════════════════════════════ */

.btn-gold {
    align-items: center;
    width: 100%;
    gap: 0.6rem;
    background: var(--gold);
    color: var(--noir);
    border-radius: 9999px;
    padding: 1rem 2rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-premium);
    box-shadow: 0 10px 30px -10px oklch(0.7 0.16 78 / 0.5);
}
.btn-gold:hover {
    background: var(--gold-deep);
    transform: translateY(-2px);
    box-shadow: 0 20px 50px -10px oklch(0.7 0.16 78 / 0.7);
}

.btn-ghost {
    text-align: center;
    width: 100%;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--foreground);
    border-radius: 9999px;
    padding: 1rem 2rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border: 1px solid var(--hairline);
    transition: all 0.3s var(--ease-premium);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-deep);
}

.btn-gold-sm {
    text-align: center;
    font-size: 0.6rem;
}

/* ════════════════════════════════════════════════════════════════════════════
   8 · INPUTS & FORMULÁRIOS
   ════════════════════════════════════════════════════════════════════════════ */

.input-mee {
    display: block;
    width: 100%;
    background: var(--background);
    border: 1px solid var(--hairline);
    border-radius: 0.75rem;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    color: var(--foreground);
    transition:
        border-color 0.25s var(--ease-premium),
        box-shadow 0.25s var(--ease-premium);
}
.input-mee::placeholder {
    color: oklch(0.55 0.012 70);
}
.input-mee:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px oklch(0.7 0.16 78 / 0.15);
}

.field-label {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-bottom: 0.375rem;
    font-weight: 500;
}
.field-error {
    display: block;
    font-size: 0.75rem;
    color: var(--destructive);
    margin-top: 0.375rem;
}

/* ── intl-tel-input ─────────────────────────────────────────────────────── */
.iti {
    width: 100%;
}
.iti__flag-container {
    border-radius: 0.75rem 0 0 0.75rem;
}
.iti input {
    width: 100%;
    padding-left: 90px !important;
}
.iti__country-list {
    z-index: 9999 !important;
    max-height: 220px;
    overflow-y: auto;
    background: var(--card);
    border: 1px solid var(--hairline);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-soft);
}
.iti__country {
    color: var(--foreground);
    padding: 0.5rem 1rem;
}
.iti__country:hover,
.iti__country.iti__highlight {
    background: var(--gold-soft);
}
.iti__country-name {
    color: var(--foreground);
}
.iti__dial-code {
    color: var(--muted-foreground);
}
.iti__selected-flag {
    border-radius: 0.75rem 0 0 0.75rem;
}

/* ════════════════════════════════════════════════════════════════════════════
   9 · CARDS & CONTAINERS
   ════════════════════════════════════════════════════════════════════════════ */

.premium-card {
    background: var(--card);
    border: 1px solid var(--hairline);
    border-radius: 1.25rem;
    box-shadow: var(--shadow-card);
    transition: all 0.5s var(--ease-premium);
    text-align: center;
}
.premium-card:hover {
    transform: translateY(-4px);
    border-color: oklch(0.7 0.16 78 / 0.4);
    box-shadow: var(--shadow-soft);
}

/* ── Feature card ───────────────────────────────────────────────────────── */
.feature-card {
    padding: 1.75rem;
}
.feature-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.feature-card-num {
    font-style: italic;
    font-size: 2rem;
    color: oklch(0.18 0.012 60 / 0.15);
}
.feature-card-title {
    font-size: 1.5rem;
    margin-top: 1.25rem;
}
.feature-card-title-sm {
    font-size: 1.25rem;
    margin-top: 1.25rem;
}
.feature-card-desc {
    font-size: 1rem;
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* ── Bonus card ─────────────────────────────────────────────────────────── */
.bonus-card {
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
}
.bonus-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--gold);
    color: var(--noir);
    display: grid;
    place-items: center;
}
.bonus-title {
    font-size: 1.5rem;
}
.bonus-desc {
    font-size: 1rem;
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* ── Testimonial card ───────────────────────────────────────────────────── */
.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}
.testimonial-quote {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-top: 1rem;
    flex: 1;
}
.testimonial-footer {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--hairline);
}
.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--secondary), var(--muted));
    display: grid;
    place-items: center;
    border: 1px solid var(--hairline);
}
.testimonial-name {
    font-weight: 500;
    font-size: 0.875rem;
    text-align: left;
}
.testimonial-credential {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-deepest);
}
.testimonial-stars {
    display: flex;
    gap: 0.125rem;
    margin-top: 0.25rem;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* ── Guarantee card ─────────────────────────────────────────────────────── */
.guarantee-card {
    padding: 2.5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.guarantee-glow {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    pointer-events: none;
    background: radial-gradient(ellipse at top, oklch(0.7 0.16 78 / 0.15), transparent 60%);
}
.guarantee-inner {
    position: relative;
}
.guarantee-icon {
    display: inline-flex;
    width: 5rem;
    height: 5rem;
    border-radius: 9999px;
    background: var(--gold-soft);
    color: var(--gold-deepest);
    align-items: center;
    justify-content: center;
    border: 1px solid oklch(0.7 0.16 78 / 0.4);
}
.guarantee-eyebrow {
    margin-top: 1.5rem;
}
.guarantee-h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-top: 0.75rem;
}
.guarantee-p {
    margin-top: 1.25rem;
    max-width: 36rem;
    margin-inline: auto;
    line-height: 1.7;
}

/* ── Schedule card ──────────────────────────────────────────────────────── */
.schedule-card {
    padding: 0.5rem;
    background: var(--noir);
    color: var(--ivory);
}
.schedule-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}
.schedule-list {
    margin-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.schedule-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
}
.schedule-item--active {
    border: 1px solid oklch(0.7 0.16 78 / 0.5);
    background: oklch(0.7 0.16 78 / 0.1);
}
.schedule-item--default {
    border: 1px solid oklch(1 0 0 / 0.08);
    background: transparent;
}
.schedule-badge {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 9999px;
    display: grid;
    place-items: center;
    font-size: 0.6rem;
    font-weight: 500;
    flex-shrink: 0;
}
.schedule-badge--active {
    background: var(--gold);
    color: var(--noir);
}
.schedule-badge--default {
    background: oklch(1 0 0 / 0.05);
    color: oklch(0.985 0.006 80 / 0.7);
}
.schedule-item-body {
    flex: 1;
    min-width: 0;
}
.schedule-week-label {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: oklch(0.985 0.006 80 / 0.6);
}
.schedule-week-title {
    font-size: 0.85rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.schedule-status {
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.schedule-status--active {
    color: var(--gold);
}
.schedule-status--default {
    color: oklch(0.985 0.006 80 / 0.7);
}
.schedule-status--locked {
    color: oklch(0.985 0.006 80 / 0.4);
}
.schedule-card-body {
    padding: 1.25rem;
}

/* ── Countdown ──────────────────────────────────────────────────────────── */
.countdown-unit {
    min-width: 60px;
    border-radius: 0.75rem;
    padding: 0.75rem;
    text-align: center;
    border: 1px solid var(--hairline);
    background: var(--card);
}
.countdown-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.875rem;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.countdown-label {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}
.countdown-sep {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold-deep);
}

/* ── FAB tooltip ────────────────────────────────────────────────────────── */
.fab-tooltip {
    position: relative;
    background: var(--card);
    color: var(--noir);
    border-radius: 1rem;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    transition: all 0.4s var(--ease-premium);
    transform-origin: right;
}
.fab-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--card);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.fab-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.fab-tooltip.hidden {
    opacity: 0;
    transform: translateX(12px) scale(0.95);
    pointer-events: none;
}
.fab-tooltip.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* ──────────────────────────────────────────────────────────────────────────
   Conceito OAB · MEE — VIP block dentro do wa-panel
   Adicione este trecho ao style.css existente (após os estilos do wa-panel).
   ────────────────────────────────────────────────────────────────────────── */

/* ── Bloco VIP: fica entre o header e o body do painel ─────────────────── */
.wa-vip-block {
    padding: 0.875rem 1rem 1rem;
    border-bottom: 1px solid oklch(0.18 0.012 60 / 0.1);
    background: linear-gradient(135deg, oklch(0.7 0.16 78 / 0.06) 0%, transparent 100%);
}

/* ── Badge "Comunidade VIP" ─────────────────────────────────────────────── */
.wa-vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-deep, #e8b84b);
    margin-bottom: 0.4rem;
}
.wa-vip-badge svg {
    width: 0.7rem;
    height: 0.7rem;
    stroke: var(--gold, #f0c230);
    flex-shrink: 0;
}

/* ── Descrição ──────────────────────────────────────────────────────────── */
.wa-vip-desc {
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--muted-foreground, oklch(0.38 0.012 70));
    margin-bottom: 0.75rem;
}

/* ── Botão CTA dourado ──────────────────────────────────────────────────── */
.wa-vip-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    padding: 0.65rem 1rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--gold, #f0c230) 0%, var(--gold-deep, #e8b84b) 100%);
    color: var(--noir, oklch(0.135 0.008 60));
    text-decoration: none;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: 0 4px 16px -4px oklch(0.7 0.16 78 / 0.4);
    transition:
        filter 0.25s var(--ease-premium, cubic-bezier(0.22, 1, 0.36, 1)),
        transform 0.25s var(--ease-premium, cubic-bezier(0.22, 1, 0.36, 1)),
        box-shadow 0.25s ease;
}
.wa-vip-btn svg {
    width: 0.75rem;
    height: 0.75rem;
    flex-shrink: 0;
}
.wa-vip-btn:hover {
    filter: brightness(1.07);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px -6px oklch(0.7 0.16 78 / 0.5);
}
.wa-vip-btn:active {
    transform: translateY(0) scale(0.98);
    filter: brightness(0.97);
}

/* ── Icon bubble ────────────────────────────────────────────────────────── */
.icon-bubble {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: var(--gold-soft);
    color: var(--gold-deepest);
    align-items: center;
    justify-content: center;
}

/* ── Check item ─────────────────────────────────────────────────────────── */
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
}
.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    background: var(--gold);
    color: var(--noir);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* ── Offer badge ────────────────────────────────────────────────────────── */
.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.5rem;
    background: var(--gold-soft);
    color: var(--gold-deepest);
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════════════════════════════
   10 · SEÇÕES ESTRUTURAIS
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Top bar ────────────────────────────────────────────────────────────── */
#topbar {
    position: fixed;
    top: 0;
    inset-inline: 0;
    z-index: 50;
    border-bottom: 1px solid var(--hairline);
    backdrop-filter: blur(20px);
    background: oklch(0.985 0.006 80 / 0.8);
    transition:
        transform 0.5s var(--ease-premium),
        opacity 0.5s var(--ease-premium);
}
#topbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* ── Hero section ───────────────────────────────────────────────────────── */
.hero-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding-top: 4rem;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, oklch(0.985 0.006 80 / 0.8), oklch(0.985 0.006 80 / 0.7), var(--background));
}
.hero-glow {
    position: absolute;
    top: 0;
    inset-inline: 0;
    z-index: -1;
    height: 55vh;
    width: 80vw;
    margin-inline: auto;
    opacity: 0.5;
    background: radial-gradient(ellipse at center, oklch(0.7 0.16 78 / 0.25), transparent 65%);
}

/* ── Dark sections ──────────────────────────────────────────────────────── */
.dark-section {
    position: relative;
    background: var(--noir);
    color: var(--ivory);
    padding-block: 7rem;
    overflow: hidden;
}
.dark-section-line {
    position: absolute;
    inset-inline: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, oklch(0.7 0.16 78 / 0.4), transparent);
}
.dark-section-glow {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    pointer-events: none;
    background: radial-gradient(ellipse at center top, oklch(0.7 0.16 78 / 0.18), transparent 60%);
}
.dark-section-glow--center {
    background: radial-gradient(ellipse at center, oklch(0.7 0.16 78 / 0.25), transparent 65%);
}

/* ── Offer section ──────────────────────────────────────────────────────── */
.offer-section {
    position: relative;
    overflow: hidden;
    text-align: center;
    align-items: center;
}
.offer-bg-glow {
    position: absolute;
    inset: 0;
    opacity: 0.5;
    pointer-events: none;
    background: radial-gradient(ellipse at top, oklch(0.7 0.16 78 / 0.15), transparent 65%);
}

/* ── Trust strip ────────────────────────────────────────────────────────── */
.trust-strip {
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    background: oklch(1 0 0 / 0.4);
}

/* ── Modal overlay ──────────────────────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0);
    pointer-events: none;
    transition:
        background 0.2s,
        backdrop-filter 0.2s;
}
.modal-overlay.open {
    background: oklch(0.135 0.008 60 / 0.7);
    backdrop-filter: blur(4px);
    pointer-events: all;
}

/* ── WhatsApp FAB ───────────────────────────────────────────────────────── */
.wa-fab-wrapper {
    position: fixed;
    display: block !important;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 9999; /* ← era 60, sobe para garantir que fica sobre tudo */
}
.wa-tooltip-line {
    position: absolute;
    inset-inline: 0;
    top: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, oklch(0.7 0.16 78 / 0.4), transparent);
    border-radius: 0.75rem 0.75rem 0 0;
}
.wa-btn {
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, #25d366, #128c7e);
    box-shadow: 0 15px 35px -10px rgba(37, 211, 102, 0.6);
    transition: transform 0.3s var(--ease-premium);
}
.wa-btn:hover {
    transform: scale(1.05);
}
.wa-ping {
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: #25d366;
    animation: waPing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.4;
}
.wa-btn-icon {
    position: relative;
    width: 1.75rem;
    height: 1.75rem;
}

/* ── WA PANEL ─────────────────────────────────────────── */
.wa-panel {
    position: absolute;
    display: block;
    bottom: calc(100% + 12px);
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.18),
        0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden; /* ← mantenha, mas leia abaixo */
    transform-origin: bottom right;
    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s; /* ← adiciona visibility */
    z-index: 999;
}
.wa-panel.hidden {
    opacity: 0;
    transform: scale(0.92) translateY(8px);
    pointer-events: none;
    visibility: hidden; /* ← adiciona isto */
}

/* Header */
.wa-panel-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.1rem;
    background: #075e54;
    color: #fff;
}
.wa-panel-avatar {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wa-panel-avatar svg {
    width: 22px;
    height: 22px;
    color: #fff;
}
.wa-panel-info {
    flex: 1;
    min-width: 0;
}
.wa-panel-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    color: #fff;
}
.wa-panel-status {
    font-size: 0.73rem;
    margin: 0;
    color: #b2dfdb;
    display: flex;
    align-items: center;
    gap: 5px;
}
.wa-status-dot {
    width: 7px;
    height: 7px;
    background: #4caf50;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.3);
    animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.3);
    }
    50% {
        box-shadow: 0 0 0 5px rgba(76, 175, 80, 0);
    }
}
.wa-panel-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 0;
    transition: color 0.15s;
}
.wa-panel-close:hover {
    color: #fff;
}
.wa-panel-close svg {
    width: 18px;
    height: 18px;
}

/* Body */
.wa-panel-body {
    padding: 1.1rem 1.1rem 1.1rem;
}
.wa-panel-greeting {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.2rem;
    line-height: 1.3;
}
.wa-panel-sub {
    font-size: 0.8rem;
    color: #777;
    margin: 0 0 0.85rem;
}

/* Loading dots */
.wa-loading {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 0.5rem 0;
}
.wa-loading-dot {
    width: 7px;
    height: 7px;
    background: #ccc;
    border-radius: 50%;
    animation: wa-blink 1.2s infinite;
}
.wa-loading-dot:nth-child(2) {
    animation-delay: 0.2s;
}
.wa-loading-dot:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes wa-blink {
    0%,
    80%,
    100% {
        opacity: 0.25;
    }
    40% {
        opacity: 1;
    }
}

/* Botões de atalho */
.wa-quick-btns {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
}
.wa-quick-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-align: left;
    background: #f0faf4;
    border: 1.5px solid #c8e6c9;
    border-radius: 9px;
    padding: 0.55rem 0.75rem;
    font-size: 0.8rem;
    color: #1b5e20;
    cursor: pointer;
    transition:
        background 0.15s,
        border-color 0.15s,
        transform 0.1s;
    line-height: 1.3;
}
.wa-quick-btn:hover {
    background: #e0f5e9;
    border-color: #25d366;
    transform: translateX(3px);
}
.wa-quick-btn-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: #25d366;
}
.wa-quick-btn-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Campo livre */
.wa-input-row {
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
}
.wa-textarea {
    flex: 1;
    resize: none;
    border: 1.5px solid #ddd;
    border-radius: 10px;
    padding: 0.6rem 0.75rem;
    font-size: 0.82rem;
    font-family: inherit;
    line-height: 1.4;
    color: #222;
    outline: none;
    transition: border-color 0.15s;
}
.wa-textarea:focus {
    border-color: #25d366;
}
.wa-textarea::placeholder {
    color: #aaa;
}
.wa-send-btn {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #25d366;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.15s,
        transform 0.1s,
        opacity 0.15s;
    color: #fff;
}
.wa-send-btn:disabled {
    opacity: 0.45;
    cursor: default;
    transform: none;
}
.wa-send-btn:not(:disabled):hover {
    background: #1ebe5a;
    transform: scale(1.07);
}
.wa-send-btn svg {
    width: 18px;
    height: 18px;
}
.wa-input-hint {
    font-size: 0.7rem;
    color: #bbb;
    margin: 0.4rem 0 0;
    text-align: right;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */
footer.site-footer {
    border-top: 1px solid var(--hairline);
    background: var(--noir);
    color: oklch(0.985 0.006 80 / 0.75);
}

/* ════════════════════════════════════════════════════════════════════════════
   11 · SUBCOMPONENTES DE SEÇÃO
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Top bar inner ──────────────────────────────────────────────────────── */
.topbar-inner {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}
.topbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 30%;
}
.topbar-brand-text {
    line-height: 1.3;
    min-width: 0;
}
.topbar-logo {
    height: 2.5rem;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
}
.topbar-tagline {
    display: none;
    margin-top: 0.3rem;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}

/* ── Hero content ───────────────────────────────────────────────────────── */
.hero-content {
    margin-inline: auto;
    max-width: 56rem;
    padding: 4rem 1.25rem 5rem;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid var(--hairline);
    background: oklch(1 0 0 / 0.6);
    backdrop-filter: blur(8px);
    padding: 0.375rem 1rem;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.hero-badge-label {
    font-weight: 600;
}
.hero-h1 {
    font-size: clamp(2.25rem, 6vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-top: 2rem;
    transition-delay: 100ms;
}
.hero-sub {
    font-size: clamp(0.9rem, 2vw, 1.125rem);
    max-width: 40rem;
    margin-inline: auto;
    margin-top: 2rem;
    line-height: 1.7;
    transition-delay: 200ms;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
    transition-delay: 300ms;
}
.hero-bullets {
    margin-top: 3.5rem;
    max-width: 48rem;
    margin-inline: auto;
    text-align: left;
    transition-delay: 400ms;
}
.hero-bullet-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid var(--hairline);
    background: oklch(1 0 0 / 0.6);
    backdrop-filter: blur(4px);
    padding: 0.75rem 1rem;
}
.hero-bullet-icon {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    border-radius: 9999px;
    background: var(--gold-soft);
    color: var(--gold-deepest);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-bullet-label {
    font-size: 0.875rem;
    font-weight: 500;
}
.hero-mockup {
    margin-top: 4rem;
    margin-inline: auto;
    max-width: 48rem;
    transition-delay: 500ms;
}

/* ── Trust strip inner ──────────────────────────────────────────────────── */
.trust-strip-inner {
    padding-block: 2.5rem;
}
.trust-stat {
    text-align: center;
}
.trust-stat-number {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
}
.trust-stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

/* ── Section header ─────────────────────────────────────────────────────── */
.section-header {
    text-align: center;
    max-width: 40rem;
    margin-inline: auto;
}
.section-h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.05;
    margin-top: 1rem;
    transition-delay: 80ms;
}
.section-sub {
    margin-top: 1.25rem;
    line-height: 1.7;
    transition-delay: 160ms;
}
.section-divider {
    margin-top: 1.5rem;
}

/* ── Dark section content ───────────────────────────────────────────────── */
.dark-section-content {
    position: relative;
    margin-inline: auto;
    max-width: 48rem;
    padding-inline: 1.5rem;
    text-align: center;
}
.dark-section-h2 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 1;
    margin-top: 1.5rem;
    transition-delay: 100ms;
}
.dark-section-h2-cta {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 1;
    margin-top: 1.5rem;
    transition-delay: 100ms;
}
.dark-section-divider {
    margin-top: 2rem;
    background: linear-gradient(90deg, transparent, oklch(0.85 0.16 84), transparent);
}
.dark-section-not-you-em {
    font-style: italic;
    color: oklch(0.85 0.005 80);
}
.dark-section-accent {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-style: italic;
    color: oklch(0.92 0.06 84);
    margin-top: 1.5rem;
    transition-delay: 300ms;
}
.dark-section-p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.7;
    margin-top: 2.5rem;
    transition-delay: 200ms;
}
.dark-section-p2 {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 2rem;
    max-width: 36rem;
    margin-inline: auto;
    transition-delay: 400ms;
}
.not-you-method {
    font-style: normal;
    font-weight: 500;
    color: var(--gold);
}

/* ── Differentiators ────────────────────────────────────────────────────── */
.diff-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem 3rem;
    max-width: 56rem;
    margin-inline: auto;
    margin-top: 3.5rem;
}
.diff-item {
    display: flex;
    gap: 1.25rem;
}
.diff-num {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    border: 1px solid oklch(0.7 0.16 78 / 0.4);
    background: var(--gold-soft);
    display: grid;
    place-items: center;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-deepest);
    font-size: 1.25rem;
}
.diff-num-text {
    transform: translateY(-0.2rem);
}
.diff-title {
    font-size: 1.5rem;
}
.diff-desc {
    font-size: 1rem;
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* ── How it works steps ─────────────────────────────────────────────────── */
.steps-wrap {
    margin-top: 4rem;
    position: relative;
}
.steps-list {
    position: relative;
}
.step-item {
    text-align: center;
}
.step-num {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    background: var(--background);
    border: 1px solid oklch(0.7 0.16 78 / 0.5);
    display: grid;
    place-items: center;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-deep);
    font-size: 1.5rem;
    margin-inline: auto;
    box-shadow: var(--shadow-card);
}
.step-title {
    font-size: 1.25rem;
    margin-top: 1.25rem;
}
.step-desc {
    font-size: 1rem;
    margin-top: 0.5rem;
    line-height: 1.6;
}

/* ── Progressive release ────────────────────────────────────────────────── */
.release-h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1.05;
    margin-top: 1rem;
    transition-delay: 80ms;
}
.release-p {
    margin-top: 1.5rem;
    line-height: 1.7;
    transition-delay: 160ms;
}
.release-checklist {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition-delay: 240ms;
}
.release-col-right {
    min-width: 0;
    transition-delay: 200ms;
}
.release-grid {
    gap: 3rem;
}

/* ── Transformation before/after ───────────────────────────────────────── */
.transf-grid {
    margin-top: 3.5rem;
    max-width: 64rem;
    margin-inline: auto;
}
.transf-card-before {
    padding: 2rem 2.5rem;
    border-color: oklch(0.18 0.012 60 / 0.1);
}
.transf-card-after {
    padding: 2rem 2.5rem;
    background: var(--noir);
    color: var(--ivory);
    border-color: oklch(0.7 0.16 78 / 0.3);
    transition-delay: 100ms;
}
.transf-eyebrow-before {
    color: oklch(0.18 0.012 60 / 0.5);
}
.transf-h3 {
    font-size: 2rem;
    margin-top: 0.75rem;
}
.transf-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.transf-item-before {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: oklch(0.18 0.012 60 / 0.65);
}
.transf-dot-wrap {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    border: 1px solid oklch(0.18 0.012 60 / 0.25);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.transf-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 9999px;
    background: white;
}
.transf-item-after {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}
.transf-check {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    background: var(--gold);
    color: var(--noir);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

/* ── Professors ─────────────────────────────────────────────────────────── */
.prof-photo-wrap {
    aspect-ratio: 4 / 5;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--secondary), var(--muted));
    position: relative;
    overflow: hidden;
    margin-bottom: 1.25rem;
    border: 1px solid var(--hairline);
}
.prof-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.prof-photo-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
}
.prof-photo-overlay {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 33%;
    background: linear-gradient(to top, oklch(0.135 0.008 60 / 0.4), transparent);
}
.prof-name {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}
.prof-desc {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ── Platform mockup ────────────────────────────────────────────────────── */
.platform-chrome {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.625rem 1rem;
    border-bottom: 1px solid var(--hairline);
}
.platform-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 9999px;
    background: oklch(0.18 0.012 60 / 0.15);
}
.platform-label {
    margin-left: 0.75rem;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}
.platform-body {
    padding: 1.25rem;
    display: grid;
    gap: 1.5rem;
}
.platform-week-title {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}
.platform-week-sub {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}
.platform-items {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}
.platform-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid var(--hairline);
    padding: 0.625rem 0.75rem;
}
.platform-item-left {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    min-width: 0;
    flex: 1;
}
.platform-item-check {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 9999px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.platform-item-check--done {
    background: var(--gold);
    color: var(--noir);
}
.platform-item-check--pending {
    border: 1px solid oklch(0.18 0.012 60 / 0.2);
}
.platform-item-name {
    font-size: 0.825rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.platform-item-status {
    font-size: 0.65rem;
    color: var(--muted-foreground);
    flex-shrink: 0;
    white-space: nowrap;
}

/* ── Offer wrap ─────────────────────────────────────────────────────────── */
.offer-wrap {
    position: relative;
    margin-inline: auto;
    max-width: 72rem;
    padding-inline: 1.25rem;
}
.offer-col-left-inner {
    max-width: 40rem;
    margin-inline: auto;
}
.offer-h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.05;
    margin-top: 1rem;
    transition-delay: 80ms;
}
.offer-divider {
    margin-top: 1.5rem;
    margin-inline: 0;
}
.offer-sub {
    margin-top: 1.25rem;
    line-height: 1.7;
    transition-delay: 160ms;
}
.offer-countdown-wrap {
    margin-top: 3rem;
    margin-bottom: 3rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
.offer-countdown-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    border: 1px solid oklch(0.7 0.16 78 / 0.4);
    background: var(--gold-soft);
    color: var(--gold-deepest);
    padding: 0.375rem 1rem;
    font-size: 0.65rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.offer-countdown-units {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ── Offer card inner ───────────────────────────────────────────────────── */
.offer-card-inner {
    position: relative;
    border-radius: 1.125rem;
    background: var(--card);
    padding: 2rem;
}
.offer-card-h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-top: 0.75rem;
}
.offer-ribbon-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}
.offer-ribbon {
    position: absolute;
    top: 26px;
    right: -42px;
    width: 170px;
    transform: rotate(45deg);
    background: linear-gradient(90deg, #8b1a1a, #c0392b, #a93226);
    color: var(--noir);
    text-align: center;
    padding: 0.375rem 0;
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: -10px 10px 15px 0px rgba(0, 0, 0, 0.25);
}
.offer-price-block {
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.offer-price-from {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-foreground);
}
.offer-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}
.offer-price-currency {
    font-size: 1.5rem;
}
.offer-price-value {
    font-size: clamp(5rem, 6vw, 8rem);
    line-height: 1.1;
    padding-bottom: 0.05em;
}
.offer-price-installments {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}
.offer-checklist {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    text-align: left;
}
.offer-cta-wrap {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.offer-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    justify-content: center;
}
.offer-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 0.375rem;
    font-size: 0.7rem;
    color: var(--muted-foreground);
    letter-spacing: 0.04em;
    margin-top: 1rem;
    overflow: hidden;
}
.offer-payment-logos {
    display: flex;
    justify-content: center;
}
.payment-logo-hotmart {
    opacity: 0.3;
    width: 7rem;
}
.powered-by {
    color: oklch(0.62 0.01 70 / 0.6);
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-align: center;
    align-items: center;
    justify-content: center;
}
.price-strike {
    text-decoration: line-through;
}
.price-strong {
    color: var(--foreground);
}

/* ── CTA final ──────────────────────────────────────────────────────────── */
.cta-content {
    position: relative;
    margin-inline: auto;
    max-width: 48rem;
    padding-inline: 1.5rem;
    text-align: center;
}
.cta-sub {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.7;
    margin-top: 2rem;
    max-width: 36rem;
    margin-inline: auto;
    transition-delay: 200ms;
}
.cta-buttons {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition-delay: 300ms;
}
.cta-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition-delay: 400ms;
}

/* ── FAQ ────────────────────────────────────────────────────────────────── */
.faq-list {
    margin-top: 3.5rem;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    color: var(--noir);
}
.faq-item {
    border-bottom: 1px solid var(--hairline);
}
.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-block: 1.5rem;
    text-align: left;
    cursor: pointer;
}
.faq-question {
    font-size: 1.25rem;
}
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition:
        grid-template-rows 0.5s var(--ease-premium),
        opacity 0.5s var(--ease-premium);
}
.faq-answer.open {
    grid-template-rows: 1fr;
    opacity: 1;
}
.faq-inner {
    overflow: hidden;
}
.faq-icon-wrap {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    border: 1px solid var(--hairline);
    display: grid;
    place-items: center;
    transition: all 0.3s var(--ease-premium);
}
.faq-icon-wrap.open {
    background: var(--gold);
    color: var(--noir);
    border-color: var(--gold);
}
.faq-answer-text {
    padding-bottom: 1.5rem;
    line-height: 1.7;
    padding-right: 3rem;
}

/* ── Modal box ──────────────────────────────────────────────────────────── */
.modal-box {
    width: 100%;
    max-width: 28rem;
    background: var(--card);
    border-radius: 1rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--hairline);
    overflow: hidden;
    transform: scale(0.95);
    opacity: 0;
    transition:
        transform 0.3s var(--ease-premium),
        opacity 0.3s var(--ease-premium);
}
.modal-overlay.open .modal-box {
    transform: scale(1);
    opacity: 1;
}
.modal-header {
    position: relative;
    background: var(--noir);
    color: var(--ivory);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.modal-header-glow {
    position: absolute;
    inset: 0;
    opacity: 0.3;
    pointer-events: none;
    background: radial-gradient(ellipse at top, oklch(0.7 0.16 78 / 0.3), transparent 70%);
}
.modal-header-text {
    position: relative;
}
.modal-header-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
}
.modal-header-title {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}
.modal-close-btn {
    position: relative;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    background: oklch(1 0 0 / 0.1);
    display: grid;
    place-items: center;
    color: var(--ivory);
    transition: background 0.2s;
    flex-shrink: 0;
}
.modal-close-btn:hover {
    background: oklch(1 0 0 / 0.2);
}
.modal-success {
    padding: 2rem;
    text-align: center;
}
.modal-success-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    background: var(--gold-soft);
    color: var(--gold-deep);
    display: grid;
    place-items: center;
    border: 1px solid oklch(0.7 0.16 78 / 0.4);
    margin-inline: auto;
}
.modal-success-title {
    font-size: 1.5rem;
    margin-top: 1.25rem;
}
.modal-success-p {
    font-size: 0.875rem;
    margin-top: 0.75rem;
    line-height: 1.7;
}
.modal-redirect-status {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--muted-foreground);
}
.modal-redirect-gears {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}
.modal-redirect-gears-svg {
    width: 5.3rem;
    height: 2.45rem;
}
.modal-redirect-gears .gear-core,
.modal-redirect-gears .gear-tooth {
    fill: oklch(0.7 0.16 78 / 0.15);
    stroke: oklch(0.7 0.16 78 / 0.74);
    stroke-width: 0.9;
}
.modal-redirect-gears .gear-hole {
    fill: oklch(0.985 0.006 80 / 0.88);
    stroke: oklch(0.18 0.012 60 / 0.22);
    stroke-width: 0.6;
}
.modal-redirect-text {
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}
.modal-redirect-clock {
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 9999px;
    border: 1px solid oklch(0.7 0.16 78 / 0.45);
    position: relative;
    background: oklch(0.7 0.16 78 / 0.08);
    box-shadow: inset 0 0 0 1px oklch(1 0 0 / 0.4);
}
.modal-redirect-clock::before,
.modal-redirect-clock::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform-origin: bottom center;
    border-radius: 9999px;
    background: var(--gold-deep);
}
.modal-redirect-clock::before {
    width: 1px;
    height: 0.35rem;
    margin-left: -0.5px;
    animation: clockTick 1.2s steps(12, end) infinite;
}
.modal-redirect-clock::after {
    width: 1px;
    height: 0.24rem;
    margin-left: -0.5px;
    transform: rotate(55deg);
}
.modal-redirect-bar {
    margin-top: 0.85rem;
    width: min(300px, 100%);
    height: 0.52rem;
    border-radius: 9999px;
    margin-inline: auto;
    background: oklch(0.18 0.012 60 / 0.08);
    border: 1px solid oklch(0.18 0.012 60 / 0.14);
    overflow: hidden;
}
.modal-redirect-bar-fill {
    display: block;
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #f0c230 0%, #e8b84b 60%, #d39f34 100%);
    box-shadow: 0 0 14px oklch(0.7 0.16 78 / 0.38);
}
.modal-success-btn {
    margin-top: 1.75rem;
    width: 100%;
    justify-content: center;
}
.modal-form {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.modal-form-intro {
    font-size: 0.875rem;
    line-height: 1.7;
}
.modal-form-label {
    display: block;
}
.modal-form-submit {
    width: 100%;
    justify-content: center;
    padding-block: 1rem;
}
.modal-form-disclaimer {
    font-size: 0.65rem;
    color: var(--muted-foreground);
    text-align: center;
    letter-spacing: 0.04em;
}

/* ── Footer inner ───────────────────────────────────────────────────────── */
.footer-inner {
    padding-block: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
.footer-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}
.footer-logo-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-logo-letter {
    color: var(--noir);
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1;
}
.footer-logo-text {
    line-height: 1.3;
    color: var(--ivory);
}
.footer-logo-name {
    font-size: 1rem;
}
.footer-logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: oklch(0.985 0.006 80 / 0.6);
}
.footer-logo {
    width: 40%;
}
.footer-socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.footer-social-btn {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 9999px;
    border: 1px solid oklch(0.985 0.006 80 / 0.15);
    display: grid;
    place-items: center;
    transition: all 0.3s;
    color: oklch(0.985 0.006 80 / 0.8);
}
.footer-social-btn:hover {
    background: var(--gold);
    color: var(--noir);
    border-color: var(--gold);
}
.footer-copy {
    font-size: 0.75rem;
    color: oklch(0.985 0.006 80 / 0.5);
    text-align: center;
}
.footer-oab-name {
    font-style: italic;
    color: var(--gold);
}

.politics {
    font-size: 0.85rem;
}

.politics a {
    color: oklch(0.985 0.006 80 / 0.5);
}

.politics a:hover {
    color: var(--gold);
}

/* ── WhatsApp tooltip ───────────────────────────────────────────────────── */
.wa-tooltip-title {
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.4;
    white-space: nowrap;
}
.wa-tooltip-sub {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--noir);
    margin-top: 0.25rem;
    white-space: nowrap;
}

/* ── Grid section extras ────────────────────────────────────────────────── */
.grid-mt-4 {
    margin-top: 4rem;
}
.grid-mt-35 {
    margin-top: 3.5rem;
}
.self-center {
    align-self: center;
}

/* ════════════════════════════════════════════════════════════════════════════
   12 · HELPERS UTILITÁRIOS
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Icon sizes ─────────────────────────────────────────────────────────── */
.icon-xs {
    width: 1rem;
    height: 1rem;
}
.icon-sm {
    width: 1.25rem;
    height: 1.25rem;
}
.icon-md {
    width: 1.5rem;
    height: 1.5rem;
}
.icon-lg {
    width: 2rem;
    height: 2rem;
}
.icon-xl {
    width: 2.5rem;
    height: 2.5rem;
}

/* ── Text color helpers ─────────────────────────────────────────────────── */
.text-muted {
    color: var(--muted-foreground);
}
.text-ivory {
    color: var(--ivory);
}
.text-gold {
    color: var(--gold);
}
.text-gold-deep {
    color: var(--gold-deepest);
}
.text-noir {
    color: var(--noir);
}
.text-ivory-80 {
    color: oklch(0.985 0.006 80 / 0.8);
}
.text-ivory-70 {
    color: oklch(0.985 0.006 80 / 0.7);
}
.text-ivory-60 {
    color: oklch(0.985 0.006 80 / 0.6);
}

/* ── Flex helpers ───────────────────────────────────────────────────────── */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.flex-col {
    display: flex;
    flex-direction: column;
}
.flex-wrap {
    flex-wrap: wrap;
}

/* ── Gap helpers ────────────────────────────────────────────────────────── */
.gap-3 {
    gap: 0.75rem;
}
.gap-4 {
    gap: 1rem;
}
.gap-5 {
    gap: 1.25rem;
}
.gap-6 {
    gap: 1.5rem;
}
.gap-8 {
    gap: 2rem;
}
.gap-10 {
    gap: 2.5rem;
}
.gap-12 {
    gap: 3rem;
}

/* ── Margin-top helpers ─────────────────────────────────────────────────── */
.mt-1 {
    margin-top: 0.25rem;
}
.mt-2 {
    margin-top: 0.5rem;
}
.mt-3 {
    margin-top: 0.75rem;
}
.mt-4 {
    margin-top: 1rem;
}
.mt-5 {
    margin-top: 1.25rem;
}
.mt-6 {
    margin-top: 1.5rem;
}
.mt-7 {
    margin-top: 1.75rem;
}
.mt-8 {
    margin-top: 2rem;
}
.mt-10 {
    margin-top: 2.5rem;
}
.mt-12 {
    margin-top: 3rem;
}
.mt-14 {
    margin-top: 3.5rem;
}
.mt-16 {
    margin-top: 4rem;
}

/* ── Padding helpers ────────────────────────────────────────────────────── */
.pt-6 {
    padding-top: 1.5rem;
}
.pb-6 {
    padding-bottom: 1.5rem;
}

/* ── Border helpers ─────────────────────────────────────────────────────── */
.border-top {
    border-top: 1px solid var(--hairline);
}
.border-bottom {
    border-bottom: 1px solid var(--hairline);
}

/* ── Misc helpers ───────────────────────────────────────────────────────── */
.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.overflow-hidden {
    overflow: hidden;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.inset-0 {
    inset: 0;
}
.pointer-events-none {
    pointer-events: none;
}
.isolate {
    isolation: isolate;
}
.w-full {
    width: 100%;
}
.rounded-full {
    border-radius: 9999px;
}
.rounded-xl {
    border-radius: 0.75rem;
}
.rounded-2xl {
    border-radius: 1rem;
}
.self-center {
    align-self: center;
}

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

/* ════════════════════════════════════════════════════════════════════════════
   13 · MEDIA QUERIES (BREAKPOINTS)
   ════════════════════════════════════════════════════════════════════════════ */

@media (min-width: 640px) {
    section.py {
        padding-block: 8rem;
    }
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .inline-pill {
        font-size: 0.65rem;
    }
    .countdown-unit {
        min-width: 80px;
        padding: 1rem;
    }
    .countdown-value {
        font-size: 2.25rem;
    }
    .countdown-label {
        font-size: 0.6rem;
    }
    #waTooltip {
        display: block;
    }
}

@media (min-width: 768px) {
    .btn-gold-sm {
        max-width: 15rem !important;
    }
    .btn-ghost {
        max-width: 23.5rem;
    }
    .btn-gold {
        max-width: 23.5rem;
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-2-1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .oferta-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
    .oferta-col-left {
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-5 {
        grid-template-columns: repeat(5, 1fr);
    }
    .step-connector {
        position: absolute;
        left: 0;
        right: 0;
        top: 1.75rem;
        height: 1px;
        background: linear-gradient(90deg, transparent, oklch(0.7 0.16 78 / 0.4), transparent);
    }
    .offer-countdown-units {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        justify-content: flex-start;
    }
}

/* ── Scroll hint arrow ──────────────────────────────────────────────────── */
#scrollHint {
    display: none; /* oculto no mobile — JS liga só em desktop */
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    z-index: 40;
    flex-direction: column;
    align-items: center;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.6s var(--ease-premium),
        transform 0.6s var(--ease-premium);
}

#scrollHint.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

#scrollHint svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--gold);
    /* seta de baixo com opacidade reduzida para dar profundidade */
    filter: drop-shadow(0 2px 6px oklch(0.7 0.16 78 / 0.5));
}

#scrollHint svg:last-child {
    opacity: 0.45;
    margin-top: -0.5rem;
}

@keyframes scrollBounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(7px);
    }
}

#scrollHint.visible {
    animation: scrollBounce 1.4s ease-in-out infinite;
}

/* Só mostra em desktop */
@media (max-width: 768px) {
    #scrollHint {
        display: none !important;
    }
}
