/* ═══════════════════════════════════════════════════════════
   ORVAX LP — SISTEMA DE CONTROLE
   Minimalismo militarizado. Painel de controle secreto.
   ═══════════════════════════════════════════════════════════ */

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

:root {
    --bg: #F7F7F5;
    --bg-card: #F0F0EE;
    --border: #E0E0DD;
    --text: #0A0A0A;
    --text-muted: #888;
    --green: #00E87A;
    --orange: #E85D00;
    --red: #ff3333;
    --font-head: 'Space Mono', monospace;
    --font-body: 'DM Sans', sans-serif;
    --radius: 16px;
    --max-w: 1100px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
s { text-decoration: line-through; }

.lp-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 20px;
}

/* ═══════════════════════════════════════════════════════════
   STATUS BAR (fixed top)
   ═══════════════════════════════════════════════════════════ */
.status-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(247,247,245,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.status-bar__left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-bar__text {
    font-family: var(--font-head);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    display: inline-block;
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION BAR
   ═══════════════════════════════════════════════════════════ */
.nav-bar {
    position: fixed;
    top: 42px;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(247,247,245,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.nav-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 20px;
}

.nav-bar__links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-bar__link {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 6px;
    position: relative;
}

.nav-bar__link:hover {
    color: var(--text);
    background: rgba(0, 232, 122, 0.1);
}

.nav-bar__link--highlight {
    color: var(--green);
    font-weight: 700;
    border: 1px solid var(--green);
    padding: 6px 12px;
}

.nav-bar__link--highlight:hover {
    background: var(--green);
    color: var(--bg);
}

/* ═══════════════════════════════════════════════════════════
   HERO E VSL (VIDEO SALES LETTER)
   ═══════════════════════════════════════════════════════════ */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 130px;
}

.lp-hero__content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.lp-hero__cta-row {
    display: flex;
    align-items: center;
    gap: 24px; /* Espaço generoso entre o botão e o texto */
    margin-top: 32px;
}

.lp-hero__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin: 0; /* Remove a margem padrão do <p> para alinhamento perfeito */
}

/* ═══════════════════════════════════════════════════════════
   SIMBIOSE STANDALONE (TELA 2)
   ═══════════════════════════════════════════════════════════ */
.screen-eye-standalone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 24px;
}

/* Coluna 1: O Olho */
.screen-eye-standalone .symbiote-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0;
    pointer-events: none;
    z-index: 10;
}

.screen-eye-standalone .symbiote-wrap canvas {
    width: 100%;
    height: auto;
}

/* Coluna 2: O Texto Ameaçador */
.screen-eye__top {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-head);
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.screen-eye__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin: 0;
}

.screen-eye__headline {
    font-family: var(--font-head);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin: 16px 0 24px;
    text-align: left;
}

.screen-eye__accent {
    color: var(--red);
}

.screen-eye__sub {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 0 32px 0;
    text-align: left;
}

.screen-eye__label {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
}

@media (max-width: 900px) {
    .screen-eye-standalone {
        flex-direction: column-reverse;
        text-align: center;
        gap: 0px;
        margin: 40px auto;
    }
    .screen-eye-standalone .symbiote-wrap {
        width: 280px;
        height: 280px;
        margin-bottom: 20px;
    }
    .screen-eye__text {
        align-items: center;
        text-align: center;
    }
    .screen-eye__headline, .screen-eye__sub {
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════════════
   AGENT & METRICS SHOWCASE
   ═══════════════════════════════════════════════════════════ */
.agent-showcase {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
}

.agent-showcase__text {
    flex: 1;
}

.section__title--left { text-align: left; }
.section__desc--left { text-align: left; margin: 0; max-width: 100%; }

.agent-list {
    list-style: none;
    padding: 0;
    margin-top: 32px;
}

.agent-list li {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.agent-list__dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green);
}

/* ── Metrics UI (Premium Dark Mode) ── */
.agent-metrics {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #050505;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.metrics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.metric-card__header {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.metric-card__score {
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    color: #FFFFFF;
    letter-spacing: -0.02em;
}

.metric-card__score-dec {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.3);
}

.metric-card__trend {
    font-family: var(--font-head);
    font-size: 10px;
    letter-spacing: 0.05em;
    color: var(--green);
    background: rgba(0, 232, 122, 0.1);
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
}

