/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #1e3a5f;
    --navy-dark: #152a45;
    --red: #dc2626;
    --red-dark: #b91c1c;
    --gold: #f59e0b;
    --white: #ffffff;
    --gray-light: #f3f4f6;
    --gray: #6b7280;
    --gray-dark: #374151;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background: var(--white);
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 40px 0 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 700;
}

.logo img {
    /* Logo mostrado sin filtro para ver correctamente */
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.subheadline {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.benefit-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: var(--red);
    color: var(--white);
    padding: 20px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.cta-button:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button.large {
    font-size: 22px;
    padding: 24px 48px;
}

.cta-subtext {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 5px;
}

.trust-text {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.urgency-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 8px;
    border: 2px solid var(--gold);
    margin-top: 20px;
}

.urgency-banner svg {
    color: var(--gold);
    flex-shrink: 0;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: var(--gray-light);
}

.problem h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--navy);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.problem-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.problem-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--navy);
}

.problem-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.emoji {
    font-size: 24px;
    flex-shrink: 0;
}

.problem-statement {
    background: var(--navy);
    color: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.problem-statement h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.highlight {
    color: var(--gold);
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: var(--white);
}

.solution-intro {
    text-align: center;
    margin-bottom: 60px;
}

.solution-intro h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 15px;
}

.solution-subtitle {
    font-size: 20px;
    color: var(--gray);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.step-card {
    background: var(--gray-light);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--navy);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--navy);
}

.solution-promise {
    text-align: center;
    padding: 40px;
    background: var(--gray-light);
    border-radius: 12px;
}

.solution-promise h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--navy);
}

.solution-promise p {
    font-size: 20px;
    line-height: 1.8;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--gray-light);
}

.benefits h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--navy);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.benefit-card.main {
    border: 3px solid var(--navy);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--navy);
}

.benefit-subtitle {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
    font-style: italic;
}

.bonus-section {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
}

.bonus-section h3 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--navy);
}

.bonus-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--gray);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
}

.check {
    color: var(--navy);
    font-size: 20px;
    flex-shrink: 0;
}

.not-course {
    text-align: center;
    font-size: 18px;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 8px;
    margin-top: 30px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: var(--white);
}

.pricing h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--navy);
}

.pricing-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--gray-light);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-list {
    margin-bottom: 40px;
}

.pricing-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 15px;
    align-items: center;
    padding: 15px;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 10px;
}

.old-price {
    color: var(--gray);
    font-size: 14px;
}

.price-display {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 30px;
}

.value-text {
    font-size: 18px;
    margin-bottom: 10px;
}

.original-price {
    font-size: 24px;
    color: var(--gray);
    text-decoration: line-through;
    margin-bottom: 10px;
}

.original-price span {
    font-weight: 700;
}

.lifetime-access {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 20px;
}

.current-price {
    font-size: 18px;
    margin-bottom: 10px;
}

.current-price span {
    font-size: 64px;
    font-weight: 800;
    color: var(--navy);
}

.discount-badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 2px solid var(--navy);
    margin-top: 30px;
}

.guarantee-badge svg {
    color: var(--navy);
    flex-shrink: 0;
    width: 48px;
    height: 48px;
}

.guarantee-badge strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--navy);
}

.guarantee-badge p {
    font-size: 14px;
    color: var(--gray);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--gray-light);
}

.testimonials h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--navy);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stars {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--gold);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--navy);
    font-size: 16px;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 14px;
}

/* Author Section */
.author {
    padding: 80px 0;
    background: var(--white);
}

.author-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.author-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.author h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--navy);
}

.author-title {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

.author-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.author-stats {
    background: var(--gray-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--navy);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--gray-light);
}

.faq h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--navy);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--navy);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: var(--white);
}

.final-cta h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: var(--navy);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.option-card {
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.option-card.negative {
    background: var(--gray-light);
    border: 2px solid var(--gray);
}

.option-card.positive {
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--gold);
}

.option-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.option-card.positive h3 {
    color: var(--gold);
}

.option-card .cta-button {
    display: flex;
    justify-content: center;
    width: 100%;
}

.option-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.option-card ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.option-card.negative ul li::before {
    content: '❌';
    position: absolute;
    left: 0;
}

.option-card.positive ul li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

.final-message {
    text-align: center;
    font-size: 20px;
    color: var(--gray-dark);
}

/* Footer */
footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

footer .container {
    text-align: center;
}

footer p {
    margin-bottom: 15px;
    opacity: 0.8;
}

footer a {
    color: var(--gold);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.disclaimers {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimers p {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .problem-grid,
    .steps-grid,
    .benefits-grid,
    .bonus-grid,
    .testimonials-grid,
    .author-content,
    .faq-grid,
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .subheadline {
        font-size: 18px;
    }
    
    .cta-button {
        font-size: 18px;
        padding: 18px 32px;
    }
    
    .cta-button.large {
        font-size: 20px;
        padding: 20px 36px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .pricing-box {
        padding: 30px 20px;
    }
    
    .current-price span {
        font-size: 48px;
    }
}
