:root {
            /* PALETA DE COLORES */
            --facilita-blue-main: #2f3a67;
            --facilita-green-light: #83ba46;
            --facilita-green-dark: #254f58;
            --facilita-text-title: #2a3968;
            --facilita-text-body: #364573;
            --facilita-bg-light: #f4f6f8;
            --white: #ffffff;
            
            /* Efecto de brillo corporativo añadido */
            --facilita-glow: 0 0 15px rgba(131, 186, 70, 0.5);
            --facilita-glow-intense: 0 0 25px rgba(131, 186, 70, 0.8);
            --facilita-glow-super: 0 0 40px rgba(131, 186, 70, 1);
        }
        
         body {
            font-family: 'Open Sans', sans-serif;
            color: var(--facilita-text-body);
            overflow-x: hidden;
            background-color: #fff;
            padding-top: 100px;
            zoom: 125%; 
        }
        
        h1, h2, h3, h4, h5, .btn {
            font-family: 'Montserrat', sans-serif;
        }

        /* --- NAVBAR --- */
        .navbar {
            background-color: rgba(255, 255, 255, 0.90);
            backdrop-filter: blur(10px); 
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(47, 58, 103, 0.15);
            padding: 10px 0;
            height: 100px;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255,255,255,0.3);
        }
        
        .navbar-brand img {
            max-height: 70px;
            width: auto;
        }
        
        .nav-link {
            color: var(--facilita-text-title);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            padding: 0 12px !important;
            transition: color 0.3s;
        }
        
        /* Corrección Menú Activo con glow */
        .navbar-nav .nav-link.active,
        .navbar-nav .nav-link:hover {
            color: var(--facilita-green-light) !important;
            text-shadow: var(--facilita-glow);
        }
        
        .btn-nav-aula {
            border: 2px solid var(--facilita-green-light);
            color: var(--facilita-green-light) !important;
            background: transparent;
            padding: 8px 25px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: var(--facilita-glow);
        }
        
        .btn-nav-aula:hover {
            background-color: var(--facilita-green-light);
            color: white !important;
            box-shadow: var(--facilita-glow-intense);
        }

        /* --- CONTACT HERO SECTION --- */
        .contact-hero {
            position: relative;
            background: linear-gradient(135deg, rgba(47, 58, 103, 0.95), rgba(42, 57, 104, 0.9)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            color: white;
        }
        
        .contact-info-box {
            padding-right: 30px;
        }
        
        .contact-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
        }
        
        .contact-lead {
            font-size: 1.1rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        
        .info-item:hover {
            transform: translateX(10px);
        }
        
        .info-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--facilita-green-light);
            margin-right: 20px;
            flex-shrink: 0;
            transition: all 0.3s ease;
            box-shadow: inset 0 0 10px rgba(131, 186, 70, 0.2);
        }
        
        .info-item:hover .info-icon {
            background: var(--facilita-green-light);
            color: white;
            box-shadow: var(--facilita-glow-intense);
            transform: scale(1.1) rotate(10deg);
        }
        
        .info-content h5 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .info-content p {
            margin: 0;
            opacity: 0.8;
            font-size: 0.95rem;
        }

        /* --- FORMULARIO --- */
        .form-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
            border-top: 6px solid var(--facilita-green-light);
            max-width: 100%;
            color: var(--facilita-text-body);
        }
        
        .form-header h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--facilita-blue-main);
        }
        
        .form-header span {
            font-size: 0.9rem;
            color: var(--facilita-text-body);
            display: block;
            margin-bottom: 20px;
        }
        
        .form-control {
            background-color: #f8f9fa;
            border: 1px solid #e9ecef;
            padding: 10px 15px;
            border-radius: 6px;
            font-size: 0.9rem;
            margin-bottom: 12px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            background-color: #fff;
            border-color: var(--facilita-blue-main);
            box-shadow: 0 0 0 3px rgba(47, 58, 103, 0.1);
        }
        
        .btn-submit {
            background-color: var(--facilita-blue-main);
            color: white;
            width: 100%;
            padding: 12px;
            font-weight: 700;
            text-transform: uppercase;
            border: none;
            border-radius: 6px;
            transition: all 0.3s;
            font-size: 1rem;
        }
        
        .btn-submit:hover {
            background-color: #1a2345;
            transform: translateY(-2px);
        }

        /* --- MAPA --- */
        .map-frame-section {
            height: 400px;
            width: 100%;
            background: #eee;
        }
        
        .map-frame-section iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* --- CARRUSEL CLIENTES --- */
       .clients-section {
            padding: 60px 0;
            background-color: #f4f6f8; 
            margin-top: 0; 
            padding-top: 80px; 
            border-top: 5px solid var(--facilita-blue-main);
            border-bottom: 5px solid var(--facilita-green-light);
            overflow: hidden;
        }

        .clients-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .clients-header h4 {
            color: var(--facilita-blue-main);
            font-weight: 700;
            text-transform: uppercase;
            font-size: 1rem;
            letter-spacing: 2px;
        }

        .slider-track {
            display: flex;
            width: calc(200px * 30);
            animation: scroll 75s linear infinite;
        }

        .client-logo {
            width: 200px;
            padding: 15px;
            margin: 0 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            border-radius: 10px;
            border: 2px solid transparent;
            background-color: #fff;
        }

        .client-logo:hover {
            transform: scale(1.05);
            border-color: var(--facilita-blue-main);
            box-shadow: 0 8px 20px rgba(47, 58, 103, 0.15);
        }

        .client-logo img {
            max-width: 100%;
            max-height: 80px;
            object-fit: contain;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-200px * 15)); }
        }

        /* --- FOOTER --- */
        footer {
            background-color: #2b3968 !important;
            color: rgba(255, 255, 255, 0.8);
            padding: 70px 0 30px;
            margin-top: 0;
        }
        
        footer h5 {
            color: white;
            margin-bottom: 25px;
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: 0.2s;
            font-size: 0.9rem;
        }
        
        footer a:hover {
            color: var(--facilita-green-light);
            text-decoration: underline;
            text-shadow: var(--facilita-glow);
        }
        
        .footer-logo-bg {
            background: transparent;
            padding: 0;
            display: inline-block;
            margin-bottom: 20px;
            max-width: 250px;
        }
        
        .footer-logo-bg img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .footer-icon {
            color: var(--facilita-green-light);
            margin-right: 10px;
            text-shadow: var(--facilita-glow);
        }

        /* WhatsApp */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            z-index: 999;
            transition: all 0.3s;
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
            color: white;
        }

        /* --- CORRECCIONES PARA MENÚ MÓVIL (RESPONSIVE) --- */
        @media (max-width: 991px) {
            .navbar {
                height: auto !important; 
                padding: 10px 0;
                background-color: white; 
                backdrop-filter: none;
            }

            .navbar-collapse {
                background-color: white;
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.15);
                margin-top: 10px;
                text-align: center;
            }

            .navbar-nav .nav-link {
                padding: 12px 0;
                border-bottom: 1px solid #f0f0f0; 
                font-size: 1.1rem; 
            }
            
            .navbar-nav .nav-item:last-child .nav-link {
                border-bottom: none;
            }

            .btn-nav-aula {
                display: block;      
                width: 100%;
                margin: 10px 0;     
                text-align: center;
                background-color: var(--facilita-green-light); 
                color: white !important; 
            }

            .navbar-brand img {
                max-height: 50px; 
            }
            
            .navbar-toggler {
                border-color: transparent; 
            }
            .navbar-toggler:focus {
                box-shadow: none; 
            }
            .navbar-toggler-icon {
                background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(47, 58, 103, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            }
            
            body {
                zoom: 100% !important; 
                padding-top: 80px; 
            }

            h1.hero-title { font-size: 2rem; }
            h2 { font-size: 1.5rem; }
        }