html {
    -webkit-tap-highlight-color: transparent;
    background-color: #080c14;
}

/* ─── FUNDO COM PROFUNDIDADE ─────────────────── */
body {
    background:
        radial-gradient(ellipse 120% 50% at 50% -10%, rgba(251,146,60,0.13) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(234,88,12,0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 60%, rgba(251,191,36,0.05) 0%, transparent 55%),
        #080c14;
    background-attachment: fixed;
}

/* grade de pontos sutis */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

* { position: relative; z-index: 1; }

/* ─── NAV ────────────────────────────────────── */
.nav-bar {
    background: rgba(8,12,20,0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(251,146,60,0.1);
}

.logo-badge {
    background: linear-gradient(135deg, #fb923c, #f97316);
    color: #080c14;
    font-weight: 900;
    font-size: 11px;
    letter-spacing: 0.05em;
    box-shadow: 0 0 20px rgba(251,146,60,0.4);
}

/* ─── HERO ───────────────────────────────────── */
.hero-section {
    background: transparent;
}

.badge-pill {
    color: #fb923c;
    border: 1px solid rgba(251,146,60,0.22);
    background: rgba(251,146,60,0.06);
    letter-spacing: 0.1em;
    font-size: 10px;
}

.heading-accent {
    background: linear-gradient(90deg, #fbbf24 0%, #f97316 55%, #ef4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── VIDEO ──────────────────────────────────── */
.video-shell {
    background: linear-gradient(135deg, rgba(251,146,60,0.25) 0%, rgba(239,68,68,0.15) 100%);
    padding: 1.5px;
    border-radius: 14px;
    box-shadow: 0 8px 48px rgba(251,146,60,0.15), 0 2px 8px rgba(0,0,0,0.5);
}

.video-inner {
    border-radius: 12px;
    background: #0d1220;
}

/* ─── CTA BUTTON ─────────────────────────────── */
.cta-btn {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 50%, #ea580c 100%);
    background-size: 200% 100%;
    background-position: left center;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 28px rgba(249,115,22,0.45), 0 1px 0 rgba(255,255,255,0.12) inset;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-position: right center;
    box-shadow: 0 8px 40px rgba(249,115,22,0.6), 0 1px 0 rgba(255,255,255,0.12) inset;
    transform: translateY(-2px);
}

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

.pulse-warm { animation: warmPulse 2.8s infinite; }

@keyframes warmPulse {
    0%,100% { box-shadow: 0 4px 28px rgba(249,115,22,0.4), 0 0 0 0 rgba(249,115,22,0.35); }
    55%      { box-shadow: 0 6px 36px rgba(249,115,22,0.55), 0 0 0 14px rgba(249,115,22,0); }
}

/* ─── SECTION ALT ────────────────────────────── */
.section-alt {
    background: rgba(255,255,255,0.015);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* ─── ENV CARDS ──────────────────────────────── */
.env-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    transition: all 0.2s;
}

.env-card:hover {
    background: rgba(251,146,60,0.05);
    border-color: rgba(251,146,60,0.22);
    transform: translateY(-2px);
}

.env-icon {
    background: rgba(251,146,60,0.08);
    border: 1px solid rgba(251,146,60,0.12);
}

/* ─── BONUS CARDS ────────────────────────────── */
.bonus-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    transition: border-color 0.2s;
}

.bonus-card:hover { border-color: rgba(34,211,238,0.2); }

/* ─── PRICE CARD ─────────────────────────────── */
.price-card {
    background: linear-gradient(135deg, rgba(251,146,60,0.35) 0%, rgba(239,68,68,0.25) 100%);
    padding: 2px;
    border-radius: 20px;
}

.price-card-inner {
    background: #0d1220;
    border-radius: 18px;
    border: 1px solid rgba(251,146,60,0.1);
}

.offer-tag {
    color: #fb923c;
    background: rgba(251,146,60,0.08);
    border: 1px solid rgba(251,146,60,0.18);
}

/* ─── FAQ ────────────────────────────────────── */
.faq-item {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    transition: all 0.2s;
}

.faq-content {
    transition: max-height 0.3s ease-in-out, opacity 0.25s ease-in-out;
}

.faq-item.active {
    border-color: rgba(251,146,60,0.28);
    background: rgba(251,146,60,0.04);
    box-shadow: 0 4px 20px rgba(251,146,60,0.06);
}
