/* Código V - Styles - MOBILE OPTIMIZED */

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

:root {
    --primary-red: #e31e24;
    --dark-red: #a01317;
    --black: #000000;
    --dark-bg: #0a0a0a;
    --white: #ffffff;
    --gray: #f5f5f5;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
}

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

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-modal-content {
    background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 2px solid var(--primary-red);
    box-shadow: 0 0 50px rgba(227, 30, 36, 0.5);
}

.age-modal-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--primary-red);
}

.age-modal-content p {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.btn-yes, .btn-no {
    padding: 15px 40px;
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-yes {
    background: var(--primary-red);
    color: white;
}

.btn-yes:hover {
    background: var(--dark-red);
    transform: scale(1.05);
}

.btn-no {
    background: #333;
    color: white;
}

.btn-no:hover {
    background: #555;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(180deg, #1a0000 0%, #000000 100%);
    padding: 40px 0 20px 0;
    text-align: center;
}

.main-headline {
    font-size: 2.5em;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: bold;
    padding: 0 15px;
}

.highlight {
    color: var(--primary-red);
}

.highlight-red {
    color: var(--primary-red);
    font-weight: bold;
}

/* Video Container */
.video-container {
    max-width: 900px;
    margin: 30px auto;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(227, 30, 36, 0.3);
    position: relative;
}

#videoPlayer {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

#videoPlayer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Vturb SmartPlayer */
vturb-smartplayer {
    display: block;
    width: 100%;
    height: 100%;
}

/* COPY DEBAJO DEL VIDEO - OPTIMIZADO MOBILE */
.subheadline, .social-proof {
    font-size: 1.2em;
    margin: 30px auto;
    line-height: 1.7;
    max-width: 900px;
    padding: 0 20px;
    text-align: center;
}

.subheadline {
    margin-top: 40px;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: var(--black);
}

.about-section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    padding: 0 20px;
}

.about-section p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 40px;
    padding: 0 20px;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.testimonial-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Video Testimonials */
.video-testimonials {
    background: var(--dark-bg);
    padding: 60px 0;
}

.testimonial-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.video-testimonial {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(227, 30, 36, 0.2);
}

.video-testimonial iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(180deg, #1a0000 0%, #000000 50%, #1a0000 100%);
    padding: 60px 0;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 40px;
    padding: 0 20px;
}

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

.benefit-item {
    background: rgba(227, 30, 36, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(227, 30, 36, 0.3);
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.4);
}

.benefit-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 1.3em;
    margin-bottom: 12px;
    color: var(--white);
}

.benefit-item p {
    line-height: 1.6;
    color: #ddd;
    font-size: 1em;
}

/* Offer Section */
.offer-section {
    background: var(--black);
    padding: 60px 0;
}

.offer-box {
    background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
    border: 3px solid var(--primary-red);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 0 50px rgba(227, 30, 36, 0.3);
}

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

/* IMAGEN DEL PRODUCTO - CORREGIDA PARA MOBILE */
.product-showcase {
    width: 100%;
    max-width: 600px;
}

.product-showcase img,
.product-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
}

/* IMAGEN FINAL DEL PRODUCTO */
.final-product-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 30px auto;
}

.pricing {
    text-align: center;
    width: 100%;
}

.original-price {
    font-size: 1.3em;
    margin-bottom: 10px;
}

.current-price {
    font-size: 3em;
    color: var(--primary-red);
    font-weight: bold;
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(227, 30, 36, 0.5);
}

.currency-note {
    font-size: 1em;
    margin: 15px 0;
    color: #ccc;
}

/* CTA Button */
.cta-button, .cta-button-sticky {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    padding: 20px 30px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 15px;
    margin: 20px auto;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.5);
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.cta-button:hover, .cta-button-sticky:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(227, 30, 36, 0.7);
}

.cta-button.pulse {
    animation: pulse 2s infinite;
}

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

/* Modules Section */
.modules-section {
    background: var(--dark-bg);
    padding: 60px 0;
    text-align: center;
}

