        /* ── Reset & Base ─────────────────────────────────────────────── */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --orange:       #FF6A00;
            --orange-dark:  #E65C00;
            --bg-dark:      #080C16;
            --bg-light:     #F6F7F9;
            --bg-white:     #FFFFFF;
            --text-primary: #111827;
            --text-muted:   #6B7280;
            --border:       #E5E7EB;
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-primary);
            background: var(--bg-dark);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ── Navbar ───────────────────────────────────────────────────── */
        .lp-nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            height: 72px;
            background: transparent;
            border-bottom: 1px solid transparent;
            transition: height 0.35s ease, background 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
        }

        .lp-nav.scrolled {
            height: 65px;
            background: rgba(8,12,22,0.78);
            backdrop-filter: blur(18px) saturate(180%);
            -webkit-backdrop-filter: blur(18px) saturate(180%);
            border-bottom-color: rgba(255,255,255,0.06);
            box-shadow: 0 6px 24px rgba(0,0,0,0.35);
        }
        /* Fallback pra browsers sem backdrop-filter (Firefox antigo) */
        @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
            .lp-nav.scrolled { background: rgba(8,12,22,0.94); }
        }

        .lp-nav__inner {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 20px;
            height: 100%;
            display: flex;
            align-items: center;
        }

        /* Dentro de /minha-conta — header full-width com logo à esquerda */
        body.is-account .lp-nav__inner {
            max-width: 100%;
            padding: 0 40px;
            justify-content: flex-start;
        }
        body.is-account .lp-nav__logo {
            flex: 0 0 auto;
        }
        @media (max-width: 900px) {
            body.is-account .lp-nav__inner { padding: 0 18px; }
            /* No mobile da área do cliente o header sempre tem bg —
               sem depender do scroll (páginas curtas ficavam transparente). */
            body.is-account .lp-nav {
                background: rgba(8,12,22,0.85);
                backdrop-filter: blur(18px) saturate(180%);
                -webkit-backdrop-filter: blur(18px) saturate(180%);
                border-bottom-color: rgba(255,255,255,0.06);
                box-shadow: 0 6px 24px rgba(0,0,0,0.35);
            }
            @supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
                body.is-account .lp-nav { background: rgba(8,12,22,0.96); }
            }
        }

        .lp-nav__logo {
            flex: 0 0 20%;
            display: flex;
            align-items: center;
        }

        .lp-nav__logo img { width: 111px; height: 28px; display: block; }

        .lp-nav__right {
            flex: 0 0 80%;
            display: flex;
            flex-direction: row-reverse;
            align-items: center;
            gap: 31px;
        }

        .lp-nav__links {
            display: flex;
            align-items: center;
            flex-direction: row-reverse;
            gap: 31px;
            list-style: none;
        }

        .lp-nav__links a {
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            font-size: 0.9rem;
            color: #7588A3;
            text-decoration: none;
            transition: color 0.2s;
        }

        .lp-nav__links a:hover { color: #fff; }

        /* Botão "Minha Área" — premium pill com avatar */
        .lp-nav__user {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 6px 18px 6px 6px;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
            border: 1px solid rgba(255,255,255,0.12);
            color: #fff;
            font: 700 13px/1 'Inter', sans-serif;
            letter-spacing: 0.01em;
            text-decoration: none;
            transition: background .18s ease, border-color .18s ease, transform .12s ease, box-shadow .18s ease;
            box-shadow: 0 2px 12px rgba(0,0,0,0.15);
            -webkit-tap-highlight-color: transparent;
        }
        .lp-nav__user:hover {
            background: linear-gradient(135deg, rgba(255,106,0,0.18) 0%, rgba(255,255,255,0.04) 100%);
            border-color: rgba(255,106,0,0.55);
            transform: translateY(-1px);
            box-shadow: 0 8px 24px rgba(255,106,0,0.25);
        }
        .lp-nav__user:active { transform: translateY(0); }
        .lp-nav__user-avatar {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px; height: 30px;
            border-radius: 50%;
            background: linear-gradient(135deg, #FF6A00 0%, #F9460C 100%);
            color: #fff;
            font: 800 13px/1 'Inter', sans-serif;
            letter-spacing: 0;
            text-indent: 0;
            text-align: center;
            flex-shrink: 0;
            padding: 0;
            box-shadow: 0 2px 8px rgba(249,70,12,0.45), inset 0 -1px 0 rgba(0,0,0,0.15);
        }

        @media (max-width: 640px) {
            .lp-nav__user { padding: 5px 14px 5px 5px; gap: 7px; font-size: 12px; }
            .lp-nav__user-avatar { width: 26px; height: 26px; font-size: 11px; }
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-weight: 600;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.2s ease;
            white-space: nowrap;
        }

        .btn-primary {
            background: #F9460C;
            color: #000;
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 500;
            border-radius: 9px;
        }

        .btn-primary:hover { background: #e03d0a; transform: translateY(-1px); }

        .btn-outline {
            background: transparent;
            color: #fff;
            padding: 12px 24px;
            font-size: 0.9rem;
            border: 1.5px solid rgba(255,255,255,0.3);
        }

        .btn-outline:hover { border-color: #fff; color: #fff; }

        .btn-lg { padding: 16px 32px; font-size: 1rem; }

        /* ── Hero ─────────────────────────────────────────────────────── */
        .lp-hero {
            position: relative;
            overflow: hidden;
            background: var(--bg-dark);
            padding: 160px 0 120px;
            text-align: center;
        }

        .lp-hero__video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.22;
            z-index: 0;
            pointer-events: none;
        }

        .lp-hero__overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(8,12,22,0.72) 0%, rgba(8,12,22,0.92) 80%, rgba(8,12,22,1) 100%);
            z-index: 1;
        }

        .lp-hero .container {
            position: relative;
            z-index: 2;
        }

        .lp-hero__label {
            display: inline-block;
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--orange);
            background: rgba(255,106,0,0.12);
            border: 1px solid rgba(255,106,0,0.25);
            border-radius: 100px;
            padding: 5px 14px;
            margin-bottom: 24px;
        }

        .lp-hero h1 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.15;
            letter-spacing: -0.02em;
            max-width: 760px;
            margin: 0 auto 20px;
        }

        .lp-hero h1 span { color: var(--orange); }

        .lp-hero__sub {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.6);
            max-width: 560px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        .lp-hero__ctas {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 48px;
        }

        .lp-hero__badges {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .lp-hero__badge {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 0.82rem;
            font-weight: 500;
            color: rgba(255,255,255,0.65);
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 100px;
            padding: 7px 16px;
        }

        .lp-hero__badge svg { width: 14px; height: 14px; fill: var(--orange); flex-shrink: 0; }

        /* ── Section Base ─────────────────────────────────────────────── */
        .lp-section { padding: 96px 0; }
        .lp-section--dark { background: var(--bg-dark); }
        .lp-section--connect { background: linear-gradient(to bottom, #080C16 0%, #0D1524 100%); }
        .lp-section--light { background: #0D1524; }
        .lp-section--white { background: #111827; }

        .section-label {
            display: block;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: 12px;
        }

        .section-title {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 700;
            line-height: 1.25;
            color: #fff;
            margin-bottom: 12px;
        }

        .section-title--white { color: #fff; }

        .section-sub {
            font-size: 1rem;
            color: rgba(255,255,255,0.55);
            max-width: 540px;
            line-height: 1.7;
        }

        .section-sub--white { color: rgba(255,255,255,0.6); }

        .section-header { margin-bottom: 52px; }
        .section-header--center { text-align: center; }
        .section-header--center .section-sub { margin: 0 auto; }

        /* ── Cards ────────────────────────────────────────────────────── */
        .card-grid { display: grid; gap: 20px; }
        .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
        .card-grid--3 { grid-template-columns: repeat(3, 1fr); }

        .card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 14px;
            padding: 28px;
            transition: all 0.2s ease;
        }

        .card:hover { transform: translateY(-3px); background: rgba(255,255,255,0.07); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

        .card--dark {
            background: rgba(255,255,255,0.04);
            border-color: rgba(255,255,255,0.08);
        }

        .card--dark:hover { background: rgba(255,255,255,0.07); }

        .card__icon {
            width: 44px;
            height: 44px;
            background: rgba(255,106,0,0.12);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
        }

        .card__icon svg { width: 20px; height: 20px; fill: var(--orange); }

        .card__title {
            font-size: 1rem;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }

        .card__text {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.55);
            line-height: 1.65;
        }

        /* ── Robôs ────────────────────────────────────────────────────── */
        .robots-list {
            display: flex;
            flex-direction: column;
        }

        .robot-block {
            width: 100%;
            padding: 88px 0;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .robot-block:nth-child(even) {
            background: rgba(255,255,255,0.025);
        }

        .robot-block__inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 72px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .robot-block--reverse .robot-block__inner {
            direction: rtl;
        }

        .robot-block--reverse .robot-block__inner > * {
            direction: ltr;
        }

        .robot-block__video {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            background: #000;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 28px 72px rgba(0,0,0,0.55);
        }

        .robot-block__video iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Lite embed: thumbnail + play button */
        .yt-lite {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
            background-color: #000;
            background-size: cover;
            background-position: center;
        }

        .yt-lite__play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 72px;
            height: 72px;
            background: rgba(0,0,0,0.65);
            border: 3px solid rgba(255,255,255,0.85);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s, transform 0.2s;
        }

        .yt-lite:hover .yt-lite__play {
            background: #FF4500;
            transform: translate(-50%, -50%) scale(1.08);
        }

        .yt-lite__play svg {
            width: 28px;
            height: 28px;
            fill: #fff;
            margin-left: 4px;
        }

        /* Quando ativado, o conteúdo (thumb + play) é substituído pelo
           iframe — não escondemos pointer-events porque isso bloqueia
           os controles do player do YouTube. */
        .yt-lite.activated .yt-lite__play { display: none; }
        .yt-lite.activated iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .robot-block__body {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .robot-block__title {
            font-size: 2rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.01em;
            line-height: 1.15;
        }

        .robot-block__text {
            font-size: 1rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.75;
            margin-bottom: 32px;
        }

        .robot-block__cta {
            display: inline-block;
            padding: 15px 32px;
            background: var(--orange);
            color: #fff;
            font-size: 0.95rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            border-radius: 8px;
            text-decoration: none;
            transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
            align-self: flex-start;
            box-shadow: 0 4px 20px rgba(249,70,12,0.35);
        }

        .robot-block__cta:hover {
            background: var(--orange-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(249,70,12,0.5);
        }

        @media (max-width: 900px) {
            .robot-block { padding: 56px 0; }
            .robot-block__inner {
                grid-template-columns: 1fr;
                direction: ltr;
                gap: 32px;
                padding: 0 24px;
            }
            .robot-block--reverse .robot-block__inner { direction: ltr; }
            .robot-block__title { font-size: 1.5rem; }
        }

        /* ── Metodologia ──────────────────────────────────────────────── */
        .step-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--orange);
            opacity: 0.25;
            line-height: 1;
            margin-bottom: 12px;
        }

        /* ── Stats ────────────────────────────────────────────────────── */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            text-align: center;
            margin-bottom: 52px;
        }

        .stat__number {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--orange);
            line-height: 1;
            margin-bottom: 6px;
        }

        .stat__label {
            font-size: 0.875rem;
            color: rgba(255,255,255,0.55);
        }

        /* Resultado card */
        .result-card {
            background: rgba(255,106,0,0.07);
            border: 1px solid rgba(255,106,0,0.2);
            border-radius: 14px;
            padding: 32px;
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
        }

        .result-card__item { flex: 1; min-width: 140px; }

        .result-card__label {
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(255,255,255,0.45);
            margin-bottom: 6px;
        }

        .result-card__value {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
        }

        .result-card__value--orange { color: var(--orange); }

        .disclaimer {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.35);
            margin-top: 20px;
            line-height: 1.5;
        }

        /* ── Backtests (tabs + charts) ─────────────────────────────────── */
        .bt-wrap { margin: 40px 0 28px; }

        /* Tabs por ROBÔ (nível 1) — premium, segmented control */
        .bt-robots {
            display: inline-flex;
            gap: 4px;
            padding: 6px;
            margin: 0 auto 32px;
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 14px;
            justify-content: center;
            width: max-content;
            max-width: 100%;
            box-shadow: 0 4px 24px rgba(0,0,0,0.25);
            position: relative;
            left: 50%;
            transform: translateX(-50%);
        }
        .bt-robot {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 11px 22px;
            background: transparent;
            border: 0;
            border-radius: 10px;
            color: rgba(255,255,255,0.65);
            font: 700 13px/1 'Inter', sans-serif;
            letter-spacing: .04em;
            cursor: pointer;
            transition: background .18s ease, color .18s ease, transform .12s ease;
            -webkit-tap-highlight-color: transparent;
        }
        .bt-robot:hover {
            background: rgba(255,255,255,0.05);
            color: #fff;
        }
        .bt-robot:active { transform: scale(0.97); }
        .bt-robot.is-active {
            background: linear-gradient(135deg, #FF6A00 0%, #F9460C 100%);
            color: #fff;
            box-shadow: 0 6px 18px rgba(249,70,12,0.45);
        }
        .bt-robot__count {
            display: inline-flex;
            align-items: center; justify-content: center;
            min-width: 22px; height: 22px;
            padding: 0 7px;
            background: rgba(255,255,255,0.08);
            border-radius: 999px;
            font-size: 11px;
            font-weight: 800;
            color: rgba(255,255,255,0.7);
        }
        .bt-robot.is-active .bt-robot__count {
            background: rgba(255,255,255,0.22);
            color: #fff;
        }

        /* Grupos por robô — toggle de visibilidade */
        .bt-robot-group { display: none; }
        .bt-robot-group.is-active { display: block; animation: bt-fade .25s ease; }

        .bt-tabs {
            display: flex; gap: 8px; flex-wrap: wrap;
            margin-bottom: 28px; justify-content: center;
        }
        .bt-tab {
            padding: 10px 22px; border-radius: 999px;
            background: rgba(255,255,255,0.05);
            color: rgba(255,255,255,0.72);
            border: 1px solid rgba(255,255,255,0.10);
            font: 600 13px/1 'Inter', sans-serif;
            cursor: pointer; transition: all .2s;
            letter-spacing: .2px;
        }
        .bt-tab:hover {
            background: rgba(255,255,255,0.10);
            color: #fff;
            border-color: rgba(255,255,255,0.18);
        }
        .bt-tab.is-active {
            background: var(--orange);
            border-color: var(--orange);
            color: #fff;
            box-shadow: 0 4px 16px rgba(255,106,0,0.35);
        }

        .bt-panel { display: none; }
        .bt-panel.is-active { display: block; animation: bt-fade .25s ease; }
        @keyframes bt-fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

        /* Nota informativa sobre condições da simulação (por robô) */
        .bt-note {
            display: flex;
            align-items: center;
            gap: 12px;
            max-width: 720px;
            margin: 0 auto 22px;
            padding: 12px 18px;
            background: rgba(96,165,250,0.08);
            border: 1px solid rgba(96,165,250,0.22);
            border-radius: 12px;
            color: rgba(255,255,255,0.85);
            font: 500 13px/1.5 'Inter', sans-serif;
        }
        .bt-note svg {
            flex-shrink: 0;
            color: #93C5FD;
        }
        .bt-note strong {
            color: #fff;
            font-weight: 800;
        }
        .bt-note--warn {
            background: rgba(255,106,0,0.08);
            border-color: rgba(255,106,0,0.3);
        }
        .bt-note--warn svg { color: #FF8A3D; }

        @media (max-width: 640px) {
            .bt-note { font-size: 12px; padding: 10px 14px; gap: 10px; margin-bottom: 18px; }
            .bt-note svg { width: 16px; height: 16px; }
        }

        /* Year tabs (filtro por ano) */
        .bt-years {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            padding: 6px;
            margin-bottom: 22px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 10px;
        }
        .bt-year-btn {
            flex: 1;
            min-width: 70px;
            padding: 9px 16px;
            background: transparent;
            border: 0;
            border-radius: 7px;
            color: rgba(255,255,255,0.6);
            font: 700 13px/1 'Inter', sans-serif;
            letter-spacing: 0.02em;
            cursor: pointer;
            transition: background .15s ease, color .15s ease;
            -webkit-tap-highlight-color: transparent;
            font-variant-numeric: tabular-nums;
        }
        .bt-year-btn:hover {
            background: rgba(255,255,255,0.05);
            color: #fff;
        }
        .bt-year-btn.is-active {
            background: rgba(255,106,0,0.18);
            color: #FF8A3D;
            box-shadow: inset 0 0 0 1px rgba(255,106,0,0.3);
        }

        .bt-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 12px;
            margin-bottom: 24px;
        }
        .bt-stat {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 14px;
            padding: 18px 20px;
        }
        .bt-stat-val {
            display: block;
            font: 700 22px/1.15 'Inter', sans-serif;
            color: #fff;
            letter-spacing: -0.4px;
        }
        .bt-stat-lbl {
            display: block;
            font: 600 10.5px/1 'Inter', sans-serif;
            color: rgba(255,255,255,0.55);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 8px;
        }
        .bt-stat-val.is-pos { color: #4ADE80; }
        .bt-stat-val.is-neg { color: #F87171; }
        .bt-stat-val.is-orange { color: var(--orange); }

        .bt-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: 22px 24px;
            margin-top: 14px;
        }
        .bt-card-head { margin-bottom: 14px; }
        .bt-card-head h3 {
            font: 700 16px/1.2 'Inter', sans-serif;
            color: #fff;
            margin: 0 0 4px;
        }
        .bt-card-head p {
            font: 400 12px/1.4 'Inter', sans-serif;
            color: rgba(255,255,255,0.5);
            margin: 0;
        }
        .bt-chart-wrap {
            position: relative;
            height: 280px;
        }
        @media (max-width: 640px) {
            .bt-stats { grid-template-columns: repeat(2, 1fr); }
            .bt-chart-wrap { height: 220px; }
            .bt-card { padding: 16px 16px; }
            .bt-stat { padding: 14px 16px; }
            .bt-stat-val { font-size: 19px; }
        }

        /* ── Público ──────────────────────────────────────────────────── */
        .publico-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .publico-card {
            border-radius: 14px;
            padding: 32px;
        }

        .publico-card--sim {
            background: rgba(34,197,94,0.06);
            border: 1px solid rgba(34,197,94,0.2);
        }

        .publico-card--nao {
            background: rgba(239,68,68,0.06);
            border: 1px solid rgba(239,68,68,0.15);
        }

        .publico-card__title {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .publico-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

        .publico-card li {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.7);
            display: flex;
            align-items: flex-start;
            gap: 10px;
            line-height: 1.5;
        }

        .publico-card li::before {
            flex-shrink: 0;
            margin-top: 2px;
            font-size: 0.85rem;
        }

        .publico-card--sim li::before { content: '✓'; color: #22C55E; font-weight: 700; }
        .publico-card--nao li::before { content: '✕'; color: #EF4444; font-weight: 700; }

        /* ── Planos ───────────────────────────────────────────────────── */
        .planos-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            max-width: 860px;
            margin: 0 auto;
        }

        .plano-card {
            background: rgba(255,255,255,0.04);
            border: 1.5px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 36px;
            position: relative;
        }

        .plano-card--popular {
            border-color: var(--orange);
            box-shadow: 0 0 0 1px var(--orange), 0 16px 48px rgba(255,106,0,0.12);
        }

        .plano-card__badge {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--orange);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 5px 16px;
            border-radius: 100px;
            white-space: nowrap;
        }

        .plano-card__name {
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: rgba(255,255,255,0.45);
            margin-bottom: 16px;
        }

        /* Tag "Primeiros 50" — destaque em cima do preço */
        .plano-card__promo-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(135deg, #FF6A00 0%, #FF8A3D 100%);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 6px 12px;
            border-radius: 100px;
            margin-bottom: 12px;
            box-shadow: 0 6px 18px rgba(255,106,0,0.32);
            animation: promoTagPulse 2.4s ease-in-out infinite;
        }
        .plano-card__promo-tag svg { flex-shrink: 0; }
        @keyframes promoTagPulse {
            0%, 100% { box-shadow: 0 6px 18px rgba(255,106,0,0.32); }
            50%      { box-shadow: 0 6px 24px rgba(255,106,0,0.55); }
        }

        /* Linha do preço "De R$ X" + economia */
        .plano-card__price-row {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 8px;
            flex-wrap: wrap;
        }
        .plano-card__from {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.4);
            text-decoration: line-through;
            text-decoration-color: rgba(248,113,113,0.6);
            text-decoration-thickness: 2px;
            margin: 0;
        }
        .plano-card__save {
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 0.06em;
            color: #4ADE80;
            background: rgba(74,222,128,0.12);
            border: 1px solid rgba(74,222,128,0.32);
            padding: 3px 9px;
            border-radius: 6px;
            text-transform: uppercase;
        }

        .plano-card__price {
            font-size: 3.4rem;
            font-weight: 900;
            color: #fff;
            line-height: 1;
            margin-bottom: 2px;
            letter-spacing: -1.5px;
            background: linear-gradient(180deg, #fff 0%, #FFD1A8 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .plano-card__price sup {
            font-size: 1.3rem;
            font-weight: 700;
            vertical-align: super;
            color: var(--orange);
            -webkit-text-fill-color: var(--orange);
        }

        .plano-card__price-note {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--orange);
            margin-bottom: 4px;
        }

        .plano-card__period {
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-bottom: 14px;
        }
        .plano-card__install {
            margin: 0 0 22px;
        }
        .plano-card__install-line {
            font-size: 0.84rem;
            color: rgba(255,255,255,0.65);
            text-align: center;
            line-height: 1.4;
        }
        .plano-card__install-line strong { color: #fff; font-weight: 700; }

        /* Contador de vagas promocionais */
        .promo-seats {
            background: rgba(255,106,0,0.08);
            border: 1px solid rgba(255,106,0,0.25);
            border-radius: 10px;
            padding: 12px 14px;
            margin: 6px 0 24px;
        }
        .promo-seats__row {
            display: flex; align-items: center; gap: 8px;
            font-size: 0.82rem; color: var(--orange);
            margin-bottom: 8px;
        }
        .promo-seats__icon { display: inline-flex; flex-shrink: 0; }
        .promo-seats__text { line-height: 1.35; }
        .promo-seats__text strong { font-weight: 700; }
        .promo-seats__bar {
            height: 6px; background: rgba(255,255,255,0.07);
            border-radius: 999px; overflow: hidden;
        }
        .promo-seats__fill {
            height: 100%; background: var(--orange);
            border-radius: 999px;
            transition: width .35s ease;
        }
        .promo-seats.is-low {
            background: rgba(248,113,113,0.10);
            border-color: rgba(248,113,113,0.32);
        }
        .promo-seats.is-low .promo-seats__row { color: #F87171; }
        .promo-seats.is-low .promo-seats__fill { background: #F87171; }
        .promo-seats.is-soldout {
            background: rgba(255,255,255,0.05);
            border-color: rgba(255,255,255,0.12);
        }
        .promo-seats.is-soldout .promo-seats__row { color: rgba(255,255,255,0.55); }
        .promo-seats.is-soldout .promo-seats__fill { background: rgba(255,255,255,0.4); }

        .plano-card__divider {
            border: none;
            border-top: 1px solid rgba(255,255,255,0.08);
            margin: 24px 0;
        }

        .plano-card__features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }

        .plano-card__features li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 0.88rem;
            color: rgba(255,255,255,0.8);
            line-height: 1.4;
        }

        .plano-card__features li .check { color: #22C55E; font-weight: 700; flex-shrink: 0; }
        .plano-card__features li .no    { color: rgba(255,255,255,0.2); font-weight: 700; flex-shrink: 0; }
        .plano-card__features li.disabled { color: rgba(255,255,255,0.3); }

        .plano-card__soon {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: -16px 0 24px;
            padding: 10px 14px;
            background: rgba(255,170,0,0.08);
            border: 1px solid rgba(255,170,0,0.25);
            border-radius: 10px;
            font-size: 0.78rem;
            line-height: 1.4;
            color: rgba(255,255,255,0.7);
        }
        .plano-card__soon-badge {
            flex-shrink: 0;
            font-size: 0.66rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.04em;
            padding: 3px 8px;
            border-radius: 999px;
            background: #FFAA00;
            color: #1A1A1A;
            white-space: nowrap;
        }
        .plano-card__soon-text strong { color: #FFAA00; font-weight: 700; }

        .btn-full { width: 100%; }

        /* ── Lista de Espera ──────────────────────────────────────────── */
        .waitlist-box {
            background: linear-gradient(135deg, rgba(249,70,12,0.06) 0%, rgba(249,70,12,0.03) 100%);
            border: 1px solid rgba(249,70,12,0.18);
            border-radius: 20px;
            padding: 52px 56px;
            text-align: center;
            max-width: 640px;
            margin: 0 auto;
            box-shadow: 0 0 80px rgba(249,70,12,0.06);
        }

        .waitlist-form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 32px;
        }

        .waitlist-field {
            position: relative;
            text-align: left;
        }

        .waitlist-field label {
            display: block;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: rgba(255,255,255,0.45);
            margin-bottom: 6px;
        }

        .waitlist-field input {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255,255,255,0.05);
            border: 1.5px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            font-size: 0.92rem;
            font-family: inherit;
            color: #fff;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .waitlist-field input::placeholder { color: rgba(255,255,255,0.25); }

        .waitlist-field input:focus {
            border-color: #F9460C;
            box-shadow: 0 0 0 3px rgba(249,70,12,0.12);
        }

        .waitlist-field input.error {
            border-color: #EF4444;
            box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
        }

        .waitlist-field__msg {
            font-size: 0.75rem;
            margin-top: 5px;
            color: #EF4444;
            display: none;
        }

        .waitlist-field__msg.visible { display: block; }

        .waitlist-submit {
            margin-top: 8px;
        }

        .waitlist-feedback {
            margin-top: 16px;
            padding: 12px 18px;
            border-radius: 10px;
            font-size: 0.875rem;
            font-weight: 500;
            display: none;
        }

        .waitlist-feedback.success {
            display: block;
            background: rgba(34,197,94,0.1);
            border: 1px solid rgba(34,197,94,0.25);
            color: #4ADE80;
        }

        .waitlist-feedback.error-msg {
            display: block;
            background: rgba(239,68,68,0.1);
            border: 1px solid rgba(239,68,68,0.2);
            color: #F87171;
        }

        .waitlist-note {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.3);
            margin-top: 16px;
        }

        /* ── FAQ ──────────────────────────────────────────────────────── */
        .faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

        .faq-item {
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 12px;
            overflow: hidden;
            background: rgba(255,255,255,0.03);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            font-size: 0.95rem;
            font-weight: 600;
            color: #fff;
            cursor: pointer;
            text-align: left;
            font-family: inherit;
            transition: background 0.15s;
        }

        .faq-question:hover { background: rgba(255,255,255,0.04); }
        .faq-question.active { background: rgba(255,255,255,0.04); }

        .faq-icon {
            width: 22px;
            height: 22px;
            background: rgba(255,106,0,0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1rem;
            color: var(--orange);
            font-weight: 700;
            transition: transform 0.2s;
        }

        .faq-question.active .faq-icon { transform: rotate(45deg); }

        .faq-answer {
            display: none;
            padding: 0 24px 20px;
            font-size: 0.9rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .faq-answer.open { display: block; }

        /* ── Páginas legais (Privacidade / Termos) ───────────────────── */
        .legal-page {
            padding: 80px 0 60px;
            background: var(--bg-dark);
            min-height: 60vh;
        }
        .legal-page .container { max-width: 880px; }
        .legal-page__head {
            margin-bottom: 40px;
            padding-bottom: 24px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .legal-page__eyebrow {
            display: inline-block;
            font-size: 0.7rem; font-weight: 700;
            color: #FF6A00;
            text-transform: uppercase; letter-spacing: 0.12em;
            margin-bottom: 12px;
        }
        .legal-page__title {
            font-size: 2.2rem; font-weight: 800;
            color: #fff; line-height: 1.15; margin-bottom: 10px;
        }
        .legal-page__meta {
            font-size: 0.84rem; color: rgba(255,255,255,0.5);
        }
        .legal-page__body {
            font-size: 0.96rem; line-height: 1.72;
            color: rgba(255,255,255,0.78);
        }
        .legal-page__body h2 {
            font-size: 1.35rem; font-weight: 800;
            color: #fff;
            margin: 38px 0 14px;
            padding-top: 8px;
        }
        .legal-page__body h3 {
            font-size: 1.05rem; font-weight: 700;
            color: rgba(255,255,255,0.92);
            margin: 24px 0 10px;
        }
        .legal-page__body p { margin: 0 0 14px; }
        .legal-page__body ul {
            list-style: none;
            padding: 0;
            margin: 0 0 18px;
        }
        .legal-page__body ul li {
            position: relative;
            padding: 6px 0 6px 22px;
            border-bottom: 1px dashed rgba(255,255,255,0.06);
        }
        .legal-page__body ul li:last-child { border-bottom: 0; }
        .legal-page__body ul li::before {
            content: "•";
            position: absolute; left: 6px; top: 6px;
            color: #FF6A00; font-weight: 800;
        }
        .legal-page__body strong { color: #fff; font-weight: 700; }
        .legal-page__body em { color: rgba(255,255,255,0.6); }
        .legal-page__body a { color: #FF6A00; text-decoration: none; }
        .legal-page__body a:hover { text-decoration: underline; }
        .legal-page__body .legal-warn {
            background: rgba(248,113,113,0.08);
            border: 1px solid rgba(248,113,113,0.25);
            border-radius: 12px;
            padding: 16px 18px;
            margin: 20px 0;
            color: #FCA5A5;
            font-weight: 600;
        }
        .legal-page__body .legal-note {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 12px;
            padding: 16px 18px;
            margin: 20px 0;
            font-style: italic;
            color: rgba(255,255,255,0.65);
        }
        .legal-page__body .legal-sign {
            margin-top: 36px;
            padding-top: 18px;
            border-top: 1px solid rgba(255,255,255,0.08);
            font-size: 0.86rem;
            color: rgba(255,255,255,0.55);
        }
        .legal-page__body .legal-sign strong { color: #fff; }
        @media (max-width: 720px) {
            .legal-page { padding: 56px 0 40px; }
            .legal-page__title { font-size: 1.6rem; }
            .legal-page__body { font-size: 0.92rem; }
            .legal-page__body h2 { font-size: 1.15rem; margin-top: 28px; }
        }

        /* ── Footer ───────────────────────────────────────────────────── */
        .lp-footer {
            background: var(--bg-dark);
            padding: 32px 0;
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .lp-footer p {
            font-size: 0.82rem;
            color: rgba(255,255,255,0.35);
        }

        .lp-footer a {
            color: rgba(255,255,255,0.45);
            text-decoration: none;
            transition: color 0.2s;
        }

        .lp-footer a:hover { color: #fff; }

        /* ── Responsive ───────────────────────────────────────────────── */
        @media (max-width: 900px) {
            .card-grid--3 { grid-template-columns: 1fr 1fr; }
            .stats-grid   { grid-template-columns: 1fr; gap: 24px; }
            .planos-grid  { grid-template-columns: 1fr; max-width: 460px; }
        }

        @media (max-width: 640px) {
            .lp-nav__links { display: none; }
            .card-grid--2, .card-grid--3 { grid-template-columns: 1fr; }
            .publico-grid  { grid-template-columns: 1fr; }
            .waitlist-box { padding: 32px 20px; }
            .lp-hero { padding: 72px 0 60px; }
            .lp-section { padding: 64px 0; }
            .waitlist-box { padding: 32px 24px; }
        }

        /* ── Disclaimer (aviso de risco) ──────────────────────────────── */
        .lp-disclaimer {
            background: #0F172A;
            border-top: 1px solid rgba(255,255,255,0.06);
            padding: 28px 24px 36px;
        }
        .lp-disclaimer__inner {
            max-width: 820px;
            margin: 0 auto;
        }
        .lp-disclaimer p {
            margin: 0 0 10px;
            font-size: 12px;
            line-height: 1.7;
            color: rgba(255,255,255,0.45);
            text-align: justify;
            text-justify: inter-word;
            hyphens: auto;
        }
        .lp-disclaimer p:last-child { margin: 0; }
        .lp-disclaimer strong {
            color: rgba(255,255,255,0.7);
            font-weight: 600;
        }
        .lp-disclaimer__links {
            text-align: center !important;
            margin-top: 14px !important;
            color: rgba(255,255,255,0.4) !important;
        }
        .lp-disclaimer__links a {
            color: rgba(255,255,255,0.55);
            text-decoration: none;
            transition: color 0.2s;
        }
        .lp-disclaimer__links a:hover { color: #fff; }
        @media (max-width: 640px) {
            .lp-disclaimer { padding: 22px 18px 28px; }
            .lp-disclaimer p { font-size: 11.5px; }
        }
