/* Reset y fuentes */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.urgency-bar {
    padding: 10px 0;
    text-align: center;
}

.urgency-text {
    color: white;
    font-weight: 600;
    font-size: 14px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.highlight {
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-image {
    margin: 40px 0;
}

.book-mockup {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.book-mockup:hover {
    transform: translateY(-10px) scale(1.05);
}

/* Botones CTA */
.cta-button {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border: none;
    color: white;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

.guarantee-text {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

/* Sección de Identificación */
.identification {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.identification h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

.pain-points {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

.pain-point {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.pain-point:hover {
    transform: translateY(-5px);
}

.pain-point .emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

.pain-point p {
    font-size: 1.1rem;
    color: #555;
}

.reassurance {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.reassurance h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.reassurance p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Historia */
.story {
    padding: 80px 0;
    background: white;
}

.story h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

.story-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.story-text p {
    margin-bottom: 25px;
}

.story-highlight {
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(253, 203, 110, 0.3);
}

.story-highlight strong {
    font-size: 1.3rem;
    color: #2c3e50;
}

/* Beneficios */
.benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

/* Testimonios */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
}

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

.testimonial-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

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

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-info span {
    color: #666;
    font-size: 0.9rem;
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #555;
    line-height: 1.6;
    font-style: italic;
}

/* Educación */
.education {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.education h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.education-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.education-text p {
    margin-bottom: 25px;
    opacity: 0.95;
}

.education-highlight {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    backdrop-filter: blur(10px);
}

.education-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.education-highlight ul {
    list-style: none;
}

.education-highlight li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Bonos */
.bonuses {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bonuses h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.bonuses-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.bonus-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.bonus-card::before {
    content: 'GRATIS';
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.bonus-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.bonus-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.bonus-value {
    font-weight: 700;
    color: #667eea;
    font-size: 1.1rem;
}

.total-value {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.total-value p:first-child {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.free-text {
    font-size: 1.5rem;
    color: #ff6b6b;
    font-weight: 700;
}

/* Garantía */
.guarantee {
    padding: 80px 0;
    background: white;
}

.guarantee-badge {
    text-align: center;
    margin-bottom: 40px;
}

.guarantee-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.guarantee h2 {
    font-size: 2.5rem;
    color: #2c3e50;
}

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

.guarantee-promise {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 15px 40px rgba(0, 184, 148, 0.3);
}

.guarantee-promise h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.guarantee-promise p {
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Oferta Especial */
.offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.offer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.offer-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.offer-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 30px;
    display: inline-block;
    animation: pulse 2s infinite;
}

.offer h2 {
    font-size: 2.8rem;
    margin-bottom: 40px;
    line-height: 1.2;
}

.price-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.original-price {
    text-align: center;
}

.price-label {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

.old-price {
    font-size: 2rem;
    text-decoration: line-through;
    color: #ff6b6b;
    opacity: 0.7;
}

.current-price {
    text-align: center;
}

.new-price {
    font-size: 4rem;
    font-weight: 800;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.discount {
    display: block;
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 10px;
}

.offer-details {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.offer-details h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.offer-list {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.offer-list li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    padding-left: 10px;
}

.urgency-counter {
    margin-bottom: 40px;
}

.counter-text {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ff6b6b;
    font-weight: 600;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.time-unit {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    min-width: 80px;
}

.time-unit span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
}

.time-unit label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.mega-cta {
    font-size: 1.4rem;
    padding: 25px 50px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cta-subtext {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

.payment-security {
    margin-bottom: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.scarcity {
    background: rgba(255, 107, 107, 0.2);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.scarcity-text {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #ff6b6b;
    font-weight: 600;
}

.progress-bar {
    background: rgba(255,255,255,0.2);
    height: 20px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress {
    height: 100%;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border-radius: 10px;
    animation: progress 3s ease-in-out;
}

@keyframes progress {
    from { width: 0; }
}

.spots-left {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.final-cta > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.final-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.final-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.final-benefit span {
    font-size: 2.5rem;
}

.final-benefit p {
    font-size: 1.1rem;
    font-weight: 600;
}

.final-button {
    font-size: 1.5rem;
    padding: 25px 50px;
    margin-bottom: 30px;
}

.final-guarantee {
    font-size: 1rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0;
    text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid,
    .testimonials-grid,
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 15px;
    }
    
    .final-benefits {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-button {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .offer h2,
    .final-cta h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    section {
        padding: 60px 0;
    }
    
    .benefit-card,
    .bonus-card,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .new-price {
        font-size: 3rem;
    }
    
    .mega-cta,
    .final-button {
        padding: 20px 30px;
        font-size: 1.2rem;
    }
}

/* Animaciones adicionales */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card,
.testimonial-card,
.bonus-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Efectos hover mejorados */
.testimonial-card:hover,
.bonus-card:hover {
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}