.modules-section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--primary-red);
    padding: 0 20px;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.module-card {
    background: rgba(227, 30, 36, 0.1);
    border: 2px solid rgba(227, 30, 36, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.module-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
}

.module-card img {
    width: 100%;
    height: auto;
}

.module-card h3 {
    font-size: 1.3em;
    padding: 15px;
    color: var(--primary-red);
}

.module-card p {
    padding: 0 15px 15px;
    font-size: 1em;
}

/* Bonuses Section */
.bonuses-section {
    background: linear-gradient(180deg, #000000 0%, #1a0000 100%);
    padding: 60px 0;
}

.bonuses-section h2 {
    text-align: center;
    font-size: 1.8em;
    margin-bottom: 15px;
    padding: 0 20px;
}

.bonuses-title {
    text-align: center;
    font-size: 2.5em;
    color: var(--primary-red);
    margin: 15px 0;
}

.bonuses-value {
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 40px;
}

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

.bonus-card {
    background: rgba(227, 30, 36, 0.1);
    border: 2px solid var(--primary-red);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
}

.bonus-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(227, 30, 36, 0.4);
}

.bonus-number {
    background: var(--primary-red);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 0.9em;
}

.bonus-card img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 10px;
}

.bonus-card h4 {
    font-size: 1.2em;
    margin: 15px 0;
    color: var(--primary-red);
}

.bonus-card p {
    line-height: 1.6;
    color: #ddd;
    font-size: 0.95em;
}

/* Guarantee Section */
.guarantee-section {
    background: var(--black);
    padding: 60px 0;
}

.guarantee-box {
    background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
    border: 3px solid var(--primary-red);
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.guarantee-badge {
    background: var(--primary-red);
    color: white;
    padding: 30px;
    border-radius: 50%;
    text-align: center;
    min-width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-badge h2 {
    font-size: 1.6em;
    line-height: 1.2;
}

.stars {
    font-size: 1.5em;
    color: gold;
    margin-top: 8px;
}

.guarantee-text {
    flex: 1;
}

.guarantee-text p {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq-section {
    background: var(--dark-bg);
    padding: 60px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    padding: 0 20px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 2px solid rgba(227, 30, 36, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: rgba(227, 30, 36, 0.1);
    color: white;
    padding: 20px 25px;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(227, 30, 36, 0.2);
}

.faq-icon {
    font-size: 1.3em;
    color: var(--primary-red);
    transition: transform 0.3s;
    margin-left: 15px;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
}

.faq-answer p {
    padding: 20px 25px;
    font-size: 1em;
    line-height: 1.7;
}

/* Process Section */
.process-section {
    background: var(--black);
    padding: 60px 0;
}

.process-section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    padding: 0 20px;
}

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

.step {
    background: rgba(227, 30, 36, 0.1);
    border: 2px solid var(--primary-red);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
}

.step-number {
    background: var(--primary-red);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 0.9em;
}

.step img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 10px;
}

.step h3 {
    font-size: 1.2em;
    margin: 15px 0;
    color: var(--primary-red);
}

.step p {
    line-height: 1.6;
    color: #ddd;
    font-size: 0.95em;
}

/* Summary Section */
.summary-section {
    padding: 60px 0;
    background: var(--dark-bg);
}

.summary-section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    padding: 0 20px;
}

.summary-content {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 30px;
}

.summary-list {
    flex: 1;
}

.summary-list p {
    font-size: 1.05em;
    line-height: 1.8;
    margin-bottom: 12px;
}

.summary-image {
    flex: 0 0 350px;
}

.summary-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.crossed {
    text-decoration: line-through;
    color: var(--primary-red);
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: var(--black);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    padding: 0 20px;
}

/* Immersive Experience */
.immersive-experience {
    text-align: center;
    margin-top: 40px;
}

.immersive-experience h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    padding: 0 20px;
}

.immersive-experience p {
    font-size: 1.2em;
    padding: 0 20px;
}

/* Final CTA */
.final-cta {
    text-align: center;
    margin-top: 50px;
}

.cta-text {
    font-size: 1.1em;
    margin-bottom: 25px;
    text-transform: uppercase;
    padding: 0 20px;
}

.final-section {
    padding: 60px 0;
    background: var(--black);
}

.final-section h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 40px;
    padding: 0 20px;
}

/* Contact Section */
.contact-section {
    background: var(--dark-bg);
    padding: 60px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2em;
    margin-bottom: 15px;
    padding: 0 20px;
}

