/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #121212;
    color: #E5E4E2;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 100%);
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #E5E4E2;
    text-align: center;
    letter-spacing: 2px;
}

.logo .premium {
    color: #D4AF37;
}

.logo .vip {
    color: #D4AF37;
    font-size: 0.8em;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 50%, #121212 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #E5E4E2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #D4AF37;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.cta-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #121212;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #E5C547 0%, #D4AF37 100%);
}

/* Sections generales */
.confusion-section,
.playbook-content,
.target-audience,
.final-cta {
    padding: 80px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #D4AF37;
    text-align: center;
    margin-bottom: 40px;
}

.section-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #E5E4E2;
    line-height: 1.8;
}

/* Confusion Section */
.confusion-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

/* Playbook Content */
.playbook-content {
    background: #121212;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.module {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #E5C547);
}

.module:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: #D4AF37;
}

.module-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 15px;
}

.module h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #E5E4E2;
    margin-bottom: 15px;
    font-weight: 600;
}

.module p {
    color: #B8B8B8;
    line-height: 1.6;
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #D4AF37;
    text-align: center;
}

.bonus-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #D4AF37;
    margin-bottom: 25px;
    font-weight: 700;
}

.bonus-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.bonus-list li {
    padding: 8px 0;
    color: #E5E4E2;
    position: relative;
    padding-left: 25px;
}

.bonus-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #D4AF37;
    font-weight: bold;
}

/* Target Audience */
.target-audience {
    background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.audience-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
}

.check-icon {
    font-size: 1.5rem;
    color: #D4AF37;
    margin-right: 15px;
    font-weight: bold;
}

.audience-item p {
    color: #E5E4E2;
    font-size: 1rem;
}

.audience-item strong {
    color: #D4AF37;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #121212 0%, #1a1a1a 50%, #121212 100%);
    text-align: center;
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: #E5E4E2;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #B8B8B8;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.cta-final {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: #121212;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 20px 50px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #E5C547 0%, #D4AF37 100%);
}

.guarantee {
    color: #B8B8B8;
    font-size: 0.9rem;
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-primary,
    .cta-final {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .confusion-section,
    .playbook-content,
    .target-audience,
    .final-cta {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .module {
        padding: 20px;
    }
    
    .bonus-section {
        padding: 25px;
    }
}