.metric-card__status {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.metric-card__sub {
    font-family: var(--font-body);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.metric-bar { margin-bottom: 24px; }
.metric-bar:last-child { margin-bottom: 0; }

.metric-bar__info {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    letter-spacing: 0.08em;
}

.metric-bar__track {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.metric-bar__fill {
    height: 100%;
    background: #FFFFFF;
    position: relative;
    box-shadow: 0 0 10px rgba(255,255,255,0.4);
}

.metric-bar__fill--alert { 
    background: var(--red); 
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.6);
}

.agent-terminal {
    background: rgba(0, 232, 122, 0.03);
    border: 1px solid rgba(0, 232, 122, 0.15);
    border-radius: 16px;
    padding: 24px;
    border-left: 3px solid var(--green);
}

.agent-terminal__header {
    font-family: var(--font-head);
    font-size: 9px;
    color: var(--green);
    margin-bottom: 16px;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.agent-terminal__msg {
    font-family: var(--font-head);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--green); }
    50% { opacity: 0.4; box-shadow: 0 0 0 transparent; }
}
.status-dot--pulse {
    animation: pulseGlow 2s infinite;
}

/* ─── SCROLL PROGRESS ─── */
.scroll-progress {
    position: fixed;
    top: 37px;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 101;
    background: transparent;
}

.scroll-progress__fill {
    height: 100%;
    width: 0%;
    background: var(--green);
    transition: width 0.1s linear;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 16px 32px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lp-btn--primary {
    background: var(--text);
    color: var(--green);
}
.lp-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

.lp-btn--green {
    background: var(--green);
    color: var(--text);
}
.lp-btn--green:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,232,122,0.25);
}

.lp-btn--ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}
.lp-btn--ghost:hover {
    border-color: var(--text);
    color: var(--text);
}

.lp-btn--full { width: 100%; }
.lp-btn--lg { padding: 20px 40px; font-size: 12px; }

/* ═══════════════════════════════════════════════════════════
   HERO (TELA 1 — mantida)
   ═══════════════════════════════════════════════════════════ */
.lp-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    display: inline-block;
    animation: dotPulse 2s ease-in-out infinite;
}

.lp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
}

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,232,122,0.08);
    color: #0A0A0A;
    font-family: var(--font-head);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
}

