/* ODevQuant — Copy / VSL (tokens inspirados na referência, acento azul) */

:root {
    --bg: #0b0c0e;
    --surface: #151619;
    --border: #2a2d32;
    --foreground: #f4f4f6;
    --muted: #a1a1aa;
    --accent: #38bdf8;
    --accent-strong: #0ea5e9;
    --accent-deep: #2563eb;
    --accent-glow: rgba(56, 189, 248, 0.38);
    --accent-glow-strong: rgba(14, 165, 233, 0.55);
    --brand-fg: #0b0c0e;
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-display: 'Sora', var(--font-sans);
    --font-mono: 'JetBrains Mono', monospace;
    --radius-card: 14px;
    --radius-pill: 9999px;
    --header-h: 64px;
}

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

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    .fade-up,
    .fade-up-delay-1 {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--foreground);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body.nav-open {
    overflow: hidden;
}

.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 10000;
    padding: 0.5rem 1rem;
    background: var(--accent-deep);
    color: #fff;
    border-radius: 6px;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

::selection {
    background: rgba(56, 189, 248, 0.28);
    color: var(--foreground);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-deep), var(--accent-strong));
    border-radius: 4px;
}

strong {
    font-weight: 600;
    color: var(--foreground);
}

/* ----- Tipografia utilitária ----- */

.text-gradient {
    display: inline-block;
    max-width: 100%;
    overflow-wrap: anywhere;
    background: linear-gradient(90deg, var(--accent-deep) 0%, var(--accent-strong) 45%, #7dd3fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.gradient-text-blue {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.line-through {
    text-decoration: line-through;
    opacity: 0.85;
}

/* ----- Header ----- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    height: var(--header-h);
    /* Sem backdrop-filter: evita que position:fixed do menu fique preso ao header (Safari/WebKit) */
    background: rgba(11, 12, 14, 0.52);
    border-bottom: 1px solid rgba(42, 45, 50, 0.45);
    transition: background 0.3s ease, border-color 0.3s ease;
}

body.scrolled .site-header {
    background: rgba(11, 12, 14, 0.78);
    border-bottom-color: rgba(42, 45, 50, 0.55);
}

body.nav-open .site-header {
    background: rgba(11, 12, 14, 0.88);
    border-bottom-color: rgba(42, 45, 50, 0.5);
}

.site-header__inner {
    position: relative;
    z-index: 2;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-header__logo {
    position: relative;
    z-index: 5;
    flex-shrink: 0;
}

.site-header__logo img {
    display: block;
    height: 36px;
    width: auto;
    max-width: min(200px, 42vw);
    object-fit: contain;
}

.site-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

.site-nav a {
    font-size: 0.875rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-nav a:hover {
    color: var(--foreground);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 5;
    flex-shrink: 0;
}

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--foreground);
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    z-index: 6;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.06);
}

.nav-toggle__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.nav-toggle__icon--close {
    display: none;
}

body.nav-open .nav-toggle__icon--menu {
    display: none;
}

body.nav-open .nav-toggle__icon--close {
    display: flex;
}

