﻿        @import "normalize.css";
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-family-base);
            background-color: var(--color-bg);
            background-image:
                radial-gradient(circle at top left, rgba(220, 38, 38, 0.14), transparent 28%),
                radial-gradient(circle at top right, rgba(241, 213, 7, 0.08), transparent 20%),
                linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
            background-attachment: fixed;
            color: var(--color-text);
            line-height: 1.4;
            overflow-x: hidden;
        }

        body::before {
            content: '';
            position: fixed;
            inset: 0;
            pointer-events: none;
            background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
            background-size: 2rem 2rem;
            opacity: 0.35;
            mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 95%);
        }

        .container {
            max-width: 37.5rem;
            margin: 0 auto;
            padding: 0 0.9375rem;
        }

        /* Countdown Banner */
        .countdown-banner {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.96) 0%, rgba(239, 68, 68, 0.9) 52%, rgba(185, 28, 28, 0.88) 100%);
            padding: 0.3125rem 0.3125rem;
            text-align: center;
            font-weight: 800;
            letter-spacing: 0.0313rem;
            border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 0.25rem 1rem rgba(220, 38, 38, 0.42);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(var(--glass-blur));
        }

        .countdown-text {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.3125rem;
            flex-wrap: wrap;
            font-size: 0.9375rem;
        }

        .countdown-timer {
            font-size: 0.9375rem;
            color: #fef08a;
            font-weight: 900;
            letter-spacing: 0.125rem;
            visibility: hidden;
        }

        .countdown-timer.is-ready {
            visibility: visible;
        }

        .countdown-offer {
            font-size: 0.9375rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.85);
            letter-spacing: 0.0313rem;
            margin-top: 0;
        }

        /* Hero Section */
        .hero {
            padding: 1.875rem 0 1.25rem;
            text-align: center;
            position: relative;
        }

        .discount-badge {
            display: inline-block;
            background: rgba(220, 38, 38, 0.92);
            color: var(--color-text);
            padding: 0.5rem 1.25rem;
            border-radius: 3.125rem;
            font-weight: 800;
            font-size: 1.375rem;
            margin-bottom: 1.25rem;
            letter-spacing: 0.0625rem;
            border: 0.0625rem solid rgba(255, 255, 255, 0.08);
            box-shadow: var(--shadow-glow);
            animation: pulse 2s ease-in-out infinite;
        }

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

        .hero h1 {
            font-size: 2rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 0.625rem;
            text-transform: uppercase;
            letter-spacing: -0.0313rem;
        }

        .hero h1 .highlight {
            color: #d4e420;
            display: block;
            font-size: 1.75rem;
            margin-top: 0.3125rem;
        }

        .showcase-paragraph {
            margin: 0.9375rem;
            padding: 0.875rem 1rem;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(220, 38, 38, 0.08));
            border-right:0.1875rem solid rgba(220, 38, 38, 0.7) ;
            border-left: 0.1875rem solid rgba(220, 38, 38, 0.7);
            border-radius: 0.625rem;
            color: var(--color-text-muted);
            font-size: 1.125rem;
            line-height: 1.55;
            font-weight: 500;
            text-align: center;
            box-shadow: var(--shadow-sm);
            backdrop-filter: blur(var(--glass-blur));
        }

        .showcase-media-block {
            margin: 0 0.9375rem 0.9375rem;
            border-radius: 1rem;
            overflow: hidden;
            border: 0.0625rem solid var(--color-border-strong);
            box-shadow: var(--shadow-md);
            background: rgba(10, 10, 10, 0.72);
            backdrop-filter: blur(var(--glass-blur));
        }

        .showcase-media-block .product-image-front {
            margin-bottom: 0;
            border-radius: 0;
            border-bottom: 0.0625rem solid var(--color-primary);
        }

        .showcase-image-caption {
            margin: 0;
            border-left: 0;
            border-right: 0;
            border-radius: 0;
            box-shadow: none;
            background: linear-gradient(180deg, rgba(220, 38, 38, 0.16), rgba(255, 255, 255, 0.03));
            font-size: 1rem;
            text-align: left;
        }

        @media (max-width: 30rem) {
            .showcase-paragraph {
                font-size: 1rem;
                padding: 0.75rem 0.875rem;
            }

            .showcase-media-block {
                margin: 0 0.75rem 0.9375rem;
            }
        }

        .date-info {
            font-size: 0.875rem;
            color: #999;
            margin-bottom: 1.5625rem;
        }

        /* Product Image */
        .product-showcase {
            margin: 0.3125rem 0;
            padding: 1.25rem;
        }

        .product-image-front {
            width: 100%;
            display: flex;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(220, 38, 38, 0.12));
            padding: 0.3125rem;
            align-items: center;
            justify-content: center;
            border-radius: 1.25rem;
            margin-bottom: 1.25rem;
            height: auto;
            border: 0.0625rem solid rgba(255, 255, 255, 0.06);
            box-shadow: var(--shadow-sm);
        }

        /* Rating */
        .rating-section {
            text-align: center;
            margin: 1.25rem 0;
        }

        .stars {
            color: #fbbf24;
            font-size: 1.5rem;
            letter-spacing: 0.125rem;
        }

        .rating-text {
            font-size: 1rem;
            color: var(--color-text-muted);
            margin-top: 0.3125rem;
            font-weight: 600;
        }

        /* Benefits Section */
        .benefits-section {
            padding: 1.875rem 0;
        }

        .section-title {
            font-size: 1.75rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 0.625rem;
            text-transform: uppercase;
            letter-spacing: 0.0313rem;
        }

        .benefits-grid {
            display: grid;
            gap: 0.75rem;
            margin-bottom: 1.875rem;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.9375rem;
            background: rgba(255, 255, 255, 0.04);
            border: 0.0625rem solid rgba(255, 255, 255, 0.08);
            border-left: 0.25rem solid var(--color-primary);
            font-size: 1rem;
            font-weight: 600;
            border-radius: 0.5rem;
            backdrop-filter: blur(var(--glass-blur));
        }

        .benefit-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        /* Target Audience */
        .target-section {
            background: rgba(255, 255, 255, 0.04);
            padding: 1.5625rem;
            border-radius: 0.9375rem;
            margin: 1.875rem 0;
            border: 0.0625rem solid rgba(255, 255, 255, 0.08);
            box-shadow: var(--shadow-sm);
            backdrop-filter: blur(var(--glass-blur));
        }

        .target-title {
            font-size: 1.25rem;
            font-weight: 800;
            margin-bottom: 1.25rem;
            text-align: center;
        }

        .target-list {
            display: grid;
            gap: 0.625rem;
        }

        .target-item {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            font-size: 1rem;
            font-weight: 600;
        }

        .target-item-bad {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            font-size: 1rem;
            font-weight: 600;
        }

        .target-item::before {
            content: '✔️';
            color: var(--color-success);
            font-weight: 900;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .target-item-bad::before {
             content: '❌';
            color: #ee042f;
            font-weight: 900;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        /* CTA Button */
        .cta-section {
            padding: 0 0;
            text-align: center;
        }

        .cta-tagline {
            font-size: 2rem;
            font-weight: 900;
            color: #fef08a;
            margin-bottom: 1.25rem;
            line-height: 1.1;
            text-transform: uppercase;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--color-success) 0%, var(--color-success-dark) 100%);
            color: var(--color-bg);
            padding: 1.25rem 2.5rem;
            font-size: 1.5rem;
            font-weight: 900;
            border: none;
            border-radius: 0.875rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.0625rem;
            box-shadow: 0 0.625rem 1.875rem rgba(34, 197, 94, 0.5);
            width: 100%;
            margin: 0;
            animation: buttonPulse 2s ease-in-out infinite;
            border: 0.0625rem solid rgba(255, 255, 255, 0.08);
        }

        @keyframes buttonPulse {
            0%, 100% { box-shadow: 0 0.625rem 1.875rem rgba(34, 197, 94, 0.5); }
            50% { box-shadow: 0 0.9375rem 2.5rem rgba(34, 197, 94, 0.8); }
        }

        .btn-primary:active {
            transform: scale(0.98);
        }

        /* FAQ Section */
        .faq-section {
            padding: 0 0;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .faq-item {
            margin-bottom: 0.9375rem;
            border: 0.0625rem solid rgba(255, 255, 255, 0.08);
            border-radius: 0.625rem;
            overflow: hidden;
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(var(--glass-blur));
        }

        .faq-question {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1.125rem;
            font-size: 1.0625rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(220, 38, 38, 0.08);
        }

        .faq-question:hover {
            background: rgba(220, 38, 38, 0.2);
        }

        .faq-icon {
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .faq-text {
            flex: 1;
        }

        .faq-arrow {
            font-size: 1.25rem;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 1.125rem;
        }

        .faq-answer-content {
            padding: 0.9375rem 0;
            color: var(--color-text-muted);
            font-size: 0.9375rem;
            line-height: 1.6;
            border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
        }

        .faq-answer-content ul {
            margin: 0.75rem 0 0.875rem;
            padding-left: 1.375rem;
        }

        .faq-answer-content li {
            margin-bottom: 0.5rem;
            color: #f3f4f6;
            font-weight: 600;
        }

        .faq-answer-content li::marker {
            color: var(--color-primary);
        }

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

        .faq-item.active .faq-answer {
            max-height: 31.25rem;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 2.5rem 0;
            background: rgba(220, 38, 38, 0.04);
        }

        .testimonial-card {
            background: rgba(10, 10, 10, 0.66);
            border: 0.0625rem solid rgba(220, 38, 38, 0.28);
            border-radius: 0.9375rem;
            padding: 1.25rem;
            margin-bottom: 0.9375rem;
            box-shadow: var(--shadow-sm);
            backdrop-filter: blur(var(--glass-blur));
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.9375rem;
            text-align: left;
        }

        .testimonial-avatar {
            width: 3.125rem;
            height: 3.125rem;
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 800;
        }

        .testimonial-info h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.1875rem;
        }

        .testimonial-result {
            font-size: 0.8125rem;
            color: var(--color-success);
            font-weight: 700;
        }

        .testimonial-text {
            font-size: 0.875rem;
            line-height: 1.5;
            color: var(--color-text-muted);
            margin-bottom: 0.9375rem;
            text-align: left;
        }

        /* Before After Styles */
        .before-after {
            display: flex;
            gap: 0.9375rem;
            justify-content: center;
            margin-top: 1.25rem;
            flex-wrap: wrap;
        }

        .before-after-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.625rem;
            flex: 1;
            min-width: 8.75rem;
            max-width: 12.5rem;
        }

        .before-after-img {
            width: 100%;
            height: 12.5rem;
            object-fit: cover;
            border-radius: 0.5rem;
            border: 0.125rem solid var(--color-primary);
            box-shadow: 0 0.25rem 0.75rem rgba(220, 38, 38, 0.16);
            transition: transform 0.3s ease;
            object-position: top;
        }

        .before-after-img:hover {
            transform: scale(1.05);
        }

        .before-after-label {
            text-align: center;
            font-size: 0.8125rem;
            font-weight: 700;
            color: #9ca3af;
            text-transform: uppercase;
            letter-spacing: 0.0313rem;
            line-height: 1.4;
        }

        /* Responsive Before After */
        @media (max-width: 30rem) {
            .before-after {
                gap: 0.625rem;
            }
            
            .before-after-item {
                min-width: 7.5rem;
                max-width: 10rem;
            }
            
            .before-after-img {
                height: 10rem;
            }
            
            .before-after-label {
                font-size: 0.6875rem;
            }
        }

        /* Footer */
        footer {
            padding: 1.875rem 0;
            text-align: center;
            border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
            color: #666;
            font-size: 0.8125rem;
        }

        /* Payment Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.95);
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            background-color: rgba(26, 26, 26, 0.92);
            margin: 3.125rem auto;
            padding: 1.875rem;
            border: 0.125rem solid rgba(220, 38, 38, 0.45);
            border-radius: 1.25rem;
            width: 90%;
            max-width: 31.25rem;
            position: relative;
            animation: slideIn 0.3s ease;
            max-height: 90vh;
            overflow-y: auto;
            backdrop-filter: blur(var(--glass-blur));
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 1.75rem;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
        }

        .close:hover {
            color: var(--color-primary);
        }

        .modal h3 {
            color: var(--color-primary);
            margin-bottom: 1.25rem;
            font-size: 1.5rem;
        }

        .modal p {
            color: var(--color-text-muted);
            margin-bottom: 1.25rem;
            line-height: 1.6;
        }

        /* Testimonial Carousel Styles */
        .testimonial-carousel {
            position: relative;
            max-width: 50rem;
            margin: 0 auto;
        }

        .testimonial-wrapper {
            position: relative;
            overflow: hidden;
        }

        .testimonial-card {
            display: none;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .testimonial-card.active {
            display: block;
            opacity: 1;
            animation: fadeIn 0.5s ease-in-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateX(1.25rem);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .carousel-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(220, 38, 38, 0.8);
            color: white;
            border: none;
            font-size: 1.5rem;
            padding: 0.9375rem 1.25rem;
            cursor: pointer;
            border-radius: 0.5rem;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .carousel-control:hover {
            background-color: var(--color-primary);
            transform: translateY(-50%) scale(1.1);
        }

        .carousel-control.prev {
            left: -3.75rem;
        }

        .carousel-control.next {
            right: -3.75rem;
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 0.625rem;
            margin-top: 1.5625rem;
        }

        .indicator {
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 50%;
            background-color: #4b5563;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background-color: var(--color-primary);
            transform: scale(1.3);
        }

        .indicator:hover {
            background-color: var(--color-primary-light);
        }

        /* About Section */
        .about-section {
            background: rgba(31, 31, 31, 0.72);
            padding: 1.875rem 1.25rem;
            border-top: 0.0625rem solid rgba(255, 255, 255, 0.06);
            border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(var(--glass-blur));
        }

        .about-content {
            display: flex;
            gap: 3.125rem;
            align-items: center;
            max-width: 62.5rem;
            margin: 0 auto;
        }

        .about-image-container {
            flex: 0 0 17.5rem;
            text-align: center;
        }

        .about-avatar {
            width: 11.25rem;
            height: 11.25rem;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.92), rgba(239, 68, 68, 0.88));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            font-weight: 800;
            color: white;
            margin: 0 auto 0;
            border: 0.25rem solid rgba(69, 18, 18, 0.95);
            box-shadow: 0 0.5rem 1.25rem rgba(111, 24, 24, 0.25);
        }

        .about-credentials {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .credential-badge {
            background-color: rgba(255, 255, 255, 0.05);
            color: #d4e420;
            padding: 0.5rem 0.75rem;
            border-radius: 0.375rem;
            font-size: 0.75rem;
            font-weight: 600;
            border: 0.0625rem solid rgba(255, 255, 255, 0.08);
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--color-text);
            margin-bottom: 0.5rem;
        }

        .about-subtitle {
            font-size: 1rem;
            color: rgb(165, 0, 165);
            font-weight: 600;
            margin-bottom: 1.25rem;
            display: block;
        }

        .about-description {
            font-size: 1rem;
            line-height: 1.6;
            color: var(--color-text-muted);
            margin-bottom: 0.9375rem;
        }

        .about-stats {
            display: flex;
            gap: 1.875rem;
            margin-top: 1.875rem;
            padding-top: 1.875rem;
            border-top: 0.0625rem solid rgba(255, 255, 255, 0.08);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--color-primary);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.75rem;
            color: #9ca3af;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.0313rem;
        }

        /* Payment Badge Styles */
        .payment-badge {
            max-width: 12.5rem;
            height: auto;
            margin-top: 0;
            margin-bottom: 0.625rem;
            display: block;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }

        .payment-badge:hover {
            opacity: 1;
        }

        .info-badges {
            display: flex;
            justify-content: center;
            gap: 0.625rem;
            margin-top: 0;
            flex-wrap: wrap;
        }

        .info-badge {
            display: flex;
            align-items: center;
            gap: 0.3125rem;
            font-size: 0.625rem;
            font-weight: 700;
            color: var(--color-text);
            letter-spacing: 0.0188rem;
        }

        .info-badge-tick {
            width: 1.25rem;
            height: 1.25rem;
            background: rgba(230.57.70.0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.625rem;
            color:red;
        }

        /* Responsive About Section */
        @media (max-width: 48rem) {
            .about-content {
                flex-direction: column;
                gap: 1.875rem;
            }
            
            .about-image-container {
                flex: none;
            }
            
            .about-avatar {
                width: 9.375rem;
                height: 9.375rem;
                font-size: 3.25rem;
            }
            
            .about-text h3 {
                font-size: 1.625rem;
                text-align: center;
            }
            
            .about-subtitle {
                text-align: center;
            }
            
            .about-stats {
                flex-direction: row;
                justify-content: center;
                gap: 1.25rem;
            }
        }

        /* Scroll animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(1.875rem);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .scroll-fade-in {
            opacity: 0;
            transform: translateY(1.875rem);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .scroll-fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* AsesorÃ­a Personalizada Section */
        .asesoria-section {
            padding: 3.125rem 0;
        }

        .asesoria-card {
            background: linear-gradient(135deg, rgba(220, 38, 38, 0.12) 0%, rgba(10, 10, 10, 0.72) 100%);
            border: 0.125rem solid rgba(220, 38, 38, 0.36);
            border-radius: 1.25rem;
            padding: 2.1875rem 1.5625rem;
            text-align: center;
            box-shadow: var(--shadow-md);
            backdrop-filter: blur(var(--glass-blur));
        }

        .asesoria-badge {
            display: inline-block;
            background: var(--color-primary);
            color: var(--color-text);
            padding: 0.375rem 1.125rem;
            border-radius: 3.125rem;
            font-weight: 800;
            font-size: 0.875rem;
            letter-spacing: 0.0625rem;
            margin-bottom: 1.25rem;
        }

        .asesoria-title {
            font-size: 1.625rem;
            font-weight: 900;
            color: var(--color-text);
            margin-bottom: 0.9375rem;
            line-height: 1.15;
            text-transform: uppercase;
        }

        .asesoria-description {
            font-size: 1rem;
            color: var(--color-text-muted);
            margin-bottom: 1.5625rem;
            line-height: 1.5;
        }

        .asesoria-benefits {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 1.5625rem;
            text-align: left;
            max-width: 25rem;
            margin-left: auto;
            margin-right: auto;
        }

        .asesoria-benefit {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1rem;
            font-weight: 600;
            color: var(--color-text);
        }

        .asesoria-check {
            color: var(--color-success);
            font-size: 1.25rem;
            font-weight: 900;
            flex-shrink: 0;
        }

        .asesoria-disclaimer {
            font-size: 0.9375rem;
            color: #fbbf24;
            font-weight: 700;
            margin-bottom: 1.5625rem;
            line-height: 1.5;
        }

        .btn-asesoria {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
            color: var(--color-text);
            padding: 1.125rem 1.875rem;
            font-size: 1.125rem;
            font-weight: 900;
            border: none;
            border-radius: 3.125rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.0313rem;
            box-shadow: 0 0.625rem 1.875rem rgba(220, 38, 38, 0.4);
            width: 100%;
        }

        .btn-asesoria:hover {
            transform: translateY(-0.1875rem);
            box-shadow: 0 0.9375rem 2.5rem rgba(220, 38, 38, 0.6);
        }

        .btn-asesoria:active {
            transform: scale(0.98);
        }

        /* AsesorÃ­a Form (Modal) */
        .asesoria-form {
            margin-top: 0.9375rem;
        }

        .form-group {
            margin-bottom: 1rem;
            text-align: left;
        }

        .form-group label {
            display: block;
            color: var(--color-text-muted);
            font-weight: 600;
            margin-bottom: 0.375rem;
            font-size: 0.875rem;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 0.75rem;
            border: 0.0625rem solid rgba(220, 38, 38, 0.35);
            border-radius: 0.5rem;
            background-color: rgba(255, 255, 255, 0.04);
            color: var(--color-text);
            font-size: 1rem;
            font-family: var(--font-family-base);
            box-sizing: border-box;
        }

        .form-group input::placeholder {
            color: #666;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--color-primary-light);
            box-shadow: 0 0 0 0.1875rem rgba(220, 38, 38, 0.16);
        }

        .phone-input-group {
            display: flex;
            gap: 0.625rem;
        }

        .phone-input-group select {
            flex: 0 0 6.875rem;
            padding: 0.75rem 0.5rem;
        }

        .phone-input-group input {
            flex: 1;
        }

        @media (max-width: 40rem) {
            .countdown-banner {
                font-size: 1rem;
            }

            .countdown-timer {
                font-size: 1.25rem;
            }

            .hero h1 {
                font-size: 1.625rem;
            }

            .hero h1 .highlight {
                font-size: 1.375rem;
            }

            .cta-tagline {
                font-size: 1.625rem;
            }

            .btn-primary {
                font-size: 1.25rem;
                padding: 1rem 1.75rem;
            }

            .target-section {
                padding: 1.25rem;
            }

            .target-title {
                font-size: 1.125rem;
            }

            .phone-input-group {
                flex-direction: column;
            }

            .phone-input-group select {
                flex: none;
                width: 100%;
            }
        }

        /* ===== Preview Carousel ===== */

        .container-carrousel {
            max-width: 50rem;
            min-width: auto;
            margin: 0 auto;
        }
        .preview-carousel-wrapper {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            width: 100%;
            margin: 0 auto 1.25rem;
        }

        .preview-carousel {
            position: relative;
            overflow: hidden;
            border-radius: 1rem;
            flex: 1;
            min-width: 0;
            margin: 0;
            border: 0.0625rem solid rgba(255, 255, 255, 0.08);
            box-shadow: var(--shadow-sm);
            backdrop-filter: blur(var(--glass-blur));
        }

        .preview-carousel-track {
            display: flex;
            transition: transform 0.45s cubic-bezier(.4.0,.2.1);
            will-change: transform;
        }

        .preview-slide {
            min-width: 100%;
            width: 100%;
            flex: 0 0 100%;
            position: relative;
        }

        .preview-slide img {
            width: 100%;
            display: block;
            border-radius: 0.75rem;
            object-fit: contain;
            margin: 0 auto;
        }

        /* Ãšltima slide: imagen con blur */
        .preview-slide--locked img {
            filter: blur(0.3125rem) brightness(0.5);
            -webkit-filter: blur(0.3125rem) brightness(0.5);
            pointer-events: none;
            user-select: none;
        }

        .preview-blur-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.625rem;
            z-index: 2;
            padding-bottom: 5rem;
        }

        .preview-lock-text {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            text-shadow: 0 0.125rem 0.75rem rgba(0.0,0,.7);
        }

        .preview-blur-overlay .btn-primary {
            color: var(--color-bg);
            padding: 1.125rem 2rem;
            font-size: 1.25rem;
            font-weight: 900;
            border-radius: 0.875rem;
            width: auto;
            min-width: 13.75rem;
            animation: buttonPulse 2s ease-in-out infinite;
        }


        /* Flechas */
        .preview-arrow {
            position: static;
            transform: none;
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            border: none;
            font-size: 1.125rem;
            width: 2.25rem;
            height: 2.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-radius: 50%;
            z-index: 3;
            backdrop-filter: blur(0.25rem);
            transition: background .25s, color .25s;
            flex-shrink: 0;
            line-height: 1;
            padding: 0;
        }

        .preview-arrow:hover {
            background: var(--color-accent);
            color: #000;
        }

       
        /* Dots */
        .preview-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 0 0.25rem;
        }

        .preview-dot {
            width: 0.625rem;
            height: 0.625rem;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: background .25s, transform .25s;
        }

        .preview-dot.active {
            background: var(--color-accent);
            transform: scale(1.25);
        }

    /* bullet list */