.lp-hero__title {
    font-family: var(--font-head);
    font-size: clamp(32px, 8vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.lp-hero__accent { color: var(--text-muted); }

.lp-hero__sub {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto 28px;
    line-height: 1.7;
}
.lp-hero__sub strong { color: var(--text); font-weight: 500; }

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

/* ═══════════════════════════════════════════════════════════
   TELA 2: OLHO CENTRAL
   ═══════════════════════════════════════════════════════════ */
.screen-eye {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.screen-eye__inner {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 60px;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

/* ── SYMBIOTE (canvas blob) ── */
.symbiote-wrap {
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.symbiote-wrap canvas {
    width: 100%;
    height: 100%;
}

/* ── THE EYE (small version for final CTA) ── */
.eye {
    width: 220px;
    height: 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eye--sm { width: 120px; height: 120px; }

.eye__ring {
    position: absolute;
    border: 1.5px solid rgba(10,10,10,0.12);
    border-radius: 30%;
}

.eye__ring--outer {
    width: 100%;
    height: 100%;
    animation: rotCW 20s linear infinite;
}

.eye__ring--mid {
    width: 72%;
    height: 72%;
    border-color: rgba(10,10,10,0.18);
    animation: rotCCW 14s linear infinite;
}

.eye__ring--inner {
    width: 48%;
    height: 48%;
    border-color: rgba(10,10,10,0.25);
    animation: rotCW 9s linear infinite;
}

.eye__core {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    animation: corePulse 2.5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.eye--light .eye__ring { border-color: rgba(255,255,255,0.15); }
.eye--light .eye__core { background: var(--green); }

@keyframes rotCW { to { transform: rotate(360deg); } }
@keyframes rotCCW { to { transform: rotate(-360deg); } }
@keyframes corePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.6); opacity: 0.6; }
}

/* ── Eye screen text ── */
.screen-eye__headline {
    font-family: var(--font-head);
    font-size: clamp(28px, 6vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.screen-eye__accent { color: var(--text-muted); }

.screen-eye__sub {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
}

.screen-eye__label {
    font-family: var(--font-head);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.screen-eye__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    max-width: 500px;
}

/* ── Stars field ── */
.stars-field {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.stars-field.visible {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   SYSTEM UI ELEMENTS
   ═══════════════════════════════════════════════════════════ */
.sys-label {
    font-family: var(--font-head);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--green);
    text-transform: uppercase;
}

.sys-tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 100px;
    margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════
   GENERIC SECTIONS
   ═══════════════════════════════════════════════════════════ */
.section {
    padding: 96px 0;
}

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

.section__title {
    font-family: var(--font-head);
    font-size: clamp(18px, 5vw, 28px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section__desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   FEATURE CARDS (6 grid)
   ═══════════════════════════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: #FFFFFF;
    border: 1px solid rgba(10, 10, 10, 0.06);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 232, 122, 0.3);
}

/* Background Number */
.feature-card__num-bg {
    position: absolute;
    top: -24px;
    right: -16px;
    font-family: var(--font-head);
    font-size: 160px;
    font-weight: 700;
    color: rgba(10, 10, 10, 0.02);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
    transition: color 0.4s ease;
}

.feature-card:hover .feature-card__num-bg {
    color: rgba(0, 232, 122, 0.04);
}

.feature-card__content {
    position: relative;
    z-index: 1;
}

.feature-card__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 10, 10, 0.04);
    padding: 6px 12px;
    border-radius: 100px;
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text);
    margin-bottom: 24px;
}

.feature-card__tag-icon { 
    color: var(--green); 
}

.feature-card__name {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: var(--text);
}

.feature-card__desc {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: rgba(10, 10, 10, 0.65);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   TIMELINE (3 steps)
   ═══════════════════════════════════════════════════════════ */
.timeline {
    position: relative;
    max-width: 380px;
    margin: 0 auto;
    padding-left: 48px;
}

.timeline__line {
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.timeline__step {
    position: relative;
    padding-bottom: 40px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.timeline__step:last-child { padding-bottom: 0; }

.timeline__number {
    position: absolute;
    left: -48px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--text);
    color: var(--green);
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline__title {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.timeline__text {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   ALERT BOX (orange warning)
   ═══════════════════════════════════════════════════════════ */
.alert-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(232,93,0,0.06);
    border: 1px solid rgba(232,93,0,0.2);
    border-radius: var(--radius);
    padding: 14px 20px;
    margin-bottom: 32px;
}

.alert-box__icon { font-size: 16px; flex-shrink: 0; }

.alert-box__text {
    font-family: var(--font-head);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--orange);
}

/* ═══════════════════════════════════════════════════════════
   PLAN CARDS
   ═══════════════════════════════════════════════════════════ */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.plans-grid--four {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
}

.plan-card--featured {
    background: var(--text);
    border-color: var(--text);
}

.plan-card__badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--green);
    color: var(--text);
    font-family: var(--font-head);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 4px 12px;
    border-radius: 100px;
}

.plan-card__tag {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 12px;
}
.plan-card__tag--light { color: rgba(255,255,255,0.4); }

.plan-card__price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 20px;
}
.plan-card__price--light * { color: #fff; }

.plan-card__currency {
    font-family: var(--font-head);
    font-size: 14px;
    color: var(--text-muted);
}

.plan-card__amount {
    font-family: var(--font-head);
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.plan-card__cents {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 700;
}

.plan-card__period {
    font-family: var(--font-head);
    font-size: 11px;
    color: var(--text-muted);
    margin-left: 4px;
}

.plan-card__note {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    margin: -8px 0 16px;
}
.plan-card__note--light { color: rgba(255,255,255,0.5); }

.plan-card__save {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--bg-card);
    border: 1px solid var(--green);
    color: var(--green);
    font-family: var(--font-head);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 4px 12px;
    border-radius: 100px;
}

.plan-card__list {
    margin-bottom: 24px;
}
.plan-card__list--light .plan-card__item { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.08); }

.plan-card__item {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: var(--text);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}
.plan-card__item:last-child { border-bottom: none; }
.plan-card__item--off { color: var(--text-muted); }
.plan-card__item--off s { color: var(--text-muted); }
.plan-card__item--muted { color: rgba(255,255,255,0.3); }

.plan-check {
    color: var(--text);
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
}
.plan-check--green { color: var(--green); }

.plan-x {
    color: var(--text-muted);
    font-weight: 700;
    flex-shrink: 0;
}
.plan-x--muted { color: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════════════════════
   GUARANTEE BOX
   ═══════════════════════════════════════════════════════════ */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,232,122,0.06);
    border: 1px solid rgba(0,232,122,0.15);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-top: 24px;
}

.guarantee-box__icon { font-size: 18px; flex-shrink: 0; }

.guarantee-box__text {
    font-family: var(--font-head);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text);
}

/* ═══════════════════════════════════════════════════════════
   SHARE BOX (Invite link)
   ═══════════════════════════════════════════════════════════ */
.share-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: var(--text);
    border: 1px solid var(--green);
    border-radius: var(--radius);
    padding: 32px 40px;
    margin-top: 60px;
    box-shadow: 0 0 50px rgba(0, 232, 122, 0.15);
    position: relative;
    overflow: hidden;
}

.share-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: var(--green);
}