@media (min-width: 900px) {
    .site-nav {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .site-header__cta {
        display: inline-flex !important;
    }
}

.site-nav.is-open {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    box-sizing: border-box;
    min-height: 100vh;
    min-height: 100dvh;
    padding: calc(var(--header-h) + max(0.75rem, env(safe-area-inset-top))) max(1rem, env(safe-area-inset-right)) max(1.5rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
    margin: 0;
    background: rgba(11, 12, 14, 0.98);
    border-bottom: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.site-nav.is-open a {
    padding: 1rem 0.25rem;
    border-bottom: 1px solid rgba(42, 45, 50, 0.55);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--foreground);
}

.site-nav.is-open a:last-of-type {
    border-bottom: none;
}

.site-header__cta.btn--sm {
    display: none;
}

/* CTA extra só no drawer mobile (referência Miss Milho) */
.site-nav__mobile-cta {
    display: none;
}

@media (max-width: 899px) {
    .site-nav.is-open .site-nav__mobile-cta {
        display: inline-flex;
        margin-top: 1.25rem;
        align-self: stretch;
        justify-content: center;
        min-height: 48px;
        border-top: 1px solid rgba(42, 45, 50, 0.45);
        padding-top: 1.25rem;
    }
}

@media (min-width: 900px) {
    .site-nav__mobile-cta {
        display: none !important;
    }
}

/* ----- Botões ----- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    line-height: 1.2;
    padding: 1rem 1.75rem;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: box-shadow 0.2s ease, filter 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn--primary {
    background: linear-gradient(135deg, var(--accent-strong) 0%, var(--accent-deep) 100%);
    color: #fff;
    box-shadow: 0 0 36px var(--accent-glow);
}

.btn--primary:hover:not(:disabled) {
    filter: brightness(1.08);
    box-shadow: 0 0 48px var(--accent-glow-strong);
}

.btn--primary:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    filter: grayscale(0.4);
    box-shadow: none;
}

.btn--outline {
    background: transparent;
    color: var(--foreground);
    border: 1px solid rgba(42, 45, 50, 0.85);
    box-shadow: none;
}

.btn--outline:hover {
    border-color: rgba(56, 189, 248, 0.45);
    color: var(--accent);
}

.btn--sm {
    padding: 0.5rem 1.15rem;
    font-size: 0.75rem;
}

.btn--lg {
    padding: 1.05rem 2rem;
    font-size: 1rem;
}

.btn--block {
    width: 100%;
}

.btn__icon {
    flex-shrink: 0;
}

/* ----- Hero ----- */

.hero {
    position: relative;
    min-height: min(100vh, 1200px);
    padding: calc(var(--header-h) + 2.5rem) 0 4rem;
    overflow: hidden;
    background: var(--bg);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(11, 12, 14, 0.62) 42%,
        rgba(11, 12, 14, 0.88) 78%,
        var(--bg) 100%
    );
}

.hero__bg-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(56, 189, 248, 0.06), transparent 55%);
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 2;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.hero__grid {
    display: grid;
    gap: 2.5rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    /* Degradê longo até o fundo da página — evita corte seco entre a montanha e a secção seguinte */
    .hero__bg-overlay {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.45) 0%,
            rgba(11, 12, 14, 0.22) 18%,
            rgba(11, 12, 14, 0.38) 34%,
            rgba(11, 12, 14, 0.52) 46%,
            rgba(11, 12, 14, 0.68) 58%,
            rgba(11, 12, 14, 0.82) 70%,
            rgba(11, 12, 14, 0.91) 80%,
            rgba(11, 12, 14, 0.97) 90%,
            var(--bg) 100%
        );
    }
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted);
    background: rgba(21, 22, 25, 0.55);
    border: 1px solid rgba(42, 45, 50, 0.65);
    border-radius: var(--radius-pill);
}

.pill__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-strong);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.55;
        transform: scale(0.88);
    }
}

.hero__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.85rem, 4vw, 3rem);
    line-height: 1.08;
    margin: 0 0 1.25rem;
}

.hero__title-line {
    display: block;
    color: var(--foreground);
    overflow-wrap: anywhere;
}

.hero__lead {
    margin: 0 0 1.75rem;
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 36rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero__actions .btn--outline {
    background: rgba(21, 22, 25, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #f4f4f6;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero__actions .btn--outline:hover {
    background: rgba(21, 22, 25, 0.92);
    border-color: rgba(56, 189, 248, 0.5);
    color: var(--accent);
}

.capital-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    padding: 0.95rem 1.35rem;
    background: rgba(13, 15, 18, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 4px 24px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-width: 36rem;
}

.capital-strip__left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.capital-strip__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(56, 189, 248, 0.12);
    color: var(--accent-strong);
}

.capital-strip__label {
    margin: 0;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    font-family: var(--font-mono);
}

.capital-strip__value {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
}

.capital-strip__hint {
    font-weight: 500;
    font-size: 0.8rem;
    color: var(--muted);
}

.capital-strip__note {
    margin: 0;
    flex: 1 1 100%;
    font-size: 0.8rem;
    color: var(--muted);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.75rem;
}

@media (min-width: 640px) {
    .capital-strip__note {
        flex: 1;
        border-top: none;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 0;
        padding-left: 1rem;
    }
}

/* Chart panel */

.chart-panel {
    background: rgba(21, 22, 25, 0.5);
    border-radius: var(--radius-card);
    padding: 1.25rem;
    border: 1px solid rgba(42, 45, 50, 0.65);
}

.chart-panel__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
    margin: 0 0 1rem;
    color: var(--foreground);
}

