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

:root {
    /* Colores principales verde orgánico */
    --primary-green: #2d5a3d;
    --secondary-green: #4a7c59;
    --accent-green: #6db33f;
    --light-green: #88c999;
    --very-light-green: #f0f8f3;
    
    /* Colores de acento */
    --gold: #ffc107;
    --orange: #ff8c00;
    --white: #ffffff;
    --dark: #1a1a1a;
    --gray: #666666;
    --light-gray: #f5f5f5;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-green) 0%, var(--light-green) 100%);
    --gradient-gold: linear-gradient(135deg, #ffc107 0%, #ff8c00 100%);
    
    /* Sombras */
    --shadow-light: 0 2px 10px rgba(45, 90, 61, 0.1);
    --shadow-medium: 0 4px 20px rgba(45, 90, 61, 0.15);
    --shadow-heavy: 0 8px 30px rgba(45, 90, 61, 0.2);
    
    /* Tipografía */
    --font-primary: 'Poppins', sans-serif;
    --font-size-xl: clamp(2rem, 5vw, 3.5rem);
    --font-size-lg: clamp(1.5rem, 4vw, 2.5rem);
    --font-size-md: clamp(1.1rem, 2.5vw, 1.3rem);
    --font-size-base: 1rem;
    --font-size-sm: 0.875rem;
}

/* Base Styles */
body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

/* Timer Bar Styles */
.timer-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 50%, var(--accent-green) 100%);
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(45, 90, 61, 0.3);
    transition: transform 0.3s ease;
}

.timer-bar.hidden {
    transform: translateY(-100%);
}

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

.timer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: 15px;
}

.timer-icon {
    color: var(--gold);
    font-size: 1.2em;
    animation: pulse 2s infinite;
}

.timer-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.timer-label {
    color: #fff;
    font-weight: 700;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timer-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.75em;
    font-weight: 400;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 32px;
}

.time-number {
    color: #fff;
    font-weight: 800;
    font-size: 1.4em;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.time-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.6em;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.time-separator {
    color: #fff;
    font-weight: 800;
    font-size: 1.2em;
    animation: blink 1s infinite;
}

.timer-close {
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2em;
}

.timer-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Adjust body padding when timer is visible */
body {
    padding-top: 50px;
}

body.timer-hidden {
    padding-top: 0;
}

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

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

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.9) 0%, rgba(74, 124, 89, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.hero-title {
    font-size: var(--font-size-xl);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--gold);
    display: block;
    font-size: 0.7em;
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-title .main-title {
    display: block;
    font-size: 1em;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .subtitle {
    display: block;
    font-size: 0.6em;
    color: var(--light-green);
    font-weight: 400;
    margin-top: 10px;
}

.hero-description {
    font-size: var(--font-size-md);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-benefits {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-weight: 500;
}

.benefit-item i {
    color: var(--gold);
    font-size: 1.2em;
}

.hero-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--gradient-gold);
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    border-radius: 50px;
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 193, 7, 0.4);
}

.hero-cta .cta-button .price,
.hero-cta .cta-button .cta-price {
    display: block;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Badge de descuento reutilizable */
.discount-badge {
    display: block;
    background: #fff;
    color: var(--dark);
    font-weight: 800;
    font-size: 0.8em;
    padding: 6px 12px;
    border-radius: 999px;
    margin-top: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    text-align: center;
}

.guarantee {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9em;
}

/* Book Mockup */
.book-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.book-mockup {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
    filter: drop-shadow(20px 20px 40px rgba(0, 0, 0, 0.3));
}

.book-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) scale(1.05);
    filter: drop-shadow(25px 25px 50px rgba(0, 0, 0, 0.4));
}

