* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fdf8;
}

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

/* Banner móvil de envío */
.shipping-banner {
    background: linear-gradient(90deg, #2d5016, #4a7c59, #2d5016);
    color: white;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 100;
}

.banner-content {
    display: inline-block;
    animation: scroll-left 20s linear infinite;
    font-weight: bold;
    font-size: 14px;
}

@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Popup de datos de envío */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-overlay.show {
    display: flex;
}

.popup-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 15px;
}

.popup-header h3 {
    color: #2d5016;
    font-size: 1.5rem;
    margin: 0;
}

.close-popup {
    background: none;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-popup:hover {
    color: #2d5016;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2d5016;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.selected-product {
    background: #f0f8f0;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid #4a7c59;
}

.selected-product h4 {
    color: #2d5016;
    margin-bottom: 10px;
}

.confirm-order-btn {
    width: 100%;
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: white;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.confirm-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.3);
}

/* CTA Flotante */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.floating-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.floating-cta button {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
    transition: all 0.3s ease;
}

.floating-cta button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
}

/* Hero Section */
.hero {
    width: 100%;
    display: flex;
    justify-content: center;
    background: #f8fdf8;
}

.hero img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
}

@media (min-width: 1024px) {
    .hero img {
        max-width: 900px;
    }
}

.cta-btn {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.4);
    background: linear-gradient(135deg, #4a7c59, #2d5016);
}

/* Problem Section */
.problem-section {
    padding: 80px 0;
    background: white;
}

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

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

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

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f0f8f0;
    border-radius: 10px;
    border-left: 4px solid #4a7c59;
}

.check-item i {
    color: #4a7c59;
    font-size: 1.2rem;
}

.check-item span {
    font-size: 1.1rem;
    color: #333;
}

.problem-visual {
    text-align: center;
}

.problem-visual img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Solution Section */
.solution-section {
    padding: 0;
}

.solution-bg {
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    position: relative;
}

.solution-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
}

.solution-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.solution-text h2 {
    font-size: 2.2rem;
    color: #2d5016;
    font-weight: bold;
    line-height: 1.2;
}

.solution-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.solution-product img {
    width: 300px;
    height: auto;
}

.product-info {
    background: rgba(108, 117, 125, 0.9);
    padding: 25px;
    border-radius: 15px;
    color: white;
    max-width: 400px;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #a8e6a3;
}

.product-info p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.rating .stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.rating span {
    font-size: 0.9rem;
    color: #e0e0e0;
}

.benefits-image {
    text-align: center;
    padding: 50px 0;
}

.benefits-image img {
    width: 100%;
    max-width: 800px;
    height: auto;
}

/* Reviews Section */
.reviews-section {
    background: #ffffff;
    padding: 3rem 0;
    text-align: center;
    overflow: hidden;
}

.reviews-title {
    font-family: "Arial", sans-serif;
    font-weight: 700;
    font-size: 2.4rem;
    color: #2d5016;
    margin-bottom: 3rem;
}

.reviews-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 2rem;
    will-change: transform;
}

.review-card {
    position: relative;
    flex: 0 0 320px;
    aspect-ratio: 3 / 4;
    border-radius: 16px;
    overflow: hidden;
    cursor: grab;
    background: #000;
    user-select: none;
}

.review-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
}

.review-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1.4rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
    color: #fff;
    text-align: left;
}

.review-overlay .stars {
    color: #FFD700;
    font-size: 1.3rem;
}

.short {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.4;
}

.reviews-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 3;
    pointer-events: none;
}

.fade-left {
    left: 0;
    background: linear-gradient(to right, #fff 40%, transparent);
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, #fff 40%, transparent);
}

.reviews-cta {
    text-align: center;
    padding: 2rem 1rem 5rem;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.btn {
    background: linear-gradient(135deg, #2d5016, #4a7c59);
    color: #fff;
    padding: 1.5rem 2.2rem;
    border-radius: 60px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
}

.rating-block {
    text-align: left;
}

.rating-block .stars {
    font-size: 2.6rem;
    color: #FFD700;
}

.score {
    font-size: 1.05rem;
    color: #2d5016;
}

/* Testimonials Section - Remover estilos antiguos */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

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

.testimonials-carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
}

.testimonial-slide {
    display: none;
    text-align: center;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-slide img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.carousel-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #4a7c59;
}

/* Authority Section */
.authority-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
}

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

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

.ingredient-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #4a7c59;
}

.ingredient-card i {
    font-size: 2.5rem;
    color: #4a7c59;
    margin-bottom: 20px;
}

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

.certifications {
    text-align: center;
}

.certifications h3 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 30px;
}

.cert-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cert-images img {
    height: 150px;
    width: auto;
}

.cert-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background: #4a7c59;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Offers Section */
.offers-section {
    padding: 80px 0;
    background: white;
}

.offers-section h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2d5016;
    margin-bottom: 50px;
}

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

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.recommended {
    border-color: #4a7c59;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.2);
}

.pricing-card.vip {
    border-color: #2d5016;
    background: linear-gradient(135deg, #f8fdf8, #f0f8f0);
}

.badge-recommended, .badge-vip {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    color: white;
}

.badge-recommended {
    background: #4a7c59;
}

.badge-vip {
    background: #2d5016;
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 15px;
}

.quantity {
    font-size: 1.2rem;
    color: #4a7c59;
    margin-bottom: 20px;
    font-weight: bold;
}

.price {
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-right: 10px;
}

.new-price {
    font-size: 2.5rem;
    color: #2d5016;
    font-weight: bold;
}

.savings {
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.features {
    list-style: none;
    margin-bottom: 30px;
}

.features li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.features li:before {
    content: "✓";
    color: #4a7c59;
    font-weight: bold;
    margin-right: 10px;
}

.payment-security {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.payment-security img {
    height: 60px;
    width: auto;
}

/* Live Viewers */
.live-viewers {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background: #f0f8f0;
    border-radius: 10px;
    font-size: 1.1rem;
    color: #2d5016;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #e74c3c;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

#viewer-count {
    font-weight: bold;
    color: #e74c3c;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
}

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

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    color: #2d5016;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8fdf8;
}

.faq-question i {
    color: #4a7c59;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8fdf8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 25px;
    color: #666;
    line-height: 1.6;
}

.final-cta {
    text-align: center;
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    .solution-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .solution-text h2 {
        font-size: 1.8rem;
    }
    
    .solution-product img {
        width: 250px;
    }
    
    .problem-content {
        grid-template-columns: 1fr;
    }
    
    .review-card { 
        flex: 0 0 80vw; 
    }
    
    .reviews-fade { 
        width: 80px; 
    }
    
    .cta-actions { 
        flex-direction: column; 
        gap: 2rem; 
    }
    
    .banner-content {
        font-size: 12px;
    }
    
    .popup-content {
        padding: 20px;
        margin: 10px;
    }
    
    .popup-header h3 {
        font-size: 1.3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.recommended {
        transform: none;
    }
    
    .live-viewers {
        font-size: 1rem;
        padding: 12px;
    }
    
    .cert-images {
        flex-direction: column;
    }
    
    .cert-badges {
        justify-content: center;
    }
    
    .floating-cta {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-cta button {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .new-price {
        font-size: 2rem;
    }
    
    .live-viewers {
        font-size: 0.9rem;
        padding: 10px;
    }
}