.capital-chart-svg {
    width: 100%;
    height: auto;
    min-height: 220px;
}

/* ----- Gradient border (cards) ----- */

.gradient-border {
    position: relative;
    border: 1px solid rgba(42, 45, 50, 0.65);
}

.gradient-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.35), transparent 58%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* ----- Sections ----- */

.container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.container--narrow {
    max-width: 48rem;
}

.section {
    scroll-margin-top: calc(var(--header-h) + 1rem);
}

.section--pad {
    padding: 4.5rem 0;
}

.section--offer {
    background: linear-gradient(180deg, transparent 0%, rgba(21, 22, 25, 0.35) 40%, transparent 100%);
}

/* Faixa de palavras-chave (marquee entre Hero e Como funciona) */

.keyword-marquee {
    padding: 1.35rem 0;
    background: var(--bg);
}

.keyword-marquee__viewport {
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.keyword-marquee__track {
    display: flex;
    width: max-content;
    animation: keywordMarquee 42s linear infinite;
}

.keyword-marquee__group {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    flex: 0 0 auto;
    width: max-content;
    box-sizing: border-box;
    padding-left: max(0.65rem, env(safe-area-inset-left));
    padding-right: max(0.65rem, env(safe-area-inset-right));
    gap: clamp(0.85rem, 2.4vw, 1.35rem);
    flex-shrink: 0;
}

.keyword-marquee__pill {
    display: flex;
    align-items: center;
    gap: clamp(0.4rem, 1.5vw, 0.65rem);
    flex: 0 0 auto;
    width: auto;
    min-width: 0;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.keyword-marquee__ico {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(2rem, 7vw, 2.5rem);
    height: clamp(2rem, 7vw, 2.5rem);
    border-radius: 10px;
    background: rgba(42, 45, 50, 0.95);
    color: #4ade80;
    border: 1px solid rgba(63, 67, 74, 0.85);
}

.keyword-marquee__ico svg {
    display: block;
}

.keyword-marquee__label {
    flex: 0 1 auto;
    font-family: var(--font-sans);
    font-size: clamp(0.72rem, 2.2vw, 0.875rem);
    font-weight: 500;
    color: rgba(244, 244, 246, 0.88);
    line-height: 1.25;
    text-align: left;
    white-space: nowrap;
    overflow: visible;
}

@media (max-width: 767px) {
    .keyword-marquee__group {
        gap: clamp(0.95rem, 4vw, 1.5rem);
        padding-left: max(0.65rem, env(safe-area-inset-left));
        padding-right: max(0.65rem, env(safe-area-inset-right));
    }

    .keyword-marquee__pill {
        gap: 0.55rem;
    }

    .keyword-marquee__ico {
        width: 1.9rem;
        height: 1.9rem;
        border-radius: 9px;
    }

    .keyword-marquee__ico svg {
        width: 15px;
        height: 15px;
    }

    .keyword-marquee__label {
        font-size: clamp(0.78rem, 3.2vw, 0.9rem);
    }
}

@keyframes keywordMarquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .keyword-marquee__viewport {
        -webkit-mask-image: none;
        mask-image: none;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .keyword-marquee__track {
        animation: none;
        width: max-content;
        max-width: none;
        margin: 0 auto;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .keyword-marquee__group {
        flex: 0 0 auto;
        width: max-content;
        max-width: none;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-left: max(0.65rem, env(safe-area-inset-left));
        padding-right: max(0.65rem, env(safe-area-inset-right));
        gap: clamp(0.85rem, 2.4vw, 1.35rem);
    }

    .keyword-marquee__group:last-child {
        display: none;
    }
}

.section__kicker {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-strong);
    margin: 0 0 1rem;
}

.section__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.65rem, 3.2vw, 2.65rem);
    line-height: 1.15;
    margin: 0 0 2.5rem;
}

.section__title-block {
    display: block;
}

/* Steps */

.step-grid,
.offer-process {
    display: grid;
    gap: 1.5rem;
}

.offer-after-process-cta {
    display: flex;
    justify-content: center;
    margin-top: 1.75rem;
    margin-bottom: 3.5rem;
}

