:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --primary-color: #ff0033;
    /* Electric Cherry Red */
    --secondary-color: #ffd700;
    /* Strong Gold */
    --dark-gray: #1a1a1a;
    --light-gray: #f0f0f0;
    --success-green: #25d366;
    --whatsapp-bg: #1f2c34;
}

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

body {
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('./images/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ... existing styles ... */

/* Visibility & Animations */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
    animation: slideIn 1s ease-out;
}

/* VSL Centering & Transition */
.vsl-centered {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#vsl-wrapper {
    width: 100%;
    transition: all 1s ease-in-out;
}

.vsl-headline {
    color: var(--primary-color);
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(255, 0, 51, 0.5);
    animation: pulse 2s infinite;
}

@media (min-width: 768px) {
    .vsl-headline {
        font-size: 2rem;
    }
}

.container {
    max-width: 600px;
    /* Mobile-first focus */
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Typography */
h1,
h2,
h3 {
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

h1 {
    font-size: 2rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 0, 51, 0.5);
}

h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.highlight {
    color: var(--secondary-color);
    font-weight: bold;
}

.urgent {
    color: var(--primary-color);
    font-weight: bold;
}

/* Buttons */
.btn {
    display: block;
    width: 100%;
    padding: 20px;
    margin: 15px 0;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #cc0000, #ff0033);
    color: white;
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.6);
    animation: pulse 1.5s infinite;
}

.btn-secondary {
    background: transparent;
    border: 2px solid #555;
    color: #aaa;
    font-size: 0.9rem;
    padding: 10px;
}

.btn-gold {
    background: linear-gradient(45deg, #ffd700, #ffa500);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    animation: pulse 1.5s infinite;
    border-bottom: 4px solid #b8860b;
    margin-top: 20px;
}

.btn:active {
    transform: scale(0.98);
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 51, 0.7);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(255, 0, 51, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 0, 51, 0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Sections */
.section {
    display: none;
    /* Hidden by default */
    animation: slideIn 0.5s ease-out;
}

.section.active {
    display: block;
}

#sales-section {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

/* Quiz Specifics */
#quiz-container {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
}

.quiz-step h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.quiz-step p {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.quiz-option {
    background: linear-gradient(145deg, #1a1a1a, #222);
    border: 1px solid #333;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    display: block;
    width: 100%;
    color: #e0e0e0;
    text-align: left;
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.quiz-option:hover {
    background: #2a2a2a;
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.15);
    color: #fff;
}

.quiz-option:active {
    transform: scale(0.98);
}

/* Urgency Banner in Quiz */
.urgency-banner {
    background: linear-gradient(45deg, rgba(255, 0, 51, 0.1), rgba(0, 0, 0, 0.4));
    border: 1px solid var(--primary-color);
    color: #ffcccc;
    padding: 20px;
    margin-top: 40px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.1);
}

/* Sales Page Specifics */
.benefits-list {
    text-align: left;
    list-style: none;
    margin: 20px 0;
}

.benefits-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    color: var(--success-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.testimonial {
    background-color: var(--whatsapp-bg);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: left;
    position: relative;
    border-left: 4px solid var(--success-green);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background-color: #ccc;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.testimonial-name {
    color: #e5e5e5;
    font-weight: bold;
    font-size: 0.9rem;
}

.testimonial-time {
    margin-left: auto;
    color: #8696a0;
    font-size: 0.75rem;
}

.testimonial-text {
    color: #e9edef;
    font-size: 0.95rem;
}

.timer-box {
    background-color: #330000;
    border: 2px solid var(--primary-color);
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
}

.vsl-container {
    margin: 20px 0;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.vsl-warning-icon {
    position: absolute;
    top: -25px;
    left: -15px;
    font-size: 3.5rem;
    z-index: 10;
    filter: drop-shadow(0 0 5px red);
    animation: pulse 1s infinite;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border: 2px solid var(--primary-color);
    border-radius: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.3);
    overflow: hidden;
}

.video-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Aumenta a largura do vídeo em telas maiores */
@media (min-width: 768px) {
    .container {
        max-width: 900px;
    }
}

.timer-text {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: monospace;
}

.price-box {
    margin: 20px 0;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    font-size: 1.2rem;
}

.new-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
    display: block;
}

/* Utility */


.spacer {
    height: 80px;
    /* Space for fixed button */
}