/* Código V - Styles */

* {
    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;
    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: 60px 0;
    text-align: center;
}

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

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

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

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

#videoResumePrompt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    padding: 40px;
}

#videoResumePrompt h3 {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: var(--white);
}

.resume-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-continue, .btn-restart {
    padding: 20px 40px;
    font-size: 1.2em;
    font-weight: bold;
    border: 2px solid var(--primary-red);
    background: transparent;
    color: var(--white);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-continue:hover, .btn-restart:hover {
    background: var(--primary-red);
    transform: scale(1.05);
}

#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%;
}

/* Unlock Container */
.unlock-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Progress Bar */
.unlock-progress-bar {
    position: relative;
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-red);
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 20px;
}

.unlock-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--dark-red) 0%, var(--primary-red) 100%);
    transition: width 1s linear;
    box-shadow: 0 0 20px rgba(227, 30, 36, 0.5);
}

.unlock-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2em;
    font-weight: bold;
    color: white;
    z-index: 10;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

#unlockTimer {
    color: var(--primary-red);
    font-size: 1.3em;
}

/* Unlock Button */
.unlock-button {
    width: 100%;
    padding: 25px;
    font-size: 1.5em;
    font-weight: bold;
    border: none;
    border-radius: 15px;
    cursor: not-allowed;
    transition: all 0.3s;
    text-transform: uppercase;
    background: #555;
    color: #999;
    position: relative;
    overflow: hidden;
}

.unlock-button:disabled {
    background: #555;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.unlock-button.active {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: white;
    cursor: pointer;
    opacity: 1;
    box-shadow: 0 10px 40px rgba(227, 30, 36, 0.6);
    animation: superAttention 0.8s infinite;
}

.unlock-button.active:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 60px rgba(227, 30, 36, 1);
}

/* SUPER LLAMATIVA ANIMACIÓN */
@keyframes superAttention {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(227, 30, 36, 0.6),
                    0 0 0 0 rgba(227, 30, 36, 0.7);
    }
    25% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(227, 30, 36, 0.9),
                    0 0 0 10px rgba(227, 30, 36, 0.5);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 20px 60px rgba(227, 30, 36, 1),
                    0 0 0 20px rgba(227, 30, 36, 0.3),
                    0 0 60px rgba(255, 255, 0, 0.8);
        filter: brightness(1.3);
    }
    75% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(227, 30, 36, 0.9),
                    0 0 0 10px rgba(227, 30, 36, 0.5);
    }
}

/* Efecto de brillo parpadeante adicional */
.unlock-button.active::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% {
        transform: rotate(0deg) translateX(-100%);
    }
    100% {
        transform: rotate(0deg) translateX(100%);
    }
}

.subheadline, .social-proof {
    font-size: 1.3em;
    margin: 20px 0;
    line-height: 1.6;
}

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

/* Mobile Carousel for WhatsApp testimonials */
@media (max-width: 768px) {
    .testimonial-grid {
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding: 20px 10px;
        margin: 20px -20px; /* Extend beyond container */
        scrollbar-width: none; /* Firefox */
    }
    
    .testimonial-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }
    
    .testimonial-grid .testimonial-image {
        flex: 0 0 80%;
        scroll-snap-align: center;
        min-width: 280px;
    }
    
    /* Add scroll indicator dots */
    .about-section {
        position: relative;
    }
}

.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: 80px 0;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
}

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

.benefit-item {
    background: rgba(227, 30, 36, 0.1);
    padding: 30px;
    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: 3em;
    margin-bottom: 20px;
}

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

.benefit-item p {
    line-height: 1.6;
    color: #ddd;
}

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

.offer-box {
    background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
    border: 3px solid var(--primary-red);
    border-radius: 20px;
    padding: 60px 40px;
    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: 40px;
}

.product-showcase img {
    max-width: 600px;
    width: 100%;
    height: auto;
}

.pricing {
    text-align: center;
}

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

.current-price {
    font-size: 4em;
    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: 1.1em;
    margin: 20px 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: 25px 50px;
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 15px;
    margin: 30px 0;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.5);
    text-align: center;
}

.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);
    }
}

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

.payment-badges img {
    height: 40px;
    width: auto;
}

.payment-badges .payment-methods-single {
    height: auto;
    max-width: 100%;
    width: auto;
    max-height: 120px;
}

@media (max-width: 768px) {
    .payment-badges .payment-methods-single {
        max-height: 80px;
    }
}

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

.modules-section h2 {
    font-size: 3em;
    margin-bottom: 60px;
    color: var(--primary-red);
}

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

.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.5em;
    padding: 20px;
    color: var(--primary-red);
}

.module-card p {
    padding: 0 20px 20px;
    font-size: 1.1em;
}

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

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

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

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

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

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

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

.bonus-number {
    background: var(--primary-red);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
}

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

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

.bonus-card p {
    line-height: 1.6;
    color: #ddd;
}

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

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

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

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

.stars {
    font-size: 2em;
    color: gold;
    margin-top: 10px;
}

.guarantee-text {
    flex: 1;
}

.guarantee-text p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
}

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

.faq-item {
    margin-bottom: 20px;
    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: 25px 30px;
    font-size: 1.3em;
    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.5em;
    color: var(--primary-red);
    transition: transform 0.3s;
}

.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: 25px 30px;
    font-size: 1.1em;
    line-height: 1.8;
}

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

.process-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 60px;
}

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

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

.step-number {
    background: var(--primary-red);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
}

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

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

.step p {
    line-height: 1.6;
    color: #ddd;
}

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

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

footer p {
    margin: 10px 0;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .main-headline {
        font-size: 1.8em;
    }

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

    .guarantee-box {
        flex-direction: column;
    }

    .guarantee-badge {
        min-width: 200px;
        height: 200px;
    }

    .benefits-grid,
    .modules-grid,
    .bonuses-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .cta-button {
        font-size: 1.1em;
        padding: 20px 30px;
    }

    .age-modal-content {
        padding: 40px 20px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .btn-yes, .btn-no {
        width: 100%;
    }
}

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

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

.summary-list {
    flex: 1;
}

.summary-list p {
    font-size: 1.2em;
    line-height: 2;
    margin-bottom: 15px;
}

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

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

@media (max-width: 768px) {
    .summary-content {
        flex-direction: column;
    }

    .summary-image {
        flex: 1 1 auto;
    }
}

.immersive-experience {
    text-align: center;
    margin-top: 60px;
}

.immersive-experience h3 {
    font-size: 2em;
    margin-bottom: 20px;
}

.immersive-experience p {
    font-size: 1.3em;
}

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

.cta-text {
    font-size: 1.3em;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contact-section {
    background: var(--dark-bg);
    padding: 80px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.3em;
    margin-bottom: 30px;
}

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

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