        /* =========================================
           PROYECTO: NOEMÍ CLAVIJO - LANDING PAGE
           DEV: URIEL.CODE
           ESTADO: INTEGRADO (HTML + CSS JUNTOS)
           ========================================= */

        /* --- 1. VARIABLES & RESET --- */
        :root {
            --bg-dark: #050505;       
            --bg-card: #121212;       
            --text-main: #ffffff;
            --text-muted: #d0d0d0;    
            --brand-pink: #ff007f;    
            --brand-glow: rgba(255, 0, 127, 0.4);
            --brand-cyan: #00f2ea;    
            --gradient: linear-gradient(135deg, #ff007f 0%, #ff5e00 100%);
            --font-main: 'Outfit', system-ui, -apple-system, sans-serif;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            background-color: var(--bg-dark);
            color: var(--text-main);
            font-family: var(--font-main);
            overflow-x: hidden;
            line-height: 1.6;
            transition: padding-bottom 0.5s ease-out; 
        }
        a { text-decoration: none; }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; }

        /* --- 2. UTILIDADES --- */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--brand-pink);
            color: white;
            box-shadow: 0 0 20px var(--brand-glow);
            border: 1px solid transparent;
            text-shadow: 0 1px 2px rgba(0,0,0,0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 0 40px var(--brand-glow);
            background: #e60073;
        }

        .btn-secondary {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: var(--text-main);
            font-size: 1rem;
            padding: 12px 24px;
        }
        .btn-secondary:hover {
            border-color: var(--brand-cyan);
            color: var(--brand-cyan);
            box-shadow: 0 0 15px rgba(0, 242, 234, 0.2);
        }

        .text-pink { color: var(--brand-pink); }
        .text-cyan { color: var(--brand-cyan); }
        .fw-800 { font-weight: 800; }

        .gradient-text {
            background: linear-gradient(90deg, #ff007f, #ff5e00, #ff007f);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            animation: textShimmer 3s linear infinite;
            will-change: background-position;
        }

        @keyframes textShimmer {
            to { background-position: 200% center; }
        }

        /* ANIMACIONES */
        .fade-in-up {
            animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
            opacity: 0;
            transform: translateY(30px);
        }
        .delay-1 { animation-delay: 0.3s; }

        @keyframes fadeInUp {
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 1s ease-out;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- 3. NAVBAR --- */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(5, 5, 5, 0.85);
            backdrop-filter: blur(12px);
            z-index: 1000;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .nav-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            height: auto;
            min-height: 50px;
        }

        .nav-logo-img img {
            height: 45px;
            width: auto;
            display: block;
            transition: transform 0.3s;
            object-fit: contain;
            border: none !important;
            outline: none !important;
        }
        .nav-logo-img:hover img { 
            transform: scale(1.05); 
        }

        .nav-brand-text {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            font-weight: 800;
            font-size: 1.4rem;
            letter-spacing: -0.5px;
            color: var(--text-main);
            white-space: nowrap;
        }
        .dot { color: var(--brand-pink); }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .btn-icon {
            color: white;
            font-size: 1.6rem;
            display: flex;
            align-items: center;
            transition: transform 0.3s, color 0.3s;
        }
        .btn-icon:hover {
            color: var(--brand-pink);
            transform: scale(1.1);
        }

        .btn-nav {
            font-size: 0.85rem;
            color: white;
            font-weight: 700;
            border: 1px solid rgba(255,255,255,0.2);
            padding: 8px 18px;
            border-radius: 30px;
            transition: 0.3s;
            background: rgba(255,255,255,0.05);
            white-space: nowrap;
        }
        .btn-nav:hover { background: white; color: black; }

        /* --- 4. HERO SECTION --- */
        .hero {
            padding-top: 150px; 
            padding-bottom: 100px;
            min-height: 100vh;
            display: flex;
            align-items: flex-start;
            position: relative;
            contain: layout;
            overflow: visible; 
            z-index: 10; 
        }

        .hero-bg-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: 0;
            overflow: hidden; 
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(5,5,5,0.8), rgba(5,5,5,0.6));
            z-index: 1;
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            
            align-items: flex-start; 
            
            width: 100%;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            margin-top: 40px; 
        }

        .status-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 0, 127, 0.1);
            border: 1px solid var(--brand-pink);
            color: var(--brand-pink);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 25px;
            box-shadow: 0 0 10px rgba(255,0,127,0.1);
        }

        .hero h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.2rem;
            color: #e0e0e0;
            margin-bottom: 30px;
            max-width: 90%;
            text-shadow: 0 2px 4px rgba(0,0,0,0.8);
        }

        .cta-wrapper {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: flex-start;
        }

        .guarantee {
            font-size: 0.9rem;
            color: #ccc;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* --- VIDEO WRAPPER --- */
        .hero-visual { position: relative; }

        .video-wrapper {
            width: 100%;
            aspect-ratio: 16 / 9;
            background: #000;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 5;
            transition: transform 0.3s;
            transform: translateZ(0);
            backface-visibility: hidden;
            perspective: 1000px;
        }
        .video-wrapper:hover { 
            transform: scale(1.01); 
        }

        .glow-border {
            border: 2px solid var(--brand-pink);
            box-shadow: 0 0 30px rgba(255, 0, 127, 0.3);
        }

        .video-facade {
            position: relative;
            width: 100%;
            height: 100%;
            cursor: pointer;
            display: block; 
        }

        .facade-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            opacity: 0.8;
            transition: opacity 0.3s;
        }
        .video-facade:hover .facade-img { opacity: 0.6; }

        .play-trigger {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .video-facade:hover .play-trigger {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .play-button {
            width: 80px;
            height: 80px;
            background: var(--brand-pink);
            border-radius: 50%;
            border: none;
            color: white;
            font-size: 2.5rem;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            box-shadow: 0 0 0 0 rgba(255, 0, 127, 0.7);
            animation: pulse 2s infinite;
            pointer-events: none;
        }

        .video-label {
            color: white;
            font-weight: 800;
            letter-spacing: 3px;
            font-size: 1rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.9);
            pointer-events: none;
        }

        .plyr { width: 100%; height: 100%; border-radius: 20px; }

        /* --- SCROLL INDICATOR --- */
        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            width: 100%;
            left: 0;
            display: flex;
            justify-content: center;
            z-index: 15;
            animation: floatVertical 2s ease-in-out infinite 1.5s;
            opacity: 0;
            animation-fill-mode: forwards;
            animation-name: spinEntrance, floatVertical;
            animation-duration: 1s, 2s;
            animation-delay: 0.5s, 1.5s;
            animation-iteration-count: 1, infinite;
            margin-bottom: 2rem;
        }
        .scroll-arrow {
            color: var(--brand-pink);
            font-size: 2.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        .scroll-arrow:hover {
            color: white;
            filter: drop-shadow(0 0 10px var(--brand-pink));
        }

        @keyframes spinEntrance {
            0% { opacity: 0; transform: scale(0) rotate(-180deg); }
            100% { opacity: 1; transform: scale(1) rotate(0deg); }
        }
        @keyframes floatVertical {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(0, 15px); }
        }

        /* =========================================
           UPDATED SECTION: EVIDENCE GRID (New Chat)
           ========================================= */
        .chat-section {
            padding: 60px 0;
            background: linear-gradient(to bottom, var(--bg-dark), #0a0a0a);
            position: relative;
            z-index: 5;
            overflow: hidden; /* Evita que las animaciones causen scroll */
        }

        .evidence-grid {
            /* Usamos columnas estilo periódico para que se acomoden sin huecos */
            column-count: 2; 
            column-gap: 25px; /* Espacio entre la columna izquierda y derecha */
            
            max-width: 600px;
            margin: 40px auto 0;
            position: relative;
            /* Quitamos display: grid y align-items: start porque ya no los usamos */
        }

        /* Lógica de Masonry Manual (Stagger) */
        .stagger-down {
            margin-top: 60px; /* Empuja la 2da y 4ta tarjeta hacia abajo */
        }

        .evidence-card {
            background: #121212;
            border-radius: 20px;
            border: 1px solid rgba(255, 0, 127, 0.3);
            padding: 10px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.5);
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
            gap: 15px;
            position: relative;
            min-width: 280px;
            
            /* --- AGREGA ESTAS DOS LÍNEAS --- */
            break-inside: avoid; /* Evita que una tarjeta se parta a la mitad */
            margin-bottom: 25px; /* Crea el espacio vertical entre tarjetas */
        }

        /* Efecto Focus (Blur a los demás) */
        .evidence-grid:has(.evidence-card:hover) .evidence-card:not(:hover) {
            filter: blur(3px) opacity(0.6);
            transform: scale(0.98);
        }

        .evidence-card:hover {
            transform: scale(1.05) translateY(-10px);
            z-index: 10;
            border-color: var(--brand-pink);
            box-shadow: 0 0 30px rgba(255, 0, 127, 0.2);
        }

        .evidence-img-wrapper {
            width: 100%;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
        }

        .evidence-img-wrapper img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .evidence-tag {
            background: rgba(255, 0, 127, 0.1);
            color: var(--brand-pink);
            font-weight: 700;
            font-size: 0.9rem;
            padding: 10px 15px;
            border-radius: 50px;
            text-align: center;
            border: 1px solid rgba(255, 0, 127, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .evidence-tag.cyan {
            background: rgba(0, 242, 234, 0.1);
            color: var(--brand-cyan);
            border-color: rgba(0, 242, 234, 0.3);
        }

        /* Animaciones de Flotación para las Cards */
        .float-slow { animation: float 6s ease-in-out infinite; }
        .float-mid { animation: float 5s ease-in-out infinite 1s; }
        .float-fast { animation: float 4s ease-in-out infinite reverse; }

        /* CTA FINAL DE LA SECCIÓN */
        .community-cta {
            text-align: center;
            margin-top: 80px;
            padding: 0 20px;
        }
        .community-cta p {
            font-size: 1.1rem;
            color: #e0e0e0;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        .cta-question {
            font-size: 1.8rem;
            color: white;
            font-weight: 800;
            margin-top: 10px;
            text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
        }

        /* --- SECCIONES RESTANTES --- */
        .lifestyle { 
            padding-bottom: 50px; 
            padding-top: 1rem;
        }
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header h2 { font-size: 2.5rem; margin-bottom: 10px; }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-auto-rows: 250px;
            gap: 20px;
        }
        .bento-item {
            background: var(--bg-card);
            border-radius: 20px;
            padding: 30px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.05);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            background-size: cover;
            background-position: center;
            transition: all 0.4s ease;
            cursor: default;
        }

        .bento-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            border-color: rgba(255, 0, 127, 0.3);
            background-size: 110%;
        }
        .item-tall { grid-row: span 2; }
        .item-wide { grid-column: span 2; }

        .content-left { align-items: flex-start; text-align: left; }
        .content-left strong { 
            font-size: 3rem; line-height: 1; display: block; color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.8);
        }
        .content-left p { color: #ddd; text-shadow: 0 2px 5px rgba(0,0,0,0.8); }

        .social-proof { 
            padding: 0; 
            position: relative;
        }
        .parallax-bg {
            background-image: url('assets/noemi-inmersiva.webp');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        .section-overlay {
            background: rgba(0, 0, 0, 0.75); 
            padding-top: 80px;
            padding-bottom: 20px;
            width: 100%;
            height: 100%;
        }
        .quote-header h2 {
            font-size: 2.8rem;
            max-width: 800px;
            margin: 0 auto 20px auto;
            text-shadow: 0 4px 10px rgba(0,0,0,0.8);
        }
        .subtitle-white { color: #e0e0e0; }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .testi-card {
            background: rgba(18, 18, 18, 0.8); 
            backdrop-filter: blur(10px);
            padding: 30px;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: transform 0.3s ease, border-color 0.3s;
        }
        .testi-card:hover {
            transform: translateY(-5px);
            border-color: rgba(255,255,255,0.3);
        }
        .user-info {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            align-items: center;
        }
        .user-info h3 { font-size: 1.1rem; margin: 0; line-height: 1.2; }
        .avatar {
            width: 50px;
            height: 50px;
            background: #333;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            color: var(--brand-pink);
        }
        .proof-container {
            width: 100%;
            height: 350px;
            background: rgba(0,0,0,0.3);
            border-radius: 10px;
            margin-top: 15px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .proof-img-large { max-width: 100%; max-height: 100%; object-fit: contain; }
        .proof-img {
            width: 100%;
            border-radius: 10px;
            margin-top: 15px;
            opacity: 0.7;
            transition: opacity 0.3s;
        }
        .testi-card:hover .proof-img { opacity: 1; }

        .pricing-section {
            padding-top: 30px;
            padding-bottom: 50px;
            background: var(--bg-dark);
        }
        .pricing-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 50px;
            margin-top: 40px;
        }
        .price-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
            width: 300px;
            text-align: center;
            transition: all 0.4s ease;
            display: flex;
            flex-direction: column;
        }
        .price-card:hover {
            transform: translateY(-10px);
            border-color: var(--brand-pink);
            box-shadow: 0 15px 40px rgba(0,0,0,0.6);
        }
        .price-card h3 { font-size: 1.5rem; margin-bottom: 10px; }
        .price { font-size: 2.5rem; font-weight: 800; margin: 15px 0 5px 0; }
        .price small { font-size: 1rem; vertical-align: middle; }

        /* ESTILOS PRECIOS LOCALES */
        .local-prices {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 15px;
            font-weight: 400;
        }
        .local-prices span { display: inline-block; padding: 0 5px; }

        .features {
            text-align: left;
            margin: 20px 0;
            flex-grow: 1;
            font-size: 0.95rem;
        }
        .features li { margin-bottom: 12px; color: #ccc; }
        .features i { color: var(--brand-pink); margin-right: 8px; }

        .price-card.featured {
            background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
            border: 2px solid var(--brand-pink);
            transform: scale(1.05);
            position: relative;
            z-index: 2;
            box-shadow: 0 10px 40px rgba(255, 0, 127, 0.15);
        }
        .glow-border-anim { animation: glowPulse 3s infinite alternate; }
        @keyframes glowPulse {
            from { box-shadow: 0 0 20px rgba(255, 0, 127, 0.2); }
            to { box-shadow: 0 0 50px rgba(255, 0, 127, 0.5); }
        }
        .price-card.featured:hover { transform: scale(1.08) translateY(-5px); }
        .badge-best {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--brand-pink);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 800;
            white-space: nowrap;
        }
        .btn-outline {
            display: block;
            border: 1px solid rgba(255,255,255,0.3);
            color: white;
            padding: 12px;
            border-radius: 50px;
            text-decoration: none;
            transition: 0.3s;
        }
        .btn-outline:hover { background: white; color: black; }
        .full-width { width: 100%; justify-content: center; }
        .price-desc {
            font-size: 0.95rem;
            color: #e0e0e0;
            margin-bottom: 20px;
            font-style: italic;
            line-height: 1.4;
        }
        .price-note {
            font-size: 0.9rem;
            color: white;
            margin: 0 0 20px 0; 
            font-weight: 600;
            line-height: 1.3;
        }

        /* --- ESTILOS SECCIÓN FINANCIACIÓN (GLASSMORPHISM) --- */
        .financing-banner {
            width: 100%;
            max-width: 900px;
            margin: 60px auto 40px auto;
            padding: 30px;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }
        .finance-content h3 { font-size: 1.4rem; margin-bottom: 10px; color: white; }
        .finance-content p { color: #ccc; font-size: 0.95rem; margin: 0; }

        /* --- ESTILOS TRUST BAR (MEDIOS DE PAGO) --- */
        .trust-bar {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: center;
            gap: 40px;
            align-items: center;
            text-align: center;
            color: #888;
        }
        .trust-col { display: flex; flex-direction: column; gap: 5px; }
        .country-flag { font-weight: 700; color: white; font-size: 0.9rem; letter-spacing: 1px; }
        .trust-col p { font-size: 0.85rem; margin: 0; }
        .trust-divider { height: 40px; width: 1px; background: rgba(255,255,255,0.1); }

        /* --- SECCIÓN LIBRERÍA (EBOOKS) --- */
        .ebooks-section {
            padding: 20px 0 80px; /* Reducido espacio superior */
            background: #080808;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .ebooks-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .ebook-card {
            background: var(--bg-card);
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.05);
            overflow: hidden;
            transition: 0.3s;
            display: flex;
            flex-direction: column;
        }

        .ebook-card:hover {
            border-color: var(--brand-cyan);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 242, 234, 0.1);
        }

        .ebook-cover {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .ebook-info {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .ebook-info h4 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            line-height: 1.3;
            flex-grow: 1; 
        }

        .ebook-price {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--brand-cyan);
        }

        .ebook-local {
            font-size: 0.75rem;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .btn-ebook {
            display: block;
            text-align: center;
            border: 1px solid var(--brand-cyan);
            color: var(--brand-cyan);
            padding: 10px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.9rem;
            transition: 0.3s;
        }

        .btn-ebook:hover {
            background: var(--brand-cyan);
            color: #000;
            box-shadow: 0 0 15px rgba(0, 242, 234, 0.4);
        }

        footer {
            padding: 50px 0;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            font-size: 0.9rem;
            color: #e0e0e0; 
        }
        .credits a { color: var(--brand-pink); font-weight: 700; }

        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366; 
            color: white;         
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            z-index: 2500;
            border: 2px solid white;
            transition: 0.3s;
            animation: pulse 2s infinite;
        }
        .whatsapp-btn:hover { transform: scale(1.1); }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }
        .mobile-only { display: none; }

        /* --- RESPONSIVE (MÓVIL) --- */
        @media (max-width: 900px) {
            
            /* AJUSTES GENERALES MÓVIL */
            .nav-brand-text { display: none; }
            .nav-logo-img img { height: 55px; }
            .desktop-only { display: none !important; }
            .mobile-only { 
                display: flex !important; 
                margin-top: 40px;
                align-items: center;
            }
            .hero {
                min-height: auto; 
                padding-top: 120px; 
                padding-bottom: 130px; 
                align-items: flex-start;
                overflow: hidden; 
            }
            .hero-bg-img { object-position: 65% center; }

            /* Desactivar animaciones de entrada en Hero para carga rápida */
            .hero-text.fade-in-up, 
            .hero-visual.fade-in-up {
                animation: none !important;
                opacity: 1 !important;
                transform: none !important;
            }

            .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 20px; }
            .hero h1 { font-size: 2.8rem; }
            .hero p { margin: 0 auto 30px auto; }
            .scroll-indicator { bottom: 30px; }

            /* 1. Contenedor del Slider */
            .evidence-grid {
                display: flex;              
                flex-wrap: nowrap;          
                overflow-x: auto;           
                scroll-snap-type: x mandatory; 
                
                /* CAMBIO CLAVE: Quitamos gap aquí para usar márgenes en las tarjetas */
                gap: 0;                  
                
                padding: 10px 20px 40px 20px; 
                
                /* Reset de columnas y ancho */
                column-count: auto;         
                column-gap: 0;
                max-width: 100%;            
                margin-top: 20px;
                justify-content: flex-start;
                
                /* Suavizado */
                -webkit-overflow-scrolling: touch;
                scroll-behavior: smooth;
            }

            /* 2. Las Tarjetas */
            .evidence-card {
                flex: 0 0 auto;             
                width: 280px;               
                min-width: 280px;           
                
                scroll-snap-align: center;  
                
                /* --- AQUÍ ESTÁ EL FIX DE SEPARACIÓN --- */
                margin-right: 20px; /* Separación forzada a la derecha */
                margin-bottom: 0;   
                
                break-inside: auto;         

                /* Desactivar animaciones */
                animation: none !important; 
                transform: none !important; 
            }

            /* 3. Quitar el margen de la última tarjeta para que no deje un hueco extra */
            .evidence-card:last-child {
                margin-right: 0;
            }

            /* Resto de ajustes... */
            .stagger-down { margin-top: 0 !important; }
            
            .community-cta { margin-top: 40px; }
            .cta-question { font-size: 1.4rem; }

        /* --- BENTO GRID TRANSFORMADO EN SLIDER HORIZONTAL (Móvil) --- */
            .bento-grid {
                display: flex; /* Cambiamos Grid por Flex */
                overflow-x: auto; /* Habilita el scroll horizontal */
                scroll-snap-type: x mandatory; /* Activa el efecto "imán" al hacer scroll */
                gap: 15px; /* Espacio entre las tarjetas */
                padding: 0 5% 20px 5%; /* Padding lateral para que no se pegue a los bordes y espacio abajo */
                
                /* Trucos para suavidad y ocultar scrollbar */
                -webkit-overflow-scrolling: touch; /* Scroll nativo suave en iOS */
                scrollbar-width: none; /* Firefox */
            }
            /* Ocultar scrollbar en Chrome/Safari/Edge */
            .bento-grid::-webkit-scrollbar { display: none; }

            /* Ajuste de los items individuales */
            .bento-item, .item-tall, .item-wide {
                /* El truco del slider: */
                flex: 0 0 85%; /* Cada imagen ocupa el 85% del ancho de la pantalla */
                width: 85%;
                height: 400px !important; /* Altura fija para todas para que se vea uniforme */
                scroll-snap-align: center; /* Al soltar, la imagen se centra sola */
                
                margin-bottom: 0; /* Reseteo de márgenes */
                grid-column: auto !important; /* Anular propiedades grid de escritorio */
                grid-row: auto !important;    /* Anular propiedades grid de escritorio */
            }

            .social-proof.parallax-bg { background-image: none !important; background: #0a0a0a; }
            .section-overlay { padding-top: 0; background: none; }
            .quote-header {
                background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.9)), url('assets/noemi-inmersiva.webp');
                background-size: cover;
                background-position: top center;
                padding: 220px 20px; 
                margin: 50px -20px 40px -20px; 
                border-bottom: 1px solid rgba(255, 0, 127, 0.3);
            }
            .quote-header h2 { font-size: 2rem; }
            .pricing-section { padding-top: 30px; padding-bottom: 40px; }

            .financing-banner {
                flex-direction: column;
                text-align: center;
                margin-top: 20px;
                margin-bottom: 20px;
            }
            .trust-bar { flex-direction: column; gap: 20px; }
            .trust-divider { width: 80%; height: 1px; }
            
            /* SLIDERS HORIZONTALES (Ebooks, Testimonios, Pricing) */
            .ebooks-grid, .testimonials-grid, .pricing-grid {
                display: flex;
                overflow-x: auto;
                padding-bottom: 20px;
                scroll-snap-type: x mandatory;
                gap: 20px;
            }
            /* Fix específico para Pricing Grid alineación */
            .pricing-grid {
                flex-wrap: nowrap;
                justify-content: flex-start;
                padding-top: 50px; 
                padding-bottom: 50px;
                margin-top: 0;
            }

            .ebook-card { min-width: 240px; scroll-snap-align: center; }
            .testi-card { min-width: 300px; scroll-snap-align: center; flex: 0 0 auto; }
            .price-card { min-width: 300px; scroll-snap-align: center; flex: 0 0 auto; margin-bottom: 0; }

            .bento-item.card-landscape {
                /* 1. Reducimos altura para darle forma de "Banner" panorámico */
                height: 180px !important;     
                min-height: 180px !important;
                
                /* 2. Forzamos ancho máximo disponible */
                flex: 0 0 100% !important; 
                width: 100% !important;
                
                /* 3. CLAVE: Obligamos a la imagen a entrar exacta (sin recortes) */
                background-size: 100% 100% !important; 
                background-repeat: no-repeat !important;
                
                margin-right: 0 !important;
            }

            /* Ajustamos el texto para que no tape los números */
            .bento-item.card-landscape .bento-content {
                justify-content: flex-end; /* Texto abajo */
                padding-bottom: 15px;
            }
            
            .bento-item.card-landscape .bento-content h3 {
                font-size: 1rem;
                margin-bottom: 0;
                text-shadow: 0 2px 4px rgba(0,0,0,0.9);
            }
}

        /* --- FIX LAPTOP --- */
        @media (min-width: 901px) and (max-width: 1400px), (min-width: 901px) and (max-height: 800px) {
            .hero h1 { font-size: 2.8rem; margin-bottom: 15px; }
            .card-income-horiz { bottom: -140px; right: 200px; transform: scale(0.9); }
            /* FIX: ANCLAMOS ABAJO PARA EVITAR QUE SE SUBA */
            .card-income-vert { top: auto; bottom: -280px; right: -20px; transform: scale(0.9); }
            @media (max-height: 700px) {
                .scroll-indicator { display: none; }
            }
        }
        
        /* --- 5. VIDEO LOCK SYSTEM --- */
        .content-locked {
            position: relative;
            overflow: hidden; /* Evita que se salga el blur */
        }

        /* Filtro de bloqueo para el contenido interno */
        .content-locked > section {
            filter: blur(15px); 
            opacity: 0.5;
            pointer-events: none; /* Desactiva clicks */
            user-select: none;    /* Desactiva selección de texto */
            transition: all 0.8s ease;
        }

        /* Overlay con el mensaje */
        .lock-overlay {
            position: absolute;
            top: 200px; 
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: flex-start; 
            z-index: 50;
            transition: opacity 0.5s ease;
        }

        .lock-message {
            background: rgba(5, 5, 5, 0.95);
            border: 1px solid var(--brand-pink);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 0 40px rgba(255, 0, 127, 0.25);
            max-width: 400px;
            margin: 0 20px;
        }

        .lock-message .icon-lock {
            font-size: 3rem;
            color: var(--brand-pink);
            display: block;
            margin-bottom: 15px;
            animation: pulse 2s infinite;
        }

        .lock-message h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 10px;
            font-family: var(--font-main);
        }

        .lock-message p {
            color: #d0d0d0;
            font-size: 1rem;
        }

        /* Estado DESBLOQUEADO */
        .content-unlocked > section {
            filter: blur(0);
            opacity: 1;
            pointer-events: auto;
            user-select: auto;
        }

        .content-unlocked .lock-overlay {
            display: none;
        }

        /* --- 6. PRICE ANCHORING --- */
        .price-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 15px 0;
        }

        .old-price {
            font-size: 1rem;
            color: #666;
            text-decoration: line-through;
            font-weight: 400;
            margin-bottom: -5px;
        }

        .new-price {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.1;
            color: white;
        }

        .save-badge {
            background: var(--brand-pink);
            color: white;
            font-size: 0.7rem;
            font-weight: 800;
            padding: 2px 8px;
            border-radius: 4px;
            margin-left: 8px;
            vertical-align: middle;
            display: inline-block;
            transform: translateY(-5px);
        }

        /* --- 7. BARRA DE URGENCIA --- */
        .scarcity-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-top: 1px solid var(--brand-pink);
            padding: 15px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            z-index: 2000;
            transform: translateY(100%);
            transition: transform 0.5s ease-out;
            box-shadow: 0 -10px 30px rgba(0,0,0,0.5);
        }

        .scarcity-bar.visible {
            transform: translateY(0);
        }

        .scarcity-text {
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
        }

        .timer-box {
            font-family: monospace; 
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--brand-cyan);
            background: rgba(0, 242, 234, 0.1);
            padding: 5px 15px;
            border-radius: 8px;
            border: 1px solid rgba(0, 242, 234, 0.3);
        }

        .timer-box.urgent {
            color: #ff3b3b;
            border-color: #ff3b3b;
            background: rgba(255, 59, 59, 0.1);
            animation: 1s infinite pulse;
        }

        @media (max-width: 600px) {
            .scarcity-bar {
                flex-direction: column;
                gap: 5px;
                padding: 10px;
            }
            .scarcity-text { 
                font-size: 0.9rem; 
                text-align: center; 
            }
            .timer-box { 
                font-size: 1.2rem; 
                padding: 2px 10px; 
            }
            /* Mover botón de whatsapp para que no tape la barra */
            .whatsapp-btn { 
                bottom: 90px; 
            } 
        }

        /* --- 8. QUALIFICATION MATRIX --- */
        .matrix-section {
            padding: 60px 0;
            background: var(--bg-dark);
        }
        
        .matrix-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }

        .matrix-col {
            background: rgba(255,255,255,0.03);
            border-radius: 20px;
            padding: 30px;
            border: 1px solid rgba(255,255,255,0.05);
            transition: 0.3s;
        }

        .matrix-col.yes { border-color: rgba(0, 242, 234, 0.3); box-shadow: 0 0 20px rgba(0, 242, 234, 0.05); }
        .matrix-col.no { border-color: rgba(255, 59, 59, 0.3); box-shadow: 0 0 20px rgba(255, 59, 59, 0.05); }

        .matrix-title {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .matrix-yes { color: var(--brand-cyan); }
        .matrix-no { color: #ff3b3b; }

        .matrix-list li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
            color: #d0d0d0;
            font-size: 0.95rem;
        }

        .matrix-list.yes li::before {
            content: '✓';
            color: var(--brand-cyan);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .matrix-list.no li::before {
            content: '✕';
            color: #ff3b3b;
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .matrix-container { grid-template-columns: 1fr; }
        }

        /* --- 9. FAQ SECTION (NUEVO) --- */
        .faq-section {
            padding: 60px 0;
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: 0.3s;
        }

        .faq-item:hover { border-color: var(--brand-pink); }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.1rem;
            color: white;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 20px;
            color: #ccc;
            font-size: 0.95rem;
        }

        .faq-item.active .faq-answer {
            max-height: 200px; 
            padding-bottom: 20px;
        }

        .faq-icon {
            transition: transform 0.3s;
            color: var(--brand-pink);
        }

        .faq-item.active .faq-icon { transform: rotate(45deg); }

        /* --- 10. EXIT INTENT POPUP (NUEVO) --- */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(5px);
            z-index: 3000;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .popup-overlay.visible {
            opacity: 1;
            pointer-events: auto;
        }

        .popup-card {
            background: #121212;
            border: 2px solid var(--brand-pink);
            border-radius: 20px;
            padding: 40px;
            max-width: 500px;
            text-align: center;
            position: relative;
            transform: scale(0.8);
            transition: transform 0.3s;
            box-shadow: 0 0 50px rgba(255, 0, 127, 0.3);
        }

        .popup-overlay.visible .popup-card { transform: scale(1); }

        .close-popup {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            color: #666;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .popup-title {
            font-size: 2rem;
            margin-bottom: 15px;
            line-height: 1.1;
        }

        /* --- FIX: RENDIMIENTO VIDEO PANTALLA COMPLETA --- */
        /* Cuando Plyr activa pantalla completa, apagamos los efectos pesados del contenedor */
        .plyr--fullscreen-active .video-wrapper,
        :fullscreen .video-wrapper,
        :-webkit-full-screen .video-wrapper {
            transform: none !important;       /* Apaga la aceleración 3D */
            box-shadow: none !important;      /* Quita la sombra pesada */
            border: none !important;          /* Quita el borde neón */
            border-radius: 0 !important;      /* Quita el redondeado */
            padding: 0 !important;
            background: black !important;
        }

        /* --- FIX FINAL: ZOOM PARA LEER NÚMEROS --- */
        .bento-item[style*="proof_bank.webp"] {
            /* 1. Hacemos ZOOM a la imagen (aumentamos su tamaño real) */
            background-size: 140% auto !important; 
            
            /* 2. Ajustamos la posición para centrar los números */
            /* Juega con estos valores: 'center 30%' significa:
            - Horizontal: Centrado
            - Vertical: Al 30% desde arriba (sube o baja este % hasta encuadrar los números) */
            background-position: center 70% !important;

            /* 3. Mantenemos la nitidez */
            image-rendering: -webkit-optimize-contrast;
            filter: contrast(110%);
        }

        /* =========================================
   NUEVO: SMART PLAYER & SUMMARY (V2)
   ========================================= */

/* 1. Smart Player UI */
.smart-player-ui {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-top: none;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: -5px; /* Pegado al video */
    position: relative;
    z-index: 4;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

#btn-play-pause {
    background: none; border: none; color: white;
    font-size: 1.5rem; cursor: pointer; display: flex;
}

.progress-container {
    flex-grow: 1; display: flex; flex-direction: column; gap: 5px;
}

/* Custom Range Input (Barra Rosa) */
input[type=range] {
    -webkit-appearance: none; /* Safari y Chrome antiguos */
    appearance: none;         /* Estándar moderno (Firefox, Edge, Chrome actual) */
    width: 100%; 
    background: transparent;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none; height: 18px; width: 18px;
    border-radius: 50%; background: white; cursor: pointer;
    margin-top: -4px; box-shadow: 0 0 10px var(--brand-pink);
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%; height: 4px; cursor: pointer;
    background: linear-gradient(90deg, var(--brand-pink) var(--progress, 0%), #333 var(--progress, 0%));
    border-radius: 2px;
}

.time-display {
    font-size: 0.75rem; color: #aaa; font-family: monospace; text-align: right;
}

/* 2. Just-in-Time Countdown */
.unlock-wrapper {
    text-align: center; margin-top: 15px;
    font-size: 0.9rem; color: #ccc;
    background: rgba(0, 242, 234, 0.05);
    border: 1px solid rgba(0, 242, 234, 0.2);
    padding: 8px; border-radius: 50px;
    display: inline-flex; align-items: center; gap: 10px;
    justify-content: center; width: 100%;
}

/* 3. Executive Summary (Accordion) */
.executive-summary-wrapper {
    margin-top: 20px; width: 100%;
}

.btn-ghost-summary {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #d0d0d0;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    transition: all 0.3s;
}
.btn-ghost-summary:hover {
    border-color: var(--brand-cyan);
    color: white;
    background: rgba(0, 242, 234, 0.05);
}

.summary-content {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: #111;
    border-radius: 12px;
    margin-top: 10px;
}
.summary-content.open {
    max-height: 600px; /* Suficiente para el contenido */
    border: 1px solid rgba(255,255,255,0.1);
    padding: 20px;
}

.summary-card {
    margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 15px;
}
.summary-card:last-of-type { border-bottom: none; }
.summary-card h4 { font-size: 1rem; color: white; margin-bottom: 5px; display: flex; align-items: center; gap: 8px; }
.summary-card p { font-size: 0.9rem; color: #aaa; line-height: 1.4; margin-left: 28px; }

.mt-15 { margin-top: 15px; }

/* Clase dinámica para cuando el video está activo */
.video-wrapper.playing-mode {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none; /* Opcional: quita la sombra inferior para mejor fusión */
}

/* Ajuste opcional: Hacer el botón play un pelín más chico en móvil para que no se vea tan apretado */
@media (max-width: 600px) {
    .play-button { width: 60px; height: 60px; font-size: 2rem; }
    .video-label { font-size: 0.8rem; letter-spacing: 2px; }
}
