:root {
    --bg-dark: #16161D; /* Frontier (Dark theme) */
    --card-bg: rgba(22, 22, 29, 0.7);
    --card-border: rgba(255, 255, 255, 0.08);
    --primary: #E60036; /* Crimson */
    --primary-hover: #C5002D;
    --accent-orange: #FF6B00; /* Sunset */
    --accent-cyan: #00D2FF; /* Pearl */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --success: #10b981;
    --glass-blur: blur(20px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

/* Efeitos de Fundo (Glows modernos) */
.background-elements {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
}
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 10s infinite ease-in-out alternate;
}
.glow-1 {
    width: 400px; height: 400px;
    background: var(--primary);
    top: -100px; left: -100px;
}
.glow-2 {
    width: 500px; height: 500px;
    background: var(--accent-orange);
    bottom: -200px; right: -100px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 30px) scale(1.1); }
}

/* Container Principal */
.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    z-index: 10;
}

/* Componente Glassmorphism */
.glass {
    background: var(--card-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.card {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.card.active {
    display: block;
    animation: fadeInUp 0.5s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden {
    display: none !important;
}

/* Tipografia */
h1, h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}
h1 { font-size: 2.2rem; }
h2 { font-size: 1.6rem; }
p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Botões e Badges */
.stats {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}
.badge {
    background: rgba(255,255,255,0.05);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-muted);
    border: 1px solid rgba(255,255,255,0.1);
}

button {
    cursor: pointer;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 24px;
    border-radius: 12px;
    transition: all 0.2s ease;
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent-orange));
    color: #fff;
    width: 100%;
    box-shadow: 0 4px 20px 0 rgba(230, 0, 54, 0.3);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-hover), var(--primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 25px 0 rgba(230, 0, 54, 0.4);
}
.btn-primary:disabled, .btn-primary.disabled {
    background: #2D2D3B;
    color: #64748b;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}
.btn-secondary {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--card-border);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}
.w-100 { width: 100%; }

/* Formulário de Perguntas */
.progress-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 100px;
    margin-bottom: 16px;
    overflow: hidden;
}
.progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.4s ease;
}
.step-indicator {
    display: block;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.question-title {
    font-size: 1.4rem;
    margin-bottom: 24px;
}
.options-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}
.option-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    color: var(--text-main);
    padding: 16px;
    border-radius: 12px;
    text-align: left;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}
.option-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
}
.option-btn.selected {
    background: rgba(99, 102, 241, 0.15);
    border-color: var(--primary);
}
.actions {
    display: flex;
    gap: 12px;
}
.actions .btn-secondary { flex: 1; }
.actions .btn-primary { flex: 2; }

/* Formulário Lead */
.input-group {
    margin-bottom: 20px;
    text-align: left;
}
.input-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.input-group input {
    width: 100%;
    padding: 14px;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s ease;
}
.input-group input:focus {
    border-color: var(--primary);
}

/* Relatório VIP VIP VIP */
.result-card { text-align: left; }
.report-title {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 4px;
    text-align: center;
}
.report-subtitle {
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 32px;
}
.alert-box {
    background: rgba(230, 0, 54, 0.1);
    border: 1px solid rgba(230, 0, 54, 0.3);
    border-left: 4px solid var(--primary);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}
.alert-box h4 {
    color: #ff4d4d;
    margin-bottom: 8px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.alert-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #e2e8f0;
}
.cta-box {
    margin-top: 32px;
    padding: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    text-align: center;
}
.cta-box h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}
.cta-box p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ==================================
   VSL OCULTA (Result Screen 3.0)
   ================================== */
.inaction-box {
    margin-bottom: 32px;
    padding: 16px;
    border-left: 3px solid #ff4d4d;
    background: rgba(255, 255, 255, 0.02);
}
.inaction-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
    font-style: italic;
    color: #cbd5e1;
}

.method-section {
    margin-bottom: 40px;
}
.method-section h3 {
    text-align: center;
    color: var(--text-light);
    font-size: 1.4rem;
    margin-bottom: 8px;
}
.method-desc {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.method-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--card-border);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 56px;
}
.step-number {
    position: absolute;
    left: 16px;
    top: 16px;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}
.step-card h4 {
    color: var(--accent-orange);
    margin-bottom: 4px;
    font-size: 1rem;
}
.step-card p {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.premium-offer {
    background: linear-gradient(180deg, rgba(230, 0, 54, 0.05) 0%, rgba(22, 22, 29, 0) 100%);
    border-color: rgba(230, 0, 54, 0.2);
}
.highlight-orange {
    color: var(--accent-orange);
    font-weight: 700;
}
.bonus-box {
    background: rgba(16, 185, 129, 0.1);
    border: 1px dashed rgba(16, 185, 129, 0.4);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    text-align: left;
    color: #e2e8f0;
}
.bonus-box strong {
    color: #10b981;
}

.btn-pulse {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(230, 0, 54, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(230, 0, 54, 0); }
    100% { box-shadow: 0 0 0 0 rgba(230, 0, 54, 0); }
}

.scarcity-text {
    margin-top: 16px;
    margin-bottom: 0 !important;
    font-size: 0.8rem !important;
    color: #94a3b8 !important;
}
