:root {
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --bg-overlay: rgba(0, 0, 0, 0.8);

    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #a0a0a0;

    --color-gold: #D4AF37;
    --color-gold-light: #F4D03F;
    --color-green: #1FDF64;
    --color-green-hover: #18B350;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s ease;
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.text-gold {
    color: var(--color-gold);
    background: linear-gradient(to right, var(--color-gold), var(--color-gold-light));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--color-green);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 208, 132, 0.4);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 2;
    flex-wrap: wrap;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.navbar .container {
    flex-direction: row;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 2px;
}

.btn-nav {
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid var(--color-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-nav:hover {
    background-color: var(--color-gold);
    color: var(--bg-dark);
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero .subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 3D Box Mockup CSS Only */
.box-mockup {
    width: 300px;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-25deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.box-mockup:hover {
    transform: rotateY(-15deg) rotateX(0deg) scale(1.05);
}

.box-face {
    position: absolute;
    border: 2px solid var(--color-gold);
    background: linear-gradient(135deg, #111, #222);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.box-front {
    width: 300px;
    height: 400px;
    transform: translateZ(50px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
    background-image: url('images/BOX MILIONÁRIO.png');
    background-size: cover;
    background-position: center;
    border: none;
}

.box-side {
    width: 100px;
    height: 400px;
    transform: rotateY(90deg) translateZ(150px);
    /* 300/2 */
    background: #111;
    border-left: none;
}

/* Problem Section */
.problem {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.problem-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.problem-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.problem-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.problem-card p {
    color: var(--text-muted);
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background-color: #0f0f0f;
}

.ebooks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.ebook-card {
    display: flex;
    align-items: center;
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: 10px;
    gap: 20px;
}

.ebook-cover {
    width: 120px;
    height: 160px;
    background: #222;
    border: 1px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    border: none;
}

.cover-habitos {
    background-image: url('images/Hábitos Milionários 100% PRONTO.png');
}

.cover-mindset {
    background-image: url('images/Mindset Milionário 100% PRONTO.png');
}

.cover-produtividade {
    background-image: url('images/Produtividade Milionária 100% PRONTO.png');
}

.cover-rotina {
    background-image: url('images/Cópia de Rotina Milionária.png');
}

.ebook-info h3 {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.ebook-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
}

.testimonial-card .quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 40px;
    height: 40px;
    background-color: var(--color-gold);
    color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Offer Section */
.offer {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1553729459-efe14ef6055d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
}

.offer-box {
    background-color: var(--bg-card);
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--color-gold);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.offer-header h2 {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.offer-stack {
    margin: 2rem 0;
    text-align: left;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
}

.stack-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-strike {
    text-decoration: line-through;
    color: var(--text-muted);
}

.stack-total {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}

.offer-price {
    margin: 2rem 0;
}

.today-only {
    color: var(--color-green);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    color: var(--text-primary);
}

.currency {
    font-size: 2rem;
    margin-top: 10px;
}

.value {
    font-size: 5rem;
    font-weight: 700;
}

.cents {
    font-size: 2rem;
    margin-top: 10px;
}

.payment-info {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* FAQ */
.faq {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .toggle {
    transform: rotate(45deg);
}

.toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

/* Footer */
footer {
    padding: 3rem 0;
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-gold);
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(31, 223, 100, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(31, 223, 100, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(31, 223, 100, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .ebooks-grid {
        grid-template-columns: 1fr;
    }

    .ebook-card {
        flex-direction: column;
        text-align: center;
    }
}
/* VSL Section */
.vsl-section {
    background-color: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1000;
}

.vsl-container {
    width: 100%;
    max-width: 800px;
    position: relative;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}

.vsl-headline {
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vsl-video {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.vsl-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    z-index: 10;
}

.btn-play-custom {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.play-icon {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #000;
    margin-left: 5px;
}

.vsl-overlay:hover .btn-play-custom {
    transform: scale(1.1);
}

.vsl-notice {
    color: var(--text-muted);
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

/* Custom Progress Bar */
.custom-progress-container {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 5;
}

.custom-progress-bar {
    height: 100%;
    background: #FF0000; /* YouTube Red */
    width: 0%;
    transition: width 0.1s linear;
}

/* Content Locking */
.content-locked {
    display: none;
}

.content-unlocked {
    display: block;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