.section__kicker--offer-plans {
    margin-top: 0;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .step-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (min-width: 1100px) {
    .offer-process {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    position: relative;
    padding: 2rem;
    border-radius: var(--radius-card);
    background: var(--surface);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.step-card:hover {
    transform: translateY(-3px);
}

.step-card__num {
    position: absolute;
    top: 1.5rem;
    right: 1.75rem;
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(42, 45, 50, 0.55);
    user-select: none;
    line-height: 1;
}

.step-card__title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    padding-right: 3rem;
}

.step-card__text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
}

/* Offer intro */

.offer-intro {
    margin-bottom: 2.5rem;
}

.badge-offer {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    border: 1px solid rgba(42, 45, 50, 0.65);
    border-radius: var(--radius-pill);
    background: rgba(21, 22, 25, 0.45);
    margin-bottom: 1.25rem;
}

.offer-intro__text {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 42rem;
    line-height: 1.7;
}

.offer-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Pricing compare */

.pricing-compare {
    display: grid;
    gap: 1.5rem;
    margin-top: 0;
}

@media (min-width: 900px) {
    .pricing-compare {
        grid-template-columns: 1fr 1fr;
        align-items: stretch;
    }
}

.pricing-card {
    position: relative;
    padding: 2.25rem;
    border-radius: var(--radius-card);
    background: var(--surface);
    text-align: center;
}

.pricing-card--fake {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.pricing-card__ribbon--fake {
    color: var(--muted);
    background: rgba(42, 45, 50, 0.45);
    border-color: rgba(63, 67, 74, 0.9);
}

.pricing-card--real {
    border-color: rgba(56, 189, 248, 0.35);
    box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.15), 0 16px 48px rgba(0, 0, 0, 0.35);
}

.pricing-card__ribbon {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent-strong);
    background: rgba(56, 189, 248, 0.12);
    border-radius: var(--radius-pill);
    border: 1px solid rgba(56, 189, 248, 0.25);
}

.pricing-card__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
}

.pricing-card__price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: var(--accent-strong);
}

.pricing-card__price--old {
    color: var(--muted);
    font-size: 1.75rem;
}

.pricing-card__period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--muted);
}

.pricing-card__sub {
    margin: 0 0 1.5rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.pricing-card__sub.pricing-card__sub--strike-red {
    color: #ef4444;
    text-decoration: line-through;
    font-weight: 600;
    font-size: 1.15rem;
}

.pricing-card__free-tag {
    color: #4ade80;
    font-weight: 600;
}

.pricing-card__list {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
    text-align: left;
}

.pricing-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--muted);
}

.pricing-card__list .check {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--accent-strong);
}

.pricing-card__fine {
    margin: 1rem 0 0;
    font-size: 0.75rem;
    color: var(--muted);
    opacity: 0.9;
}

/* CTA spin ring (remap azul) */

.cta-spin-wrap {
    position: relative;
    border-radius: var(--radius-pill);
    padding: 2px;
    overflow: hidden;
    background: rgba(56, 189, 248, 0.12);
    box-shadow: 0 0 22px rgba(14, 165, 233, 0.35);
}

.cta-spin-light {
    position: absolute;
    width: 300%;
    height: 300%;
    top: 50%;
    left: 50%;
    background: conic-gradient(
        transparent 0deg,
        rgba(56, 189, 248, 0.35) 155deg,
        rgba(255, 255, 255, 0.85) 174deg,
        #fff 180deg,
        rgba(255, 255, 255, 0.85) 186deg,
        rgba(56, 189, 248, 0.35) 205deg,
        transparent 220deg,
        transparent 360deg
    );
    animation: ctaSpinRotate 2.5s linear infinite;
}

@keyframes ctaSpinRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.cta-spin-inner {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-pill);
    overflow: hidden;
}

.cta-spin-wrap--disabled {
    background: rgba(42, 45, 50, 0.55);
    box-shadow: none;
    border: 1px solid rgba(63, 67, 74, 0.85);
}

.cta-spin-wrap--disabled .cta-spin-light {
    display: none;
}

.cta-spin-wrap--disabled .cta-spin-inner {
    background: rgba(21, 22, 25, 0.65);
}

/* Benefits */

.benefit-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefit-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    padding: 2rem;
    border-radius: var(--radius-card);
    background: var(--surface);
    transition: transform 0.25s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
}

