
        /* --- VARIABLES Y RESET CSS --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', 'Segoe UI', sans-serif;
        }

        :root {
            --deep-space: #0a0a0f;
            --cosmic-purple: #1a0b2e;
            --neon-blue: #00f3ff;
            --neon-purple: #b967ff;
            --matrix-green: #00ff9d;
            --void: #000000;
            --stardust: rgba(255, 255, 255, 0.9);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.15);
            --blur-amount: 15px;
            --border-radius-card: 20px;
        }

        body {
            background: var(--deep-space);
            color: var(--stardust);
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        /* --- ESTRUCTURA PRINCIPAL Y FONDO DE PARTÍCULAS --- */
        #particles-js {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .container {
            padding: 4rem 3rem;
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* --- HERO SECTION MEJORADA --- */
        .hero-section {
            text-align: center;
            padding: 2rem 0 4rem;
        }

        .hero-badge {
            background: rgba(0, 255, 157, 0.1);
            border: 1px solid var(--matrix-green);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-size: 0.9rem;
            color: var(--matrix-green);
            width: fit-content;
            margin: 0 auto 1.5rem;
            backdrop-filter: blur(10px);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            box-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
        }

        .section-title {
            font-family: 'Poiret One', sans-serif; 
            font-size: 3.5rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
            text-align: center;
            line-height: 1.28;
            padding-block: 0.05em 0.15em;
            overflow: visible;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--matrix-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            font-weight: 400;
        }

        .cta-hero {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            background: linear-gradient(45deg, var(--matrix-green), #00e08c);
            color: var(--deep-space);
            padding: 1.2rem 3rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 0 25px rgba(0, 255, 157, 0.7);
            margin-bottom: 1rem;
            position: relative;
            overflow: hidden;
            min-height: 65px;
        }

        .cta-hero:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 35px rgba(0, 255, 157, 1);
        }

        @keyframes pulseHero {
            0% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(0, 255, 157, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0); }
        }

        .cta-hero {
            animation: pulseHero 2s infinite;
        }

        .hero-note {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            font-weight: 400;
        }

        /* --- USPs CON TEXTO PROFESIONAL --- */
        .usp-container {
            max-width: 1000px;
            margin: 0 auto 4rem;
            padding: 0 1rem;
        }
        
        .usp-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .usp-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 2.5rem 2rem;
            border-bottom: none; 
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            transition: border-color 0.3s ease, transform 0.3s ease;
        }
        
        .usp-item:hover {
            border-color: var(--neon-blue);
            transform: translateY(-5px);
        }

        .usp-icon-wrapper {
            flex-shrink: 0;
            width: 70px;
            height: 70px; 
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .usp-item:nth-child(1) .usp-icon-wrapper { 
            color: var(--neon-blue); 
            text-shadow: 0 0 15px var(--neon-blue); 
            border-color: var(--neon-blue);
        }
        .usp-item:nth-child(2) .usp-icon-wrapper { 
            color: var(--neon-purple); 
            text-shadow: 0 0 15px var(--neon-purple); 
            border-color: var(--neon-purple);
        }
        .usp-item:nth-child(3) .usp-icon-wrapper { 
            color: var(--matrix-green); 
            text-shadow: 0 0 15px var(--matrix-green); 
            border-color: var(--matrix-green);
        }

        .usp-text h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
            color: var(--stardust);
            letter-spacing: 0.5px;
        }

        .usp-text p {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-weight: 400;
        }
        /* Reseñas Google → assets/css/components/google-reviews.css */
        /* --- SELECTOR DE MONEDA --- */
        .currency-section {
            text-align: center;
            margin: 3rem 0;
        }

        .currency-toggle {
            display: flex;
            width: fit-content;
            margin: 0 auto;
            background: var(--glass-bg);
            border-radius: 50px;
            padding: 5px;
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(8px);
        }

        .currency-toggle button {
            background: transparent;
            border: none;
            color: var(--stardust);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .currency-toggle button.active {
            background: var(--neon-blue);
            color: var(--deep-space);
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.8);
        }

        /* --- PLANES Y PRECIOS CON BADGE MEJORADO --- */
        .pricing-section {
            padding: 4rem 0;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .plan-card {
            background: var(--glass-bg);
            border-radius: var(--border-radius-card);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(var(--blur-amount));
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: hidden; 
            z-index: 10;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
            transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
        }

        .plan-card:hover {
            transform: translateY(-10px); 
            box-shadow: 0 15px 45px 0 rgba(0, 243, 255, 0.25);
            border-color: var(--neon-blue);
        }

        .plan-card.featured {
            background: rgba(26, 11, 46, 0.5);
            border: 2px solid var(--neon-blue);
            box-shadow: 0 8px 32px 0 rgba(0, 243, 255, 0.4);
        }
        
        .plan-card.custom {
            border: 2px solid var(--matrix-green);
            background: rgba(0, 255, 157, 0.05);
        }
        
        .plan-header-top {
            padding: 2.5rem 1.5rem 1rem;
            text-align: center;
            position: relative;
        }

        /* BADGE DE DESCUENTO MEJORADO */
        .discount-badge {
            position: absolute;
            top: 0;
            right: 0;
            background: linear-gradient(135deg, var(--matrix-green), #00e08c);
            color: var(--deep-space);
            padding: 0.8rem 1.2rem;
            border-radius: 0 20px 0 20px;
            font-weight: 900;
            font-size: 0.85rem;
            box-shadow: 0 0 20px rgba(0, 255, 157, 0.6);
            z-index: 11;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .discount-badge::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--matrix-green), var(--neon-blue));
            border-radius: inherit;
            z-index: -1;
            opacity: 0.7;
            filter: blur(5px);
        }

        .plan-header-top h3 {
            font-family: 'Poiret One', sans-serif;
            font-size: 1.8rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
            line-height: 1.28;
            padding-block: 0.05em 0.15em;
            overflow: visible;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple), var(--matrix-green));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
            text-shadow: 0 0 8px rgba(0, 243, 255, 0.5); 
        }

        .plan-header-top p {
            font-size: 0.9rem;
            color: var(--matrix-green);
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: 0.5px;
        }

        .price-area {
            position: relative;
            padding: 1.5rem 1rem;
            border-top: 1px solid var(--glass-border);
            border-bottom: 1px solid var(--glass-border);
            background: linear-gradient(90deg, transparent 5%, rgba(0, 243, 255, 0.1) 50%, transparent 95%);
            margin: 1rem 0;
            text-align: center;
            display: flex; 
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .price-original {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: line-through;
            margin-bottom: 0.3rem;
            font-weight: 500;
        }

        .price-area .price {
            font-family: 'Inter', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--stardust);
            text-shadow: none;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .price-saving {
            font-size: 0.8rem;
            color: var(--matrix-green);
            font-weight: 600;
            background: rgba(0, 255, 157, 0.1);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            margin-top: 0.5rem;
        }

        .plan-body {
            padding: 0 1.5rem 2rem; 
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
            flex-grow: 1;
        }
        
        .features-list .group-title {
            color: var(--neon-purple);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 1px;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
            padding-bottom: 5px;
            border-bottom: 1px dotted rgba(185, 103, 255, 0.3);
        }

        .features-list li {
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
            font-weight: 400; 
            color: var(--stardust);
            line-height: 1.4;
            padding-left: 0.5rem;
        }

        .features-list li::before {
            content: '✓';
            color: var(--matrix-green);
            font-weight: bold;
            margin-right: 8px;
            font-size: 1rem;
        }

        .cta-plan {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            gap: 0.8rem;
            padding: 1rem 1.5rem;
            font-weight: 700;
            text-transform: uppercase;
            border: none;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            margin-top: auto;
            border-radius: 50px;
            text-decoration: none;
            cursor: pointer;
            font-size: 0.95rem;
            position: relative;
            overflow: hidden;
            min-height: 50px;
            text-align: center;
        }

        .cta-plan.whatsapp-primary {
            background: linear-gradient(45deg, var(--matrix-green), #00e08c);
            color: var(--deep-space);
            box-shadow: 0 0 15px rgba(0, 255, 157, 0.6);
        }
        
        .cta-plan.whatsapp-secondary {
            background: linear-gradient(45deg, var(--neon-purple), #9a4dff);
            color: white;
            box-shadow: 0 0 15px rgba(185, 103, 255, 0.6);
        }

        .cta-plan.whatsapp-custom {
            background: linear-gradient(45deg, var(--neon-blue), #00c3ff);
            color: var(--deep-space);
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.6);
        }

        .cta-plan:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 25px rgba(0, 255, 157, 0.9);
        }

        /* --- CTA FINAL --- */
        .final-cta {
            text-align: center;
            padding: 4rem 2rem;
            background: var(--glass-bg);
            border-radius: 25px;
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(var(--blur-amount));
            margin-top: 3rem;
        }

        .final-cta h2 {
            font-family: 'Poiret One', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--matrix-green), var(--neon-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .final-cta p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            font-weight: 400;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 1200px) {
            .review-card {
                flex: 0 0 calc(50% - 1rem);
            }
        }

        @media (max-width: 968px) {
            .usp-grid,
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .section-title {
                font-size: 2.8rem;
            }
            
            .review-card {
                flex: 0 0 calc(50% - 1rem);
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 2rem 1rem;
            }

            .usp-grid,
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            .usp-item {
                flex-direction: row;
                text-align: left;
                align-items: flex-start;
            }
            
            .usp-icon-wrapper {
                margin-bottom: 0;
                margin-right: 1.5rem;
                flex-shrink: 0;
            }
            
            .review-card {
                flex: 0 0 100%;
                padding: 1.5rem;
            }
            
            .carousel-controls {
                gap: 1.5rem;
            }
            
            .carousel-arrow {
                width: 45px;
                height: 45px;
            }
        }
    