
        /* --- 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;
            padding-top: 6rem;
        }
        #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.3;
            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;
        }

        /* --- CARRUSEL DE RESEÑAS 3x3 --- */
        .reviews-section {
            padding: 5rem 0;
            margin: 3rem 0;
            background: rgba(26, 11, 46, 0.3);
            border-radius: 25px;
            position: relative;
        }

        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .google-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 600;
        }

        .google-badge i {
            color: #4285F4;
            font-size: 1.2rem;
        }

        .rating-overview {
            text-align: center;
            margin-bottom: 3rem;
        }

        .rating-main {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        .rating-number {
            font-size: 4rem;
            font-weight: 800;
            color: var(--matrix-green);
            text-shadow: 0 0 20px rgba(0, 255, 157, 0.5);
        }

        .rating-stars {
            color: #FFD700;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .rating-count {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            font-weight: 500;
        }

        /* CARRUSEL 3x3 */
        .reviews-carousel {
            position: relative;
            overflow: hidden;
            margin: 0 auto;
            max-width: 1100px;
        }

        .reviews-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            gap: 1.5rem;
        }

        .review-card {
            flex: 0 0 calc(33.333% - 1rem);
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 15px;
            padding: 2rem;
            backdrop-filter: blur(8px);
            transition: all 0.3s ease;
            position: relative;
            min-height: 280px;
            display: flex;
            flex-direction: column;
        }

        .review-card:hover {
            border-color: var(--neon-blue);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 243, 255, 0.2);
        }

        .review-verified {
            position: absolute;
            top: 1rem;
            right: 1rem;
            color: var(--matrix-green);
            font-size: 0.75rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.2rem;
        }

        .review-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--deep-space);
            margin-right: 1rem;
            font-size: 1rem;
            box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
        }

        .reviewer-info h4 {
            color: var(--stardust);
            margin-bottom: 0.2rem;
            font-size: 1rem;
            font-weight: 700;
        }

        .review-date {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.75rem;
            font-weight: 400;
        }

        .review-stars {
            color: #FFD700;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .review-text {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            font-size: 0.9rem;
            font-style: italic;
            flex-grow: 1;
        }

        /* CONTROLES DEL CARRUSEL */
        .carousel-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        .carousel-nav {
            display: flex;
            gap: 0.8rem;
            order: 2;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: var(--neon-blue);
            transform: scale(1.3);
            box-shadow: 0 0 10px var(--neon-blue);
        }

        .carousel-arrow {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            color: var(--stardust);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(8px);
            font-size: 1.2rem;
        }

        .carousel-arrow:hover {
            background: var(--neon-blue);
            color: var(--deep-space);
            box-shadow: 0 0 20px rgba(0, 243, 255, 0.8);
            transform: scale(1.1);
        }

        .carousel-arrow.prev {
            order: 1;
        }

        .carousel-arrow.next {
            order: 3;
        }

        .review-counter {
            text-align: center;
            margin-top: 1.5rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
            font-weight: 500;
        }

        .google-link {
            text-align: center;
            margin-top: 3rem;
        }

        .google-link a {
            color: var(--neon-blue);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.8rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        .google-link a:hover {
            color: var(--matrix-green);
            border-color: var(--matrix-green);
            transform: translateY(-2px);
        }

        /* --- SELECTOR DE MONEDA ORIGINAL CON TÍTULO MEJORADO --- */
        .currency-section {
            text-align: center;
            margin: 3rem 0;
        }

        .currency-header {
            margin-bottom: 1.5rem;
        }

        .currency-title {
            font-family: 'Poiret One', sans-serif;
            font-size: 1.8rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
            background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }

        .currency-subtitle {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0.5rem;
        }

        .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.8rem 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);
        }

        .currency-toggle button:hover:not(.active) {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        /* --- PLANES Y PRECIOS CON BADGE MEJORADO --- */
        .pricing-section {
            padding: 4rem 0;
            position: relative;
        }

        .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.1;
            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;
        }

        /* --- FAQ SECTION --- */
        .faq-section {
            padding: 3rem 0;
            max-width: 900px;
            margin: 4rem auto 3rem; 
        }
        
        .faq-section .section-subtitle {
            margin-bottom: 3rem;
            font-weight: 600;
            color: var(--neon-blue);
            text-align: center;
        }

        .accordion-item {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            margin-bottom: 1rem;
            overflow: hidden;
            backdrop-filter: blur(8px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: border-color 0.3s ease;
        }

        .accordion-item:hover {
            border-color: var(--neon-blue);
        }

        .accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 1.5rem;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--stardust);
            transition: color 0.3s ease;
        }

        .accordion-header:hover {
            color: var(--neon-blue);
        }

        .accordion-header i {
            font-size: 1rem;
            color: var(--matrix-green);
            transition: transform 0.3s ease;
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out, padding 0.4s ease-out;
            padding: 0 1.5rem;
        }

        .accordion-content.active {
            max-height: 500px; 
            padding: 0.5rem 1.5rem 1.5rem;
        }

        .accordion-content p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.7);
        }

        .accordion-header[aria-expanded="true"] i {
             transform: rotate(180deg);
        }

        /* --- HELP SECTION --- */
        .help-section {
            text-align: center;
            padding: 2.5rem 2rem;
            background: var(--glass-bg);
            border-radius: 15px;
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(var(--blur-amount));
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
            margin-top: 3rem;
        }

        .help-section p {
            margin-bottom: 0.5rem;
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
        }
        .help-section p:last-of-type {
            margin-bottom: 1.5rem;
            color: var(--matrix-green);
            font-weight: 600;
        }

        .help-section a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.8rem;
            color: var(--deep-space);
            background: linear-gradient(45deg, var(--matrix-green), #00e08c);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 800;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            z-index: 5;
            box-shadow: 0 0 20px rgba(0, 255, 157, 0.9);
            min-height: 60px;
            overflow: hidden;
        }
        
        .help-section a:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 30px rgba(0, 255, 157, 1);
        }

        .help-section a::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 255, 255, 0.3),
                transparent
            );
            transition: left 0.5s;
        }

        .help-section a:hover::after {
            left: 100%;
        }
        
        .help-section a i {
            font-size: 1.2rem;
            color: inherit;
        }
        
        @keyframes pulsePing {
            0% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(0, 255, 157, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 255, 157, 0); }
        }

        .help-section a {
            animation: pulsePing 2s infinite;
        }

        /* --- RESPONSIVE MEJORADO CON ACORDEÓN INTUITIVO --- */
        @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;
            }

            /* ETIQUETA "TOCAR PARA VER DETALLES" - SOLO VISIBLE EN MÓVIL */
            .plan-header-top .tap-hint {
                display: block;
                position: absolute;
                bottom: 0.5rem;
                left: 0;
                right: 0;
                text-align: center;
                font-size: 0.75rem;
                color: var(--neon-blue);
                opacity: 0.8;
                font-weight: 600;
                letter-spacing: 0.5px;
                transition: opacity 0.3s ease;
            }

            /* SISTEMA DE ACORDEÓN PARA PLANES EN MÓVIL - MEJORADO CON UX INTUITIVO */
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            /* Encabezado con indicadores claros */
            .plan-card {
                margin-bottom: 1rem;
                transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                overflow: hidden;
                position: relative;
            }
            
            /* Indicador de desplegable en el header */
            .plan-card .plan-header-top {
                cursor: pointer;
                position: relative;
                padding: 2rem 1.5rem 1rem;
                padding-right: 4rem;
                transition: all 0.3s ease;
                user-select: none;
                border-bottom: 2px solid transparent;
            }
            
            /* Flecha animada grande y visible */
            .plan-card .plan-header-top::after {
                content: '\f078';
                font-family: 'Font Awesome 6 Free';
                font-weight: 900;
                position: absolute;
                right: 1.5rem;
                top: 50%;
                transform: translateY(-50%);
                color: var(--neon-blue);
                font-size: 1.5rem;
                transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: rgba(0, 243, 255, 0.1);
                border-radius: 50%;
                border: 2px solid var(--neon-blue);
                box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
            }
            
            .plan-card.expanded .plan-header-top::after {
                transform: translateY(-50%) rotate(180deg);
                background: var(--neon-blue);
                color: var(--deep-space);
                box-shadow: 0 0 20px rgba(0, 243, 255, 0.8);
            }
            
            .plan-card.expanded .plan-header-top .tap-hint {
                opacity: 0;
            }
            
            /* Efecto de borde al expandir */
            .plan-card.expanded .plan-header-top {
                border-bottom-color: var(--neon-blue);
                background: rgba(0, 243, 255, 0.05);
            }
            
            /* Contenido con animación suave */
            .plan-card .plan-body {
                max-height: 0;
                overflow: hidden;
                padding: 0 1.5rem;
                transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                            padding 0.5s ease;
                opacity: 0;
                transform: translateY(-10px);
            }
            
            .plan-card.expanded .plan-body {
                max-height: 2000px;
                padding: 0 1.5rem 2rem;
                opacity: 1;
                transform: translateY(0);
            }
            
            /* Botón CTA con animación */
            .plan-card .cta-plan {
                opacity: 0;
                transform: translateY(20px) scale(0.95);
                transition: opacity 0.5s ease 0.3s, 
                            transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
                position: relative;
                z-index: 2;
            }
            
            .plan-card.expanded .cta-plan {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
            
            /* Efecto de sombra al expandir */
            .plan-card.expanded {
                box-shadow: 0 15px 35px rgba(0, 243, 255, 0.2);
                border-color: var(--neon-blue);
                transform: translateY(-5px);
            }
            
            /* Deshabilitar hover en móvil para planes */
            .plan-card:hover {
                transform: none;
                box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
                border-color: var(--glass-border);
            }
            
            .plan-card.expanded:hover {
                transform: translateY(-5px);
                box-shadow: 0 15px 35px rgba(0, 243, 255, 0.2);
            }
            
            /* Animación de pulso sutil para indicar interactividad */
            @keyframes subtlePulse {
                0% { box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.3); }
                70% { box-shadow: 0 0 0 8px rgba(0, 243, 255, 0); }
                100% { box-shadow: 0 0 0 0 rgba(0, 243, 255, 0); }
            }
            
            .plan-card:not(.expanded) {
                animation: subtlePulse 3s infinite;
            }
            
            /* Badge adaptado */
            .discount-badge {
                padding: 0.6rem 1rem;
                font-size: 0.75rem;
            }
            
            /* NOTA DE INSTRUCCIÓN PARA EL USUARIO */
            .mobile-accordion-hint {
                text-align: center;
                margin-bottom: 2rem;
                padding: 1rem;
                background: rgba(0, 243, 255, 0.1);
                border-radius: 15px;
                border: 1px solid var(--neon-blue);
                animation: fadeInUp 0.5s ease;
            }
            
            .mobile-accordion-hint p {
                color: var(--neon-blue);
                font-weight: 600;
                font-size: 0.9rem;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 0.5rem;
                margin: 0;
            }
            
            .mobile-accordion-hint i {
                font-size: 1.2rem;
                animation: bounce 2s infinite;
            }
            
            @keyframes bounce {
                0%, 100% { transform: translateY(0); }
                50% { transform: translateY(-5px); }
            }
            
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(10px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            
            /* Ajustes generales */
            .usp-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .rating-main {
                flex-direction: column;
                gap: 1rem;
            }
            
            .rating-number {
                font-size: 3rem;
            }
            
            /* Iconos USP */
            .usp-item {
                flex-direction: column !important;
                text-align: center !important;
                align-items: center !important;
                padding: 2rem 1.5rem;
            }
            
            .usp-icon-wrapper {
                margin-bottom: 1.5rem !important;
                margin-right: 0 !important;
                flex-shrink: 0;
                width: 80px;
                height: 80px;
                font-size: 2.5rem;
            }
            
            .usp-text h3 {
                font-size: 1.3rem;
                margin-bottom: 0.8rem;
            }
            
            .usp-text p {
                font-size: 0.95rem;
                line-height: 1.5;
            }
            
            .review-card {
                flex: 0 0 100%;
                padding: 1.5rem;
            }
            
            .carousel-controls {
                gap: 1.5rem;
            }
            
            .carousel-arrow {
                width: 45px;
                height: 45px;
            }
            
            /* Botones más pequeños en móvil */
            .cta-plan {
                font-size: 0.85rem !important;
                padding: 0.9rem 1.2rem !important;
                min-height: 45px !important;
                letter-spacing: 0.5px;
            }
            
            .cta-hero {
                font-size: 1rem !important;
                padding: 1rem 2rem !important;
                min-height: 55px !important;
            }
            
            .help-section a {
                font-size: 0.9rem !important;
                padding: 0.9rem 2rem !important;
                min-height: 50px !important;
            }
            
            /* Ajustes adicionales */
            .plan-card {
                margin-bottom: 1.5rem;
            }
            
            .discount-badge {
                font-size: 0.75rem;
                padding: 0.6rem 1rem;
            }
            
            .features-list li {
                font-size: 0.9rem;
                margin-bottom: 0.6rem;
            }
            
            /* Selector de moneda responsive */
            .currency-title {
                font-size: 1.5rem;
            }
            
            .currency-subtitle {
                font-size: 0.9rem;
            }
            
            .currency-toggle {
                width: 90%;
                justify-content: center;
            }
            
            .currency-toggle button {
                flex: 1;
                padding: 0.7rem 1rem;
                font-size: 0.9rem;
            }
        }

        /* Ajustes específicos para pantallas muy pequeñas */
        @media (max-width: 480px) {
            .usp-icon-wrapper {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }
            
            .cta-plan {
                font-size: 0.8rem !important;
                padding: 0.8rem 1rem !important;
            }
            
            .cta-hero {
                font-size: 0.9rem !important;
                padding: 0.9rem 1.5rem !important;
            }
            
            /* Flecha más pequeña en móvil muy pequeño */
            .plan-card .plan-header-top::after {
                width: 35px;
                height: 35px;
                font-size: 1.2rem;
            }
            
            .plan-header-top .tap-hint {
                font-size: 0.7rem;
            }
            
            .currency-toggle {
                flex-direction: column;
                width: 100%;
                gap: 5px;
                padding: 8px;
            }
            
            .currency-toggle button {
                width: 100%;
                padding: 0.8rem;
            }
        }

        /* ESTILOS PARA PC - OCULTAR ETIQUETA "TOCAR PARA VER DETALLES" */
        @media (min-width: 769px) {
            .plan-header-top .tap-hint {
                display: none !important;
            }
            
            .mobile-accordion-hint {
                display: none !important;
            }
            
            /* En PC, todos los planes están expandidos por defecto */
            .plan-card .plan-body {
                max-height: none !important;
                opacity: 1 !important;
                transform: none !important;
            }
            
            .plan-card .plan-header-top::after {
                display: none;
            }
            
            .plan-card .plan-header-top {
                cursor: default;
                padding: 2.5rem 1.5rem 1rem !important;
                padding-right: 1.5rem !important;
            }
            
            .plan-card .cta-plan {
                opacity: 1 !important;
                transform: none !important;
            }
        }
    