.contact-section p {
    font-size: 1.2em;
    margin-bottom: 25px;
    padding: 0 20px;
}

.contact-button {
    display: inline-block;
    background: var(--primary-red);
    color: white;
    padding: 18px 35px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
}

.contact-button:hover {
    background: var(--dark-red);
    transform: scale(1.05);
}

/* CTA Repeat Section */
.cta-repeat-section {
    padding: 60px 0;
    background: var(--black);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 15px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(227, 30, 36, 0.5);
}

.cta-button-sticky {
    width: 90%;
    max-width: 500px;
    padding: 18px 30px;
    font-size: 1.1em;
}

/* Footer */
footer {
    background: var(--black);
    padding: 30px 0;
    text-align: center;
    border-top: 2px solid var(--primary-red);
}

footer p {
    margin: 8px 0;
    color: #888;
    font-size: 0.9em;
}

/* ============================================
   MOBILE RESPONSIVE - OPTIMIZADO
============================================ */

@media (max-width: 768px) {
    /* Hero */
    .main-headline {
        font-size: 1.6em;
        padding: 0 15px;
        margin-bottom: 15px;
    }

    .hero-section {
        padding: 30px 0 15px 0;
    }

    /* Video */
    .video-container {
        margin: 20px 10px;
        border-radius: 10px;
    }

    /* Copy debajo del video */
    .subheadline, .social-proof {
        font-size: 1em;
        margin: 25px 15px;
        line-height: 1.6;
        text-align: left;
    }

    .subheadline {
        margin-top: 30px;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Pricing */
    .current-price {
        font-size: 2.5em;
    }

    .original-price {
        font-size: 1.1em;
    }

    .currency-note {
        font-size: 0.9em;
    }

    /* CTA Buttons */
    .cta-button {
        font-size: 1em;
        padding: 18px 25px;
        width: 95%;
    }

    /* Guarantee */
    .guarantee-box {
        flex-direction: column;
        padding: 30px 20px;
    }

    .guarantee-badge {
        min-width: 160px;
        height: 160px;
        padding: 25px;
    }

    .guarantee-badge h2 {
        font-size: 1.4em;
    }

    .guarantee-text p {
        font-size: 0.95em;
    }

    /* Summary */
    .summary-content {
        flex-direction: column;
    }

    .summary-image {
        flex: 1 1 auto;
        width: 100%;
    }

    .summary-list p {
        font-size: 0.95em;
    }

    /* Testimonials Grid - Mobile Carousel */
    .testimonial-grid {
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding: 20px 10px;
        margin: 20px -20px;
        scrollbar-width: none;
    }
    
    .testimonial-grid::-webkit-scrollbar {
        display: none;
    }
    
    .testimonial-grid .testimonial-image {
        flex: 0 0 85%;
        scroll-snap-align: center;
        min-width: 280px;
    }

    /* Modules, Bonuses, Process - Single Column */
    .modules-grid,
    .bonuses-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Video Testimonials */
    .testimonial-videos {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Age Modal */
    .age-modal-content {
        padding: 30px 20px;
        width: 95%;
    }

    .age-modal-content h2 {
        font-size: 2em;
    }

    .age-modal-content p {
        font-size: 1em;
    }

    .age-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-yes, .btn-no {
        width: 100%;
        padding: 15px 25px;
    }

    /* FAQ */
    .faq-question {
        font-size: 1em;
        padding: 18px 20px;
    }

    .faq-answer p {
        font-size: 0.95em;
        padding: 18px 20px;
    }

    /* All Section Headings */
    .benefits-section h2,
    .modules-section h2,
    .bonuses-section h2,
    .process-section h2,
    .summary-section h2,
    .testimonials-section h2,
    .final-section h2,
    .faq-section h2,
    .contact-section h2 {
        font-size: 1.6em;
    }

    .bonuses-title {
        font-size: 2em;
    }

    /* About Section */
    .about-section h2 {
        font-size: 1.6em;
    }

    .about-section p {
        font-size: 1em;
    }
}

/* TABLET ADJUSTMENTS */
@media (min-width: 769px) and (max-width: 1024px) {
    .main-headline {
        font-size: 2em;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .current-price {
        font-size: 3.5em;
    }
}