.share-box__title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    color: var(--green);
}

.share-box__desc {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
}

.share-box__action {
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 420px;
}

.share-box__input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    padding: 0 20px;
    font-family: var(--font-head);
    font-size: 12px;
    color: var(--bg);
    outline: none;
    transition: border-color 0.2s;
}
.share-box__input:focus {
    border-color: var(--green);
}

/* ═══════════════════════════════════════════════════════════
   FINAL CTA (dark block)
   ═══════════════════════════════════════════════════════════ */
.section-final {
    background: var(--text);
    padding: 96px 0;
}

.section-final__inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.section-final__title {
    font-family: var(--font-head);
    font-size: clamp(20px, 5vw, 32px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.section-final__sub {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
}

.section-final__label {
    font-family: var(--font-head);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
    background: linear-gradient(135deg, var(--text), rgba(10, 10, 10, 0.95));
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 80px;
}

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

.footer__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer__brand:hover {
    transform: translateX(4px);
}

.footer__logo {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.footer__ver {
    font-family: var(--font-head);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.4);
}

.footer__links {
    display: flex;
    gap: 28px;
    align-items: center;
}

@media (max-width: 768px) {
    .agent-showcase {
        flex-direction: column;
        gap: 32px;
    }
    .agent-metrics {
        grid-template-columns: 1fr;
        width: 100%;
        padding: 16px;
    }
    .section__title--left, 
    .section__desc--left {
        text-align: center;
    }
}

.footer__link {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.4);
    transition: all 0.3s cubic-bezier(0.35, 0, 0.25, 1);
    text-transform: uppercase;
    position: relative;
}

.footer__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(0, 232, 122, 0.6);
    transition: width 0.3s ease;
}

.footer__link:hover {
    color: rgba(255,255,255,0.8);
}

.footer__link:hover::after {
    width: 100%;
}

.footer__status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__status-text {
    font-family: var(--font-head);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.2);
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
    .screen-eye__inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .screen-eye__text {
        align-items: center;
    }

    .symbiote-wrap {
        width: 300px;
        height: 300px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .plans-grid--four {
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .screen-eye__text {
        padding: 0 20px;
    }

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

    .plans-grid--four {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

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

    .footer__inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .lp-hero__cta-row {
        flex-direction: column;
        align-items: center;
    }

    .lp-hero__cta-row .lp-btn {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .feature-card { padding: 16px; }
    .feature-card__icon { font-size: 16px; margin-bottom: 8px; }
    .feature-card__name { font-size: 9px; }
    .feature-card__desc { font-size: 11px; }
}

/* ═══════════════════════════════════════════════════════════
   SCROLLBAR / SELECTION
   ═══════════════════════════════════════════════════════════ */
::selection {
    background: rgba(0,232,122,0.15);
    color: var(--text);
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 100px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ── Upsell do Essencial → Completo ──────────────────────────
   Fica DEPOIS do botão de propósito: quem já decidiu pelo
   Essencial vê a alternativa sem ser atrapalhado na decisão. */
.upsell{display:flex;align-items:center;gap:8px;margin-top:10px;padding:11px 13px;
  border:1px solid rgba(0,232,122,.28);background:rgba(0,232,122,.06);
  border-radius:12px;text-decoration:none;transition:background .2s,border-color .2s}
.upsell:hover{background:rgba(0,232,122,.11);border-color:rgba(0,232,122,.5)}
.upsell__hl{flex:none;font-size:12px;font-weight:800;color:#00e87a;letter-spacing:.02em}
.upsell__txt{flex:1;font-size:11px;line-height:1.45;color:rgba(255,255,255,.72)}
.upsell__txt b{color:#fff;font-weight:700}
.upsell__arrow{flex:none;font-size:18px;color:#00e87a;line-height:1}
