:root {
    --primary: #00E676; /* Green Hi-Fi */
    --primary-glow: rgba(0, 230, 118, 0.2);
    --dark-900: #020617; /* Fundo Ultra Dark */
    --dark-800: #0F172A; /* Seções Alternadas */
    --dark-700: #1E293B; /* Cards */
    --text-main: #F8FAFC; /* Branco Puro para Leitura */
    --text-slate: #94A3B8; /* Muted para descrições */
    --bg-light: var(--dark-900);
    --bg-subtle: var(--dark-800);
    --danger: #FF4B4B;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-900);
    color: var(--text-slate);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

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

.text-center { text-align: center; }
.highlight { color: var(--primary); }

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--text-main);
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.headline {
    font-size: clamp(2.0rem, 5vw, 3.0rem);
    font-weight: 900;
    margin-bottom: 24px;
    color: #FFD700; /* Destaque dourado/amarelo pra Upsell */
}

.subheadline {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-slate);
    max-width: 800px;
    margin: 0 auto 32px;
    font-weight: 500;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--dark-900);
    padding: 24px 40px;
    font-size: 1.1rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 12px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px var(--primary-glow);
    border: none;
    width: 100%;
    max-width: 800px;
    cursor: pointer;
    text-align: center;
    line-height: 1.4;
    animation: pulseBtn 2.5s infinite;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--primary-glow);
    animation: none;
}

@keyframes pulseBtn {
    0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 230, 118, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

.rejection-link {
    display: inline-block;
    margin-top: 24px;
    color: var(--text-slate);
    font-size: 0.95rem;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.rejection-link:hover {
    color: var(--danger);
}

/* --- HERO & VSL --- */
.hero {
    padding: 60px 0 80px;
    background: radial-gradient(circle at top, rgba(0,230,118,0.05) 0%, var(--dark-900) 60%);
}

.vsl-wrapper {
    position: relative;
    max-width: 400px; /* Video Vertical */
    margin: 40px auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
    background: var(--dark-800);
    aspect-ratio: 9/16;
}

.vsl-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    color: var(--text-slate);
}

.vsl-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* --- SECTIONS --- */
.section {
    padding: 80px 0;
}

.section-subtle {
    background-color: var(--bg-subtle);
}

.text-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
}

.text-content p {
    margin-bottom: 24px;
}

.text-content ul {
    list-style: none;
    margin: 32px 0;
}

.text-content ul li {
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    background: rgba(255,255,255,0.02);
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.text-content ul li::before {
    content: '✅';
}

/* --- OFFER CARD --- */
.offer-card {
    background: var(--dark-800);
    border: 3px solid var(--primary);
    border-radius: 40px;
    padding: 60px 40px;
    box-shadow: 0 50px 100px rgba(0, 230, 118, 0.1);
    position: relative;
    max-width: 800px;
    margin: 48px auto;
    text-align: center;
}

.price-main {
    font-size: clamp(4rem, 8vw, 6.5rem);
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -4px;
    margin: 20px 0;
}

.price-old {
    font-size: 1.5rem;
    color: var(--text-slate);
    text-decoration: line-through;
    font-weight: 600;
}

.urgency-badge {
    background: rgba(255, 75, 75, 0.1);
    color: var(--danger);
    padding: 12px 24px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 75, 75, 0.2);
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .offer-card { padding: 40px 24px; }
    .vsl-wrapper { margin: 24px auto; }
}