.benefit-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    border-radius: 10px;
    background: rgba(21, 22, 25, 0.9);
    border: 1px solid rgba(42, 45, 50, 0.5);
    color: var(--accent-strong);
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.35));
}

.benefit-card__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.benefit-card__text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.65;
}

/* FAQ */

.section--faq .faq-list {
    margin-top: 2rem;
}

.faq-item {
    border-bottom: 1px solid rgba(42, 45, 50, 0.65);
    background: transparent;
    border-radius: 0;
    margin-bottom: 0;
}

.faq-item:first-child {
    border-top: 1px solid rgba(42, 45, 50, 0.65);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 0;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--foreground);
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-display);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--accent-strong);
}

.faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent-strong);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0;
}

.faq-item.active .faq-answer {
    max-height: 560px;
}

.faq-answer p {
    margin: 0;
    padding: 0 0 1.25rem;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ----- Bloco CTA final (pós-FAQ) ----- */

.section--closing-cta {
    padding: 4rem 0 4.5rem;
    background: #0d0f12;
    border-top: 1px solid rgba(42, 45, 50, 0.55);
}

.closing-cta {
    max-width: 38rem;
    margin: 0 auto;
    text-align: center;
}

.closing-cta__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.65rem, 4vw, 2.35rem);
    line-height: 1.15;
    margin: 0 0 1.25rem;
}

.closing-cta__title-line {
    display: block;
    color: var(--foreground);
}

.closing-cta__title-line--accent {
    color: #7ff4a4;
}

.closing-cta__lead {
    margin: 0 0 1.75rem;
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.65;
}

.btn--closing {
    background: #7ff4a4;
    color: #0b0c0e;
    box-shadow: 0 0 32px rgba(127, 244, 164, 0.35);
}

.btn--closing:hover {
    filter: brightness(1.06);
    box-shadow: 0 0 42px rgba(127, 244, 164, 0.45);
}

.btn--closing .btn__icon {
    stroke: currentColor;
}

/* Disclaimer de risco (card escuro + ícone verde, antes do rodapé) */

.risk-disclaimer {
    padding: 2.5rem 0 3.5rem;
    background: #000000;
    scroll-margin-top: calc(var(--header-h) + 1rem);
}

.risk-disclaimer__card {
    max-width: 56rem;
    margin: 0 auto;
    padding: clamp(1.75rem, 5vw, 2.5rem);
    border-radius: 14px;
    background: #121214;
    text-align: left;
}

@media (min-width: 900px) {
    .risk-disclaimer .container {
        max-width: min(92rem, calc(100vw - 2.5rem));
    }

    .risk-disclaimer__card {
        max-width: none;
        width: 100%;
        padding: clamp(2.25rem, 4.5vw, 3rem);
        border-radius: 12px;
    }
}

.risk-disclaimer__header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.risk-disclaimer__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
    color: #4ade80;
    line-height: 0;
}

.risk-disclaimer__icon svg {
    display: block;
}

.risk-disclaimer__title {
    margin: 0;
    font-family: var(--font-sans);
    font-size: clamp(1rem, 2.4vw, 1.125rem);
    font-weight: 700;
    line-height: 1.35;
    color: #ffffff;
}

.risk-disclaimer__body {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #9ca3af;
}

.risk-disclaimer__body p {
    margin: 0 0 1.125rem;
}

.risk-disclaimer__body p:last-child {
    margin-bottom: 0;
}

.risk-disclaimer__standout {
    font-weight: 700;
    color: #ffffff;
}

/* Footer */

.site-footer {
    border-top: 1px solid rgba(42, 45, 50, 0.65);
    padding: 3rem 0;
    scroll-margin-top: calc(var(--header-h) + 1rem);
}

.site-footer__grid {
    display: grid;
    gap: 2.25rem;
    margin-bottom: 0;
}

.site-footer__divider {
    display: block;
    width: 100%;
    height: 1px;
    margin: 2.25rem 0 1.75rem;
    padding: 0;
    border: 0;
    background: rgba(42, 45, 50, 0.95);
    opacity: 0.85;
}

@media (min-width: 768px) {
    .site-footer__grid {
        grid-template-columns: 1.2fr 1fr 1fr;
        align-items: start;
        gap: 2rem;
    }
}

.site-footer__brand {
    text-align: center;
}