.book-cover-image {
    width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 
        0 0 0 3px rgba(255, 255, 255, 0.1),
        0 0 30px rgba(45, 90, 61, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.book-cover-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    pointer-events: none;
    border-radius: 15px;
}

/* Estilos para backward compatibility */
.book-cover {
    width: 300px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 0.1),
        20px 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.book-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

.book-title {
    color: var(--white);
    font-weight: 800;
    font-size: 1.5em;
    line-height: 1.1;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.book-title .organic {
    color: var(--gold);
    font-size: 1.2em;
}

.book-image {
    text-align: center;
    color: var(--gold);
    font-size: 4em;
    margin: 20px 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.book-subtitle {
    color: var(--light-green);
    font-size: 0.9em;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    color: var(--gold);
    font-size: 2em;
    animation: float 3s ease-in-out infinite;
    opacity: 0.7;
}

.floating-icon.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon.icon-2 {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.floating-icon.icon-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.floating-icon.icon-4 {
    top: 10%;
    right: 30%;
    animation-delay: 0.5s;
}

.floating-icon.icon-5 {
    bottom: 10%;
    right: 20%;
    animation-delay: 1.5s;
}

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

.section-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
}

.section-title .highlight {
    color: var(--primary-green);
    display: block;
    margin-top: 10px;
}

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

.problem-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.problem-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.problem-item h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.problem-item p {
    color: var(--gray);
    line-height: 1.6;
}

.problem-solution {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    border-left: 5px solid var(--primary-green);
}

.problem-text {
    font-size: var(--font-size-md);
    line-height: 1.7;
    color: var(--dark);
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background: var(--very-light-green);
}

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

.solution-description {
    font-size: var(--font-size-md);
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.solution-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1em;
    color: var(--dark);
}

.benefit i {
    color: var(--accent-green);
    font-size: 1.2em;
    min-width: 20px;
}

.vegetables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
}

.vegetable-item {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
    animation: bounce 2s infinite;
}

.vegetable-item:nth-child(even) {
    animation-delay: 0.5s;
}

.vegetable-item:hover {
    transform: scale(1.1);
}

/* Content Section */
.content {
    padding: 100px 0;
    background: var(--white);
}

.content-grid {
    margin-bottom: 80px;
}

.content-item {
    background: var(--very-light-green);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--light-green);
}

.content-book-showcase {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

.content-book-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.content-book-image:hover {
    transform: scale(1.05);
}

.content-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-icon {
    margin-bottom: 30px;
}

.content-icon i {
    font-size: 4em;
    color: var(--primary-green);
}

.content-item h3 {
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.content-item p {
    font-size: var(--font-size-md);
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.content-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature {
    background: var(--white);
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 500;
    color: var(--primary-green);
    box-shadow: var(--shadow-light);
}

.bonus-title {
    text-align: center;
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.bonus-subtitle {
    text-align: center;
    font-size: var(--font-size-md);
    color: var(--gray);
    margin-bottom: 60px;
}

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

.bonus-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 2px solid var(--light-green);
    position: relative;
    transition: transform 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.bonus-item.special {
    border-color: var(--gold);
    background: linear-gradient(135deg, #fff9e6 0%, var(--white) 100%);
}

.bonus-badge {
    background: var(--gradient-accent);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
    display: inline-block;
    margin-bottom: 20px;
}

.bonus-item.special .bonus-badge {
    background: var(--gradient-gold);
    color: var(--dark);
}

.bonus-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.bonus-item h4 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.bonus-item p {
    color: var(--gray);
    line-height: 1.6;
}

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

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

.testimonial-item {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonial-content {
    padding: 40px 30px;
}

.stars {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1em;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    color: var(--primary-green);
    font-weight: 600;
    display: block;
}

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

/* Urgency Section */
.urgency {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.urgency-title {
    font-size: var(--font-size-lg);
    font-weight: 800;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.price-comparison {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.price-label {
    display: block;
    font-size: 1.1em;
    margin-bottom: 10px;
    opacity: 0.9;
}

.price {
    font-size: 3em;
    font-weight: 800;
    display: block;
}

.old-price .price {
    text-decoration: line-through;
    opacity: 0.6;
}

.current-price .price {
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.discount {
    background: var(--gold);
    color: var(--dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9em;
    margin-top: 10px;
    display: inline-block;
}

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

.urgency-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1em;
    font-weight: 500;
}

.urgency-item i {
    color: var(--gold);
    font-size: 1.3em;
}

.final-cta .cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 25px 50px;
    background: var(--gradient-gold);
    color: var(--dark);
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3em;
    border-radius: 50px;
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.final-cta .cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(255, 193, 7, 0.4);
}

.cta-price {
    display: block;
    font-size: 0.8em;
    opacity: 0.9;
}

.security-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9em;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--very-light-green);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--very-light-green);
}

.faq-question h3 {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--dark);
}

.faq-question i {
    color: var(--primary-green);
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 30px 25px;
    display: none;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.7;
    font-size: 1.1em;
}

/* Footer CTA */
.footer-cta {
    padding: 80px 0;
    background: var(--primary-green);
    color: var(--white);
    text-align: center;
}

.footer-cta-content h2 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-cta-content p {
    font-size: var(--font-size-md);
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
    font-size: 0.9em;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .price-comparison {
        gap: 30px;
    }
    
    .urgency-benefits {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* Timer responsive styles */
    .timer-content {
        flex-wrap: wrap;
        gap: 10px;
        padding: 6px 0;
    }
    
    .timer-text {
        text-align: center;
        order: 1;
        width: 100%;
    }
    
    .timer-icon {
        order: 2;
        font-size: 1em;
    }
    
    .countdown-timer {
        order: 3;
        gap: 4px;
        padding: 4px 8px;
    }
    
    .timer-close {
        order: 4;
        position: absolute;
        top: 3px;
        right: 10px;
        padding: 4px;
        font-size: 1em;
    }
    
    .timer-label {
        font-size: 0.8em;
    }
    
    .timer-subtitle {
        font-size: 0.65em;
    }
    
    .time-number {
        font-size: 1.2em;
    }
    
    .time-unit {
        min-width: 28px;
    }
    
    body {
        padding-top: 65px;
    }
    
    .hero {
        min-height: auto;
        padding: 60px 0;
        background-attachment: scroll; /* Evita problemas en móviles */
    }
    
    .hero-background {
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .book-mockup {
        transform: none;
        filter: drop-shadow(15px 15px 30px rgba(0, 0, 0, 0.2));
    }
    
    .book-mockup:hover {
        transform: scale(1.02);
        filter: drop-shadow(20px 20px 40px rgba(0, 0, 0, 0.3));
    }
    
    .book-cover {
        width: 250px;
        height: 320px;
        padding: 25px;
    }
    
    .book-cover-image {
        width: 250px;
    }
    
    .floating-elements {
        display: none; /* Ocultar elementos flotantes en móviles para mejor rendimiento */
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .urgency-benefits {
        flex-direction: column;
        gap: 20px;
    }
    
    .vegetables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .content-book-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .final-cta .cta-button-large {
        padding: 20px 40px;
        font-size: 1.1em;
        flex-direction: column;
        gap: 8px;
    }
    
    .hero-cta .cta-button {
        padding: 15px 30px;
        font-size: 1em;
        flex-direction: column;
        gap: 6px;
    }
    
    /* Mejorar botones CTA en móviles */
    .cta-button, 
    .cta-button-large {
        text-align: center;
        align-items: center;
    }
    
    .discount-badge {
        margin-top: 5px;
        margin-left: 0;
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .book-cover {
        width: 200px;
        height: 260px;
        padding: 20px;
    }
    
    .book-cover-image {
        width: 200px;
    }
    
    .book-title {
        font-size: 1.2em;
    }
    
    .book-image {
        font-size: 3em;
    }
    
    .floating-icon {
        font-size: 1.5em;
    }
    
    .vegetable-item {
        width: 60px;
        height: 60px;
        font-size: 2em;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.animate-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states para accesibilidad */
.cta-button:focus,
.cta-button-large:focus,
.faq-question:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

/* Estados hover mejorados */
.cta-button,
.cta-button-large {
    position: relative;
    overflow: hidden;
}

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

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