
        /* 🚀 SCROLL LIBRE: Retornamos al comportamiento web natural y fluido */
        html, body { 
            min-height: 100vh; /* Ocupa al menos el alto de la pantalla */
            margin: 0; 
            padding: 0; 
            background-color: #f8fafc; 
            font-family: 'Inter', sans-serif; 
            color: #1e293b;
            display: flex;
            flex-direction: column; /* Permite empujar el footer al fondo de forma limpia */
            /* 🛡️ BLINDAJE ANTIDESPLAZAMIENTO: Evita que cualquier elemento desplace la página a la izquierda en móviles */
            overflow-x: hidden; 
            width: 100%;
        }

        /* Las secciones vuelven a respirar con márgenes y acolchados premium */
        .spa-section { 
            display: none; 
            flex: 1; /* Absorbe el espacio para que el footer se quede abajo si hay poco texto */
            width: 100%;
            max-width: 1200px; 
            margin: 0 auto; 
            padding: 80px 20px; /* Volvemos al espaciado elegante original */
            box-sizing: border-box;
        }
        /* Al activarse se muestra como un bloque fluido normal */
        .spa-section.active { 
            display: block; 
        }
        
        /* Barra de navegación moderna */
        nav { background: white; padding: 20px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 1px 3px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
        .logo { font-weight: 800; font-size: 1.3rem; color: #007bff; text-decoration: none; }
        .nav-links a { margin-left: 20px; text-decoration: none; color: #64748b; font-weight: 500; transition: color 0.2s; }
        .nav-links a:hover, .nav-links a.active { color: #007bff; }

        .pricing-toggle { display: flex; justify-content: center; align-items: center; gap: 15px; margin-bottom: 40px; }
        .toggle-btn { background: #e2e8f0; border: none; padding: 10px 20px; font-weight: 600; border-radius: 20px; cursor: pointer; transition: all 0.2s; color: #475569; }
        .toggle-btn.active { background: #007bff; color: white; box-shadow: 0 4px 6px rgba(0,123,255,0.2); }
        
        /* 📦 ESCRITORIO PANORÁMICO EXPANDIDO AL 95% */
        #view-planes.spa-section { 
            max-width: 95% !important; /* Fuerza el ajuste al 95% del ancho de cualquier monitor */
            width: 95%;
        }
        
        .pricing-tabs { display: none; } /* Oculto por defecto en computadoras */

        .pricing-grid { 
            display: grid; 
            grid-template-columns: repeat(4, 1fr); 
            gap: 24px; 
            margin-top: 15px; 
        }

        .price-card { background: white; border: 1px solid #e2e8f0; border-radius: 16px; padding: 35px 25px; position: relative; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; text-align: left; }
        .price-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
        
        /* ✨ Resaltador automático para el Plan Destacado */
        .price-card.featured { border: 2px solid #007bff; box-shadow: 0 10px 25px rgba(0,123,255,0.1); }
        .plan-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: #007bff; color: white; font-size: 0.75rem; font-weight: 800; padding: 6px 16px; border-radius: 20px; letter-spacing: 0.5px; }
        
        .price-card h3 { margin: 0 0 10px 0; font-size: 1.5rem; color: #0f172a; }
        .price-card .desc { font-size: 0.9rem; color: #64748b; margin-bottom: 25px; min-height: 45px; }
        
        /* Conmutador dinámico de precios visuales */
        .price-box { font-size: 2.5rem; font-weight: 800; color: #0f172a; margin-bottom: 25px; }
        .price-box span { font-size: 1rem; font-weight: 500; color: #64748b; }
        
        .price-card .yearly-price { display: none; }
        body.billing-yearly .price-card .monthly-price { display: none; }
        body.billing-yearly .price-card .yearly-price { display: block; }
        
        /* Lista de beneficios */
        .features-list { list-style: none; padding: 0; margin: 0 0 35px 0; flex-grow: 1; }
        .features-list li { font-size: 0.95rem; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; line-height: 1.4; }
        .features-list li i { font-size: 1.1rem; }

        /* 🛠️ SISTEMA DE SEMÁFORO DE CARACTERÍSTICAS Visuales */
        .features-list li.included { color: #334155; }
        .features-list li.included i { color: #10b981; } /* Verde Check */

        .features-list li.limited { color: #1e293b; font-weight: 500; }
        .features-list li.limited i { color: #f59e0b; } /* Amarillo Alerta */

        .features-list li.missing { color: #94a3b8; text-decoration: line-through; opacity: 0.65; } /* Gris apagado y tachado */
        .features-list li.missing i { color: #ef4444; } /* Rojo X */

        /* 🔄 CONMUTADOR DE PRECIOS ADICIONALES EN LÍNEA (20% MENOS ANUAL) */
        .features-list .extra-yearly { display: none; color: #10b981; font-weight: 600; }
        .features-list .extra-monthly { color: #475569; }

        body.billing-yearly .features-list .extra-monthly { display: none; }
        body.billing-yearly .features-list .extra-yearly { display: inline; }

        /* 📱 ALTERNADOR DE TEXTO RESPONSIVO (ESCRITORIO VS MÓVIL) */
        .features-list .txt-desktop { display: inline; }
        .features-list .txt-mobile { display: none; }
        
        .btn-choose { display: block; text-align: center; background: #f1f5f9; color: #0f172a; font-weight: 700; padding: 14px; border-radius: 8px; text-decoration: none; transition: background 0.2s; }
        .price-card.featured .btn-choose { background: #007bff; color: white; }
        .price-card.featured .btn-choose:hover { background: #0069d9; }
        .btn-choose:hover { background: #e2e8f0; }

        /* ⚡ Sección de Características Premium (Estructura de 3 capas tipográficas) */
        .features-intro { text-align: center; margin-bottom: 55px; }
        .features-intro h1 { font-size: 2.8rem; font-weight: 800; margin-bottom: 6px; color: #0f172a; letter-spacing: -1px; }
        
        /* Capa 2: Subtítulo destacado para comercios */
        .features-intro .features-tagline { font-size: 1.35rem; font-weight: 600; color: #007bff; margin-top: 0; margin-bottom: 16px; letter-spacing: -0.3px; }
        
        /* Capa 3: Párrafo descriptivo de dolores de red rural */
        .features-intro .features-desc { color: #64748b; font-size: 1.05rem; max-width: 780px; margin: 0 auto; line-height: 1.6; font-weight: 500; }

        /* Ajuste responsivo para que el texto grande no rompa en pantallas pequeñas */
        @media (max-width: 992px) {
            .features-intro h1 { font-size: 2.2rem; }
            .features-intro .features-tagline { font-size: 1.15rem; margin-bottom: 12px; }
            .features-intro .features-desc { font-size: 0.95rem; padding: 0 10px; }
        }
        
        .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 40px; text-align: left; }
        .feature-item-card { background: white; border: 1px solid #e2e8f0; border-radius: 16px; padding: 35px 25px; transition: transform 0.2s, box-shadow 0.2s; position: relative; text-align: left; }
        .feature-item-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.05); border-color: #cbd5e1; }
        
        .feature-icon-box { width: 52px; height: 52px; background: #eff6ff; color: #007bff; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 20px; transition: background 0.2s, color 0.2s; }
        .feature-item-card:hover .feature-icon-box { background: #007bff; color: white; }
        
        .feature-item-card h3 { margin: 0 0 12px 0; font-size: 1.3rem; color: #0f172a; font-weight: 700; }
        .feature-item-card p { margin: 0; font-size: 0.95rem; color: #475569; line-height: 1.6; }

        /* 🚀 Hero con Espaciado Comercial Premium */
        .hero-flex-wrapper { 
            display: flex; 
            flex-direction: row-reverse; 
            align-items: center; 
            gap: 50px; 
            margin-bottom: 80px; 
            padding-top: 20px;
        }
        
        .hero-area { text-align: left; flex: 1; margin: 0; }
        .hero-area h1 { font-size: 3.4rem; font-weight: 800; line-height: 1.12; color: #0f172a; margin-bottom: 24px; letter-spacing: -1.5px; } 
        .hero-area p { font-size: 1.25rem; color: #475569; line-height: 1.6; margin-bottom: 35px; }
        .hero-showcase-side { flex: 1; }
        
        .btn-cta-master { display: inline-flex; align-items: center; gap: 10px; background: #007bff; color: white; padding: 16px 32px; border-radius: 30px; text-decoration: none; font-weight: 700; font-size: 1.1rem; box-shadow: 0 10px 20px rgba(0,123,255,0.25); transition: all 0.2s; }
        .btn-cta-master:hover { background: #0069d9; transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,123,255,0.35); }

        /* ⚖️ CENTRO LEGAL Y ACORDEÓN FAQ NATIVO */
        .legal-split-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-top: 30px;
            align-items: start;
        }
        .legal-box {
            background: white;
            padding: 30px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            max-height: 520px;
            overflow-y: auto; 
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
        }
        .legal-box h3 { margin-top: 20px; color: #0f172a; font-size: 1.15rem; font-weight: 700; }
        .legal-box p { font-size: 0.95rem; color: #475569; line-height: 1.6; margin-bottom: 15px; }
        
        /* Acordeones interactivos en CSS Puro */
        .faq-wrapper { display: flex; flex-direction: column; gap: 12px; }
        details.faq-item {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            padding: 16px;
            transition: all 0.2s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
        }
        details.faq-item[open] {
            border-color: #007bff;
            box-shadow: 0 4px 12px rgba(0, 123, 255, 0.08);
        }
        summary.faq-question {
            font-weight: 600;
            color: #0f172a;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
        }
        summary.faq-question::-webkit-details-marker { display: none; }
        summary.faq-question::after {
            content: '\2b'; 
            font-size: 1.1rem;
            color: #64748b;
            transition: transform 0.2s;
        }
        details.faq-item[open] summary.faq-question::after {
            content: '\2212'; 
            color: #007bff;
        }
        .faq-answer {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid #f1f5f9;
            color: #475569;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* 💬 BURBUJA FLOTANTE DE WHATSAPP INTELIGENTE */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 999;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 1;
            transform: scale(1);
            pointer-events: auto;
        }
        .whatsapp-float:hover {
            background-color: #20ba5a;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(32, 186, 90, 0.5);
        }
        .whatsapp-float.hidden {
            opacity: 0;
            pointer-events: none;
            transform: scale(0.8) translateY(20px); 
        }

        footer {
            background: white;
            border-top: 1px solid #e2e8f0;
            padding: 24px 40px; 
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            color: #64748b;
            margin-top: auto; 
            z-index: 110;
        }
        footer .footer-links a {
            color: #64748b;
            text-decoration: none;
            margin-left: 15px;
            transition: color 0.2s;
            font-weight: 500;
        }
        footer .footer-links a:hover { color: #007bff; }
        
        /* Rejilla de tarjetas de presentación inicial */
        .hero-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-top: 20px; text-align: left; }
        .hero-card { background: white; border: 1px solid #e2e8f0; border-radius: 16px; padding: 30px 25px; transition: all 0.2s; border-bottom: 4px solid #e2e8f0; text-align: left; }
        .hero-card:hover { border-bottom-color: #007bff; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.03); }
        
        .hero-card-icon { font-size: 1.5rem; color: #007bff; margin-bottom: 15px; }
        .hero-card h3 { margin: 0 0 10px 0; font-size: 1.2rem; font-weight: 700; color: #0f172a; }
        .hero-card p { margin: 0; font-size: 0.95rem; color: #64748b; line-height: 1.5; }

        /* =================================================================== */
        /* 🔗 PUENTE DE NAVEGACIÓN SPA (PORTADA DE INICIO) */
        /* =================================================================== */
        .home-navigation-bridge { margin-top: 90px; padding-top: 40px; border-top: 1px dashed #e2e8f0; text-align: center; }
        .bridge-intro h2 { font-size: 2.1rem; font-weight: 800; color: #0f172a; margin-bottom: 10px; letter-spacing: -0.5px; }
        .bridge-intro p { color: #64748b; font-size: 1.1rem; margin-bottom: 40px; }
        /* 🛠️ ESCALABILIDAD FUTURA: auto-fit calcula y acomoda 2, 3 o más tarjetas fluidamente */
        .bridge-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px; text-align: left; }

        .bridge-card { 
            display: flex; 
            flex-direction: column; 
            background: white; 
            border: 1px solid #e2e8f0; 
            border-radius: 20px; 
            text-decoration: none; 
            color: inherit; 
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); 
        }
        .bridge-card-body { padding: 35px; display: flex; gap: 24px; flex-grow: 1; }
        .bridge-icon { width: 54px; height: 54px; background: #f1f5f9; color: #475569; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.35rem; flex-shrink: 0; transition: all 0.2s; }
        .bridge-card h3 { margin: 0 0 8px 0; font-size: 1.35rem; font-weight: 700; color: #0f172a; }
        .bridge-card p { margin: 0; font-size: 0.95rem; color: #64748b; line-height: 1.55; }

        .bridge-footer { background: #f8fafc; padding: 18px 35px; border-top: 1px solid #e2e8f0; display: flex; justify-content: space-between; align-items: center; font-size: 0.95rem; font-weight: 700; color: #007bff; transition: all 0.2s; }

        .bridge-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px -5px rgba(0,0,0,0.06); border-color: #cbd5e1; }
        .bridge-card:hover .bridge-icon { background: #eff6ff; color: #007bff; }
        .bridge-card:hover .bridge-footer { background: #f1f5f9; color: #0069d9; }

        /* Sintonía visual para la tarjeta de planes destacada */
        .featured-bridge { border-color: #cbd5e1; }
        .featured-bridge .bridge-icon { background: #eff6ff; color: #007bff; }
        .featured-bridge .bridge-footer { background: #007bff; color: white; border-top-color: #007bff; }
        .featured-bridge:hover { border-color: #007bff; }
        .featured-bridge:hover .bridge-footer { background: #0069d9; color: white; }

        @keyframes planFadeIn { 
            from { opacity: 0; transform: translateY(10px); } 
            to { opacity: 1; transform: translateY(0); } 
        }

        /* =================================================================== */
        /* 📱 SECCIÓN EXCLUSIVA MEDIA QUERIES (ORDENADAS Y SANEADAS) */
        /* =================================================================== --> */

        /* 📑 MEDIANAS (TABLETS / LAPTOPS PANTALLA MEDIANA) */
        @media (max-width: 992px) {
            .features-list .txt-desktop { display: none; }
            .features-list .txt-mobile { display: inline; }

            .hero-flex-wrapper { flex-direction: column; text-align: center; gap: 20px; }
            .hero-area { text-align: center; }
            .hero-area h1 { font-size: 2.6rem; } /* Reducimos el h1 para evitar desbordes en tablets */
            .hero-showcase-side { width: 100%; display: block; } 

            .legal-split-grid { grid-template-columns: 1fr; gap: 30px; }
            .legal-box { max-height: none; }

            /* 🎛️ MOTOR ADAPTATIVO MÓVIL (PESTAÑAS LIMPIAS SIN CÓDIGO VIEJO REPETIDO) */
            #view-planes.spa-section { 
                max-width: 100% !important; 
                width: 100%; 
                padding: 40px 0px; 
                box-sizing: border-box; 
            }
            
            .pricing-tabs { 
                display: flex; 
                background: #e2e8f0; 
                padding: 6px; 
                border-radius: 30px; 
                gap: 4px; 
                margin: 0 auto 35px auto; 
                width: calc(100% - 32px); 
                max-width: 500px; 
                box-sizing: border-box;
            }

            .tab-btn { 
                flex: 1; 
                background: transparent; 
                border: none; 
                padding: 10px 4px; 
                font-weight: 700; 
                font-size: 0.82rem; 
                color: #475569; 
                cursor: pointer; 
                border-radius: 20px; 
                transition: all 0.2s; 
                text-align: center;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .tab-btn.active { 
                background: white; 
                color: #007bff; 
                box-shadow: 0 4px 10px rgba(0,0,0,0.06); 
            }
            
            .pricing-grid { 
                display: block !important; 
                width: 100%;
                box-sizing: border-box;
                margin: 0;
                padding: 0;
            }

            .pricing-grid .price-card { 
                display: none; 
                width: calc(100% - 32px) !important; 
                max-width: 380px;
                box-sizing: border-box;
            }

            /* Forzamos el centrado matemático absoluto sin interferencias externas */
            .pricing-grid .price-card.tab-active { 
                display: flex !important; 
                margin: 0 auto !important; 
                animation: planFadeIn 0.3s ease-out; 
            }

            /* 📱 Colapso vertical del puente de navegación en celulares y tablets */
            .bridge-grid { grid-template-columns: 1fr; gap: 20px; }
            .bridge-card-body { padding: 25px; gap: 16px; }
            .bridge-footer { padding: 14px 25px; }
        }

        /* 📱 DISPOSITIVOS PEQUEÑOS (SMARTPHONES) */
        @media (max-width: 576px) {
            .whatsapp-float {
                width: 52px;
                height: 52px;
                font-size: 1.5rem;
                bottom: 20px;
                right: 20px;
            }
            footer { flex-direction: column; gap: 8px; text-align: center; padding: 15px; }
            footer .footer-links a { margin: 0 8px; }
        }

        /* =================================================================== */
        /* 📱 ARQUITECTURA PREMIUM DE HEADER Y FOOTER MÓVIL */
        /* =================================================================== */
        
        /* 🎯 BOTÓN MENÚ MÓVIL ESTILIZADO CON TEXTO CORREGIDO */
        .menu-toggle-btn { 
            display: none; 
            background: #f1f5f9; 
            border: 1px solid #e2e8f0; 
            padding: 8px 14px; 
            font-family: 'Inter', sans-serif;
            font-weight: 700; 
            font-size: 0.85rem; 
            color: #0f172a; 
            border-radius: 8px; 
            cursor: pointer; 
            align-items: center;
            gap: 8px;
            letter-spacing: 0.5px;
            transition: all 0.2s;
        }
        .menu-toggle-btn i { font-size: 0.95rem; color: #007bff; }
        .menu-toggle-btn:important-hover { background: #e2e8f0; }

        @media (max-width: 992px) {
            .desktop-menu { display: none !important; } 
            .menu-toggle-btn { display: inline-flex; } /* Forzamos el display flex para alinear texto e icono en móviles */
        }

        /* Estilos base del Panel Lateral (Oculto a la derecha) */
        .nav-sidebar {
            position: fixed;
            top: 0;
            right: 0;
            width: 290px;
            height: 100vh;
            background: white;
            z-index: 2000;
            box-shadow: -10px 0 30px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
            padding: 24px;
            box-sizing: border-box;
            /* 🚀 EFECTO SLIDE-OUT: Lo mandamos fuera de la pantalla */
            transform: translateX(100%);
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* Clase gatillo que activa la animación desde JS */
        .nav-sidebar.open {
            transform: translateX(0);
        }

        .sidebar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            border-bottom: 1px solid #f1f5f9;
            padding-bottom: 15px;
        }
        .sidebar-close-btn { background: #f1f5f9; border: none; width: 36px; height: 36px; border-radius: 50%; font-size: 1.1rem; color: #475569; cursor: pointer; }

        .sidebar-links { display: flex; flex-direction: column; gap: 20px; }
        .sidebar-links a { text-decoration: none; color: #475569; font-size: 1.1rem; font-weight: 600; padding: 10px 5px; transition: color 0.2s; border-bottom: 1px solid #f8fafc; }
        .sidebar-links a:hover { color: #007bff; }
        
        /* Botón de acción masivo en el menú móvil */
        .btn-sidebar-cta { background: #007bff; color: white !important; text-align: center; border-radius: 25px; margin-top: 10px; box-shadow: 0 4px 10px rgba(0,123,255,0.2); justify-content: center; font-weight: 700; }

        /* 🛠️ ESTILOS DEL NUEVO RELLENO PROFESIONAL DE CONFIANZA */
        .sidebar-slogan { font-size: 0.75rem; color: #64748b; font-weight: 500; margin-top: 2px; }
        
        .sidebar-section-title { 
            font-size: 0.68rem; 
            font-weight: 800; 
            color: #94a3b8; 
            letter-spacing: 1px; 
            margin-top: 25px; 
            margin-bottom: 10px; 
        }

        .sidebar-links a i { font-size: 0.95rem; width: 20px; color: #94a3b8; transition: color 0.2s; }
        .sidebar-links a:hover i { color: #007bff; }

        /* Tarjeta de soporte técnico por WhatsApp */
        .sidebar-support-card {
            display: flex;
            align-items: center;
            background: #f0fdf4;
            border: 1px solid #bbf7d0;
            padding: 12px;
            border-radius: 12px;
            text-decoration: none;
            margin-top: 5px;
            transition: background 0.2s;
        }
        .sidebar-support-card:hover { background: #dcfce7; }
        .support-icon { font-size: 1.6rem; color: #25d366; margin-right: 12px; display: flex; align-items: center; }
        .support-text { flex-grow: 1; }
        .support-text h5 { margin: 0; font-size: 0.85rem; font-weight: 700; color: #14532d; }
        .support-text p { margin: 0; font-size: 0.75rem; color: #166534; }
        .support-arrow { font-size: 0.75rem; color: #166534; }

        /* Sello Hacienda */
        .sidebar-badge-cr {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            padding: 10px;
            border-radius: 10px;
            margin-top: 12px;
            font-size: 0.75rem;
            color: #475569;
            font-weight: 600;
        }
        .sidebar-badge-cr i { color: #007bff; font-size: 0.85rem; }

        /* Pie de página empujado automáticamente hacia abajo */
        .sidebar-menu-footer {
            margin-top: auto; /* Truco Flexbox para pegar este bloque al fondo del menú */
            border-top: 1px solid #f1f5f9;
            padding-top: 15px;
            font-size: 0.7rem;
            color: #94a3b8;
            display: flex;
            justify-content: space-between;
            font-weight: 500;
        }
        .system-version { color: #475569; font-weight: 600; }

        /* Capa traslúcida de fondo */
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(15, 23, 42, 0.4);
            backdrop-filter: blur(2px);
            z-index: 1999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        .sidebar-overlay.open { opacity: 1; pointer-events: auto; }

        /* 📑 REGLAS RESPONSIVAS DENTRO DEL MEDIA QUERY */
        @media (max-width: 992px) {
            .desktop-menu { display: none !important; } /* Esconde menú horizontal */
            .menu-toggle-btn { display: block; } /* Enciende el botón de 3 líneas */

            /* 📜 REDISEÑO DEL FOOTER: Apilamiento vertical exacto al centro */
            footer {
                flex-direction: column !important;
                gap: 20px !important;
                text-align: center !important;
                padding: 40px 20px 100px 20px !important; /* Colchón extra abajo para proteger las letras del botón de WhatsApp */
            }
            footer .footer-links {
                display: flex;
                flex-direction: column;
                gap: 12px;
                margin: 0;
            }
            footer .footer-links a { margin: 0 !important; font-size: 0.95rem; }
        }

        /* =================================================================== */
/* ⚖️ NOTAS LEGALES AL PIE DE PLANES (IVA / MONEDA) */
/* =================================================================== */
.pricing-global-subtext {
    margin-top: 45px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}
.pricing-global-subtext p {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}
/* Icono de información en color azul sutil */
.pricing-global-subtext p i {
    color: #007bff;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .pricing-global-subtext {
        margin-top: 30px;
        padding: 0 20px; /* Evita que el texto roce los bordes en pantallas móviles */
    }
}
/* =================================================================== */
/* 🎯 ENLACES DE TEXTO DESTACADOS (BADGES INLINE) */
/* =================================================================== */
.inline-text-badge {
    display: inline-block;
    padding: 2px 10px;
    border: 1px solid #007bff;
    border-radius: 6px;
    color: #007bff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    background-color: #eff6ff;
    white-space: nowrap;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.04);
}

.inline-text-badge:hover {
    background-color: #007bff;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}