@media (min-width: 768px) {
    .site-footer__brand {
        text-align: left;
    }
}

.site-footer__logo-link {
    display: inline-block;
    text-decoration: none;
}

.site-footer__logo-link:hover img {
    opacity: 0.92;
}

.site-footer__logo {
    height: 48px;
    width: auto;
    margin: 0 auto 0.65rem;
    object-fit: contain;
    display: block;
}

@media (min-width: 768px) {
    .site-footer__logo {
        margin: 0 0 0.65rem;
    }
}

.site-footer__tagline {
    margin: 0;
    font-size: 0.875rem;
    color: var(--muted);
}

.site-footer__col {
    text-align: center;
}

@media (min-width: 768px) {
    .site-footer__col {
        text-align: left;
    }
}

.site-footer__heading {
    margin: 0 0 0.85rem;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--foreground);
}

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__links li {
    margin-bottom: 0.45rem;
}

.site-footer__links a {
    font-size: 0.88rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__links a:hover {
    color: var(--accent-strong);
}

.site-footer__copy {
    margin: 0 0 0.75rem;
    font-size: 0.875rem;
    color: var(--muted);
    text-align: center;
}

.site-footer__wa {
    display: block;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-strong);
    text-decoration: none;
    text-align: center;
}

.site-footer__wa:hover {
    text-decoration: underline;
}

.site-footer__risk {
    max-width: 52rem;
    margin: 0 auto;
    font-size: 0.65rem;
    line-height: 1.55;
    color: var(--muted);
    opacity: 0.85;
    text-align: center;
}

/* Header compacto (páginas legais) */

.site-header--legal .site-header__inner {
    justify-content: space-between;
}

.site-header--legal .site-header__actions {
    flex-shrink: 0;
}

/* Páginas legais */

.legal-page {
    padding: calc(var(--header-h) + 2rem) 0 4rem;
    min-height: 50vh;
}

.legal-page__inner {
    max-width: 42rem;
}

.legal-page__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin: 0 0 0.35rem;
    line-height: 1.2;
}

.legal-page__meta {
    font-size: 0.875rem;
    color: var(--muted);
    margin: 0 0 2rem;
}

.legal-page h2 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 2rem 0 0.65rem;
    color: var(--foreground);
}

.legal-page p {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}

.legal-page ul {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.legal-page li {
    margin-bottom: 0.35rem;
}

.legal-page a {
    color: var(--accent-strong);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

body.nav-open .floating-live-bar.is-visible {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Barra flutuante (após sair do hero) */

.floating-live-bar {
    position: fixed;
    left: 50%;
    bottom: max(1rem, env(safe-area-inset-bottom));
    z-index: 2500;
    width: min(calc(100vw - 2rem), 26rem);
    transform: translateX(-50%) translate3d(0, 120%, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.35s ease,
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0.35s;
}

.floating-live-bar.is-visible {
    transform: translateX(-50%) translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.floating-live-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.45rem 0.45rem 0.45rem 1rem;
    border-radius: var(--radius-pill);
    background: rgba(21, 22, 25, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.floating-live-bar__status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.floating-live-bar__dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.65);
    animation: liveDotPulse 2s ease-in-out infinite;
}

@keyframes liveDotPulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.75;
        transform: scale(0.92);
    }
}

.floating-live-bar__text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(244, 244, 246, 0.92);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.floating-live-bar__btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.55rem 1rem;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    color: #0b0c0e;
    text-decoration: none;
    border-radius: var(--radius-pill);
    background: #7ff4a4;
    border: none;
    box-shadow: 0 2px 14px rgba(127, 244, 164, 0.35);
    transition: filter 0.2s ease, box-shadow 0.2s ease;
}

.floating-live-bar__btn:hover {
    filter: brightness(1.05);
    box-shadow: 0 4px 20px rgba(127, 244, 164, 0.45);
}

.floating-live-bar__btn-icon {
    flex-shrink: 0;
    stroke: currentColor;
}

@media (prefers-reduced-motion: reduce) {
    .floating-live-bar {
        transition: opacity 0.2s ease, visibility 0.2s;
    }

    .floating-live-bar__dot {
        animation: none;
    }
}

/* Fade-up animation */

.fade-up {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-up.visible,
.fade-up-delay-1.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.fade-up-delay-1 {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    transition: opacity 0.75s ease 0.12s, transform 0.75s ease 0.12s;
}

/* =============================================================================
   Mobile & touch (narrow viewports, safe areas, tap targets)
   ============================================================================= */

@media (max-width: 899px) {
    .site-header__inner {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .site-header__logo img {
        height: 32px;
        max-width: min(160px, 48vw);
    }

    .site-nav.is-open a {
        min-height: 48px;
        display: flex;
        align-items: center;
        padding: 1rem 0.25rem;
    }

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        min-height: 100svh;
        padding: calc(var(--header-h) + max(1rem, env(safe-area-inset-top))) 0 max(2rem, env(safe-area-inset-bottom));
    }

    .hero__inner {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .hero__grid {
        gap: 1.75rem;
    }

    .hero__title {
        font-size: clamp(1.45rem, 6.2vw, 2.25rem);
        line-height: 1.12;
        margin-bottom: 1rem;
    }

    .hero__lead {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 1.5rem;
    }

    .pill-row {
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }

    .pill {
        font-size: 0.6875rem;
        padding: 0.4rem 0.75rem;
        line-height: 1.3;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .hero__actions .btn {
        width: 100%;
        min-height: 48px;
        padding: 0.9rem 1.25rem;
    }

    .capital-strip {
        max-width: none;
        padding: 0.875rem 1rem;
        border-radius: 1.25rem;
    }

    .capital-strip__value {
        font-size: 1.05rem;
    }

    .chart-panel {
        padding: 1rem;
    }

    .chart-panel__title {
        font-size: 1rem;
    }

    .capital-chart-svg {
        min-height: 200px;
    }

    .container,
    .container--narrow {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .section--pad {
        padding: 3rem 0;
    }

    .section__kicker {
        letter-spacing: 0.14em;
        font-size: 0.6875rem;
    }

    .section__title {
        font-size: clamp(1.35rem, 5.5vw, 2.1rem);
        margin-bottom: 1.75rem;
    }

    .step-grid,
    .offer-process {
        gap: 1rem;
    }

    .step-card {
        padding: 1.35rem 1.15rem;
    }

    .step-card__num {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }

    .step-card__title {
        font-size: 1.05rem;
        padding-right: 2.5rem;
    }

    .step-card__text {
        font-size: 0.875rem;
    }

    .offer-intro__text {
        font-size: 0.95rem;
    }

    .offer-after-process-cta .btn--lg {
        width: 100%;
        min-height: 48px;
    }

    .offer-cta-row {
        margin-top: 2rem;
    }

    .offer-cta-row .btn--lg {
        width: 100%;
        min-height: 48px;
    }

    .pricing-card {
        padding: 1.35rem 1.1rem;
    }

    .pricing-card__name {
        font-size: 1.25rem;
    }

    .pricing-card__price {
        font-size: 1.65rem;
    }

    .pricing-card__price--old {
        font-size: 1.35rem;
    }

    .pricing-card__list li {
        font-size: 0.875rem;
    }

    .benefit-card {
        padding: 1.35rem 1.15rem;
    }

    .benefit-card__title {
        font-size: 1rem;
    }

    .benefit-card__text {
        font-size: 0.875rem;
    }

    .faq-question {
        min-height: 48px;
        padding: 1rem 0;
        font-size: 0.9375rem;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .faq-question span {
        padding-top: 2px;
        overflow-wrap: anywhere;
    }

    .faq-icon {
        margin-top: 4px;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .section--closing-cta {
        padding: 3rem 0 max(3.25rem, env(safe-area-inset-bottom));
    }

    .site-footer {
        padding: 2rem 0 max(2rem, env(safe-area-inset-bottom));
    }

    .site-footer__grid {
        text-align: center;
    }

    .site-footer__risk {
        font-size: 0.625rem;
        padding: 0 0.25rem;
    }
}

@media (max-width: 380px) {
    .hero__title {
        font-size: 1.35rem;
    }

    .section__title {
        font-size: 1.3rem;
    }

    .pill {
        font-size: 0.625rem;
        padding: 0.35rem 0.6rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px;
    }

    .btn--sm {
        min-height: 44px;
        padding: 0.55rem 1rem;
    }

    .step-card:hover,
    .benefit-card:hover {
        transform: none;
    }
}
