 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f8faff;
            color: #05051E;
            overflow-x: hidden;
            padding-top: 38px;
        }
        :root {
            --black: #000000;
            --blue: #0006FF;
            --white: #FFFFFF;
            --gray: #717171;
            --dark-blue:;
            --bg-light: #f0f4ff;
            --whatsapp-green: #25D366;
        }

        /* ===== TOPBAR ===== */
        .topbar {
            background-color: #05051E;
            color: rgba(255,255,255,0.8);
            font-size: 0.78rem;
            padding: 6px 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1100;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            transition: all 0.25s ease;
        }
        .topbar .container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 4px 12px;
        }
        .topbar .contact-info {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 4px 16px;
        }
        .topbar .contact-info span {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            white-space: nowrap;
        }
        .topbar .contact-info i {
            color: #0006FF;
            font-size: 0.8rem;
        }
        .topbar .social-icons {
            display: flex;
            align-items: center;
            gap: 2px;
        }
        .topbar .social-icons a {
            color: rgba(255,255,255,0.55);
            padding: 4px 6px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            border-radius: 6px;
            line-height: 1;
            position: relative;
        }
        .topbar .social-icons a:hover {
            color: #0006FF;
            background: rgba(0,6,255,0.15);
            transform: translateY(-3px) scale(1.1);
        }

        @media (max-width: 768px) {
            body { padding-top: 44px; }
            .topbar {
                padding: 4px 0;
                border-bottom: none;
                background-color: #05051E;
            }
            .topbar .contact-info { display: none !important; }
            .topbar .container { justify-content: center; }
            .topbar .social-icons a {
                font-size: 1.15rem;
                padding: 4px 10px;
                color: rgba(255,255,255,0.7);
            }
            .topbar .social-icons a:hover {
                background: rgba(0,6,255,0.15);
            }
        }
        @media (max-width: 480px) {
            body { padding-top: 40px; }
            .topbar .social-icons a { font-size: 1rem; padding: 3px 8px; }
        }

        /* ----- NAVBAR MODERNA CON MOVIMIENTO ----- */
        .navbar-custom {
            background-color: rgba(5, 5, 30, 0.92);
            backdrop-filter: blur(12px) saturate(180%);
            -webkit-backdrop-filter: blur(12px) saturate(180%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            transition: all 0.3s ease;
            padding: 8px 0;
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
            top: 34px;
        }
        @media (max-width: 768px) {
            .navbar-custom { top: 38px; border-top: none; }
        }
        @media (max-width: 480px) { .navbar-custom { top: 34px; } }

        .navbar-custom .navbar-brand {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 800;
            font-size: 1.5rem;
            letter-spacing: -0.5px;
            color: white !important;
            transition: all 0.3s ease;
        }
        .navbar-custom .navbar-brand:hover {
            transform: scale(1.05) rotate(-1deg);
        }
        .navbar-custom .navbar-brand img {
            height: 36px;
            width: auto;
            filter: drop-shadow(0 0 8px rgba(0,6,255,0.3));
            transition: all 0.4s ease;
        }
        .navbar-custom .navbar-brand:hover img {
            filter: drop-shadow(0 0 20px rgba(0,6,255,0.6));
            transform: rotate(5deg);
        }
        .navbar-custom .nav-link {
            color: rgba(255,255,255,0.8) !important;
            font-weight: 500;
            font-size: 0.9rem;
            padding: 0.5rem 1rem !important;
            margin: 0 2px;
            border-radius: 40px;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }
        .navbar-custom .nav-link::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #0006FF;
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 4px;
        }
        .navbar-custom .nav-link:hover::after,
        .navbar-custom .nav-link.active::after {
            width: 60%;
        }
        .navbar-custom .nav-link:hover,
        .navbar-custom .nav-link.active {
            color: white !important;
            background: rgba(0, 6, 255, 0.2);
            box-shadow: 0 0 30px rgba(0,6,255,0.15);
            transform: translateY(-3px) scale(1.02);
        }
        .navbar-custom .nav-link i {
            margin-right: 5px;
            font-size: 0.95rem;
            transition: transform 0.3s ease;
        }
        .navbar-custom .nav-link:hover i {
            transform: scale(1.2) rotate(-5deg);
        }
        .navbar-custom .dropdown-menu {
            background: rgba(5, 5, 30, 0.95);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 0.6rem 0;
            margin-top: 8px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.6);
            animation: dropdownFade 0.3s ease forwards;
        }
        @keyframes dropdownFade {
            0% { opacity: 0; transform: translateY(-10px) scale(0.96); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }
        .navbar-custom .dropdown-item {
            color: rgba(255,255,255,0.85);
            font-weight: 450;
            padding: 0.5rem 1.8rem;
            transition: all 0.25s ease;
        }
        .navbar-custom .dropdown-item:hover {
            background: rgba(0,6,255,0.2);
            color: white;
            transform: translateX(5px);
        }
        .navbar-custom .dropdown-item i {
            width: 24px;
            color: #0006FF;
            transition: transform 0.3s ease;
        }
        .navbar-custom .dropdown-item:hover i {
            transform: scale(1.2) rotate(-8deg);
        }
        .navbar-toggler {
            border: none;
            color: white;
            padding: 0.2rem 0.5rem;
            transition: transform 0.3s ease;
        }
        .navbar-toggler:hover {
            transform: rotate(90deg);
        }
        .navbar-toggler:focus {
            box-shadow: 0 0 0 0.1rem rgba(0,6,255,0.5);
        }
        @media (max-width: 992px) { .navbar-custom { top: 32px; } }

        /* ----- HERO CON VIDEO (FULLSCREEN, SIN ZOOM, SIN TEXTO) ----- */
        .hero-video {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 100vh;
            max-height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* El video ocupa todo el espacio SIN ZOOM (object-fit: cover mantiene proporción y recorta para llenar) */
        .hero-video video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;   /* Cubre todo sin deformar, recortando si es necesario */
            display: block;
            pointer-events: none;   /* Evita interacción accidental */
        }

       
       @media (max-width: 768px) {
    .hero-video video {
        object-fit: contain; /* Muestra todo el video sin recortar */
        background: #05051E; /* Fondo oscuro para los bordes */
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .hero-video video {
        object-fit: contain;
        width: 100%;
        height: 100%;
    }
}
        /* Eliminamos completamente el hero-content (texto y botón) */
        .hero-content {
            display: none !important;
        }

        /* ----- SECCIONES CON ANIMACIONES ----- */
        .section-title {
            font-weight: 700;
            font-size: 2.6rem;
            letter-spacing: -0.5px;
            color: #05051E;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 4px;
            background: #0006FF;
            border-radius: 4px;
            animation: titleLine 1.5s ease forwards;
        }
        @keyframes titleLine {
            0% { width: 0; }
            100% { width: 60px; }
        }
        .section-title span {
            color: #0006FF;
        }

        /* ===== TARJETAS DE SERVICIOS CON GIRO 3D ===== */
        .service-flip-container {
            perspective: 1000px;
            height: 100%;
            min-height: 280px;
        }
        .service-flip {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 280px;
            transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
            cursor: pointer;
        }
        .service-flip-container:hover .service-flip {
            transform: rotateY(180deg);
        }
        .service-front, .service-back {
            position: absolute;
            width: 100%;
            height: 100%;
            min-height: 280px;
            backface-visibility: hidden;
            border-radius: 28px;
            padding: 2rem 1.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow: 0 12px 40px rgba(5,5,30,0.06);
            border: 1px solid rgba(0,6,255,0.04);
        }
        .service-front {
            background: white;
            z-index: 2;
            transform: rotateY(0deg);
        }
        .service-front i {
            font-size: 2.8rem;
            color: #0006FF;
            background: rgba(0,6,255,0.08);
            padding: 1rem;
            border-radius: 20px;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }
        .service-front h5 {
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .service-front p {
            color: var(--gray);
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        .service-back {
            background: #05051E;
            color: white;
            transform: rotateY(180deg);
            border: 1px solid rgba(0,6,255,0.2);
            box-shadow: 0 12px 40px rgba(0,6,255,0.15);
        }
        .service-back p {
            font-size: 0.9rem;
            opacity: 0.85;
            margin-bottom: 1.2rem;
            line-height: 1.5;
        }
        .service-back .btn-service {
            padding: 0.5rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid rgba(255,255,255,0.2);
            color: white;
            background: transparent;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .service-back .btn-service i {
            font-size: 1rem;
            transition: transform 0.3s ease;
        }
        .service-back .btn-service:hover {
            background: #0006FF;
            border-color: #0006FF;
            transform: scale(1.05) translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,6,255,0.4);
        }
        .service-back .btn-service:hover i {
            transform: translateX(5px);
        }

        /* Colores diferentes para cada botón al girar */
        .service-flip-container:nth-child(1) .service-back .btn-service:hover {
            background: #0006FF;
            border-color: #0006FF;
        }
        .service-flip-container:nth-child(2) .service-back .btn-service:hover {
            background: #25D366;
            border-color: #25D366;
        }
        .service-flip-container:nth-child(3) .service-back .btn-service:hover {
            background: #FF6B35;
            border-color: #FF6B35;
        }
        .service-flip-container:nth-child(4) .service-back .btn-service:hover {
            background: #E1306C;
            border-color: #E1306C;
        }
        .service-flip-container:nth-child(5) .service-back .btn-service:hover {
            background: #7C3AED;
            border-color: #7C3AED;
        }
        .service-flip-container:nth-child(6) .service-back .btn-service:hover {
            background: #F59E0B;
            border-color: #F59E0B;
        }

        /* Icono de giro en la parte frontal (indicador) */
        .flip-indicator {
            position: absolute;
            bottom: 12px;
            right: 16px;
            font-size: 0.7rem;
            color: rgba(0,6,255,0.3);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .service-flip-container:hover .flip-indicator {
            color: rgba(0,6,255,0.6);
            transform: translateX(3px);
        }
        .flip-indicator i {
            font-size: 0.8rem;
            background: none;
            padding: 0;
            margin: 0;
            color: inherit;
        }

        /* Team cards */
        .team-card {
            background: white;
            border-radius: 30px;
            padding: 1.8rem 1.5rem 1.8rem;
            box-shadow: 0 8px 30px rgba(5,5,30,0.04);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(0,0,0,0.02);
            height: 100%;
            text-align: center;
            position: relative;
        }
        .team-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0,6,255,0.1);
            border-color: rgba(0,6,255,0.1);
        }
        .team-card .avatar {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: #eef2ff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
            font-size: 2.8rem;
            font-weight: 600;
            color: #0006FF;
            border: 3px solid rgba(0,6,255,0.15);
            transition: all 0.4s ease;
        }
        .team-card:hover .avatar {
            transform: scale(1.08) rotate(-5deg);
            border-color: #0006FF;
            box-shadow: 0 0 40px rgba(0,6,255,0.15);
        }
        .team-card h6 {
            font-weight: 700;
            transition: color 0.3s ease;
        }
        .team-card:hover h6 {
            color: #0006FF;
        }
        .team-card .badge-role {
            background: rgba(0,6,255,0.08);
            color: #0006FF;
            padding: 0.3rem 1.2rem;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.3px;
            transition: all 0.3s ease;
        }
        .team-card:hover .badge-role {
            background: #0006FF;
            color: white;
            transform: scale(1.05);
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 30px;
            background: rgba(0,6,255,0.06);
            color: #05051E;
            font-size: 1.6rem;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid transparent;
        }
        .social-icon:hover {
            background: #0006FF;
            color: white;
            transform: translateY(-8px) scale(1.1) rotate(-5deg);
            box-shadow: 0 15px 35px rgba(0,6,255,0.3);
        }

        .info-contacto i {
            color: #0006FF;
            width: 28px;
            font-size: 1.3rem;
            transition: transform 0.3s ease;
        }
        .info-contacto div:hover i {
            transform: scale(1.2) rotate(-10deg);
        }

      

        /* ===== WHATSAPP FLOTANTES ===== */
        .whatsapp-float {
            position: fixed;
            bottom: 28px;
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }
        .whatsapp-float.left { left: 24px; }
        .whatsapp-float.right { right: 24px; }

        .whatsapp-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: #25D366;
            color: white;
            font-size: 2rem;
            text-decoration: none;
            box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 2px solid rgba(255,255,255,0.15);
            animation: waFloat 3s ease-in-out infinite;
        }
        @keyframes waFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        .whatsapp-btn:nth-child(2) { animation-delay: 0.5s; }
        .whatsapp-btn:hover {
            transform: scale(1.15) translateY(-6px) rotate(-5deg);
            color: white;
            box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
            background: #20b85f;
            animation: none;
        }
        .whatsapp-btn .tooltip-text {
            position: absolute;
            right: 70px;
            background: rgba(5,5,30,0.92);
            backdrop-filter: blur(8px);
            color: white;
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 500;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 16px rgba(0,0,0,0.2);
            border: 1px solid rgba(255,255,255,0.06);
        }
        .whatsapp-btn:hover .tooltip-text {
            opacity: 1;
            right: 74px;
            transform: scale(1.05);
        }
        .whatsapp-btn .tooltip-text::after {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            border-left: 6px solid rgba(5,5,30,0.92);
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
        }
        .whatsapp-float.right .whatsapp-btn .tooltip-text {
            right: auto;
            left: 70px;
        }
        .whatsapp-float.right .whatsapp-btn:hover .tooltip-text {
            right: auto;
            left: 74px;
        }
        .whatsapp-float.right .whatsapp-btn .tooltip-text::after {
            right: auto;
            left: -6px;
            border-left: none;
            border-right: 6px solid rgba(5,5,30,0.92);
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
        }
        .whatsapp-btn .badge-num {
            position: absolute;
            top: -6px;
            right: -6px;
            background: #0006FF;
            color: white;
            border-radius: 30px;
            padding: 2px 8px;
            font-size: 0.6rem;
            font-weight: 700;
            border: 2px solid #05051E;
            line-height: 1.4;
            animation: badgePulse 2s ease-in-out infinite;
        }
        @keyframes badgePulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.15); }
        }
        .whatsapp-btn::before {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 2px solid rgba(37, 211, 102, 0.3);
            animation: pulse-wa 2s ease-out infinite;
        }
        @keyframes pulse-wa {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(1.5); opacity: 0; }
        }
        .whatsapp-btn:nth-child(2)::before { animation-delay: 0.6s; }

        @media (max-width: 576px) {
            .whatsapp-float { bottom: 18px; }
            .whatsapp-float.left { left: 12px; }
            .whatsapp-float.right { right: 12px; }
            .whatsapp-btn { width: 50px; height: 50px; font-size: 1.6rem; }
            .whatsapp-btn .tooltip-text { display: none; }
            .service-flip-container { min-height: 240px; }
            .service-flip, .service-front, .service-back { min-height: 240px; }
        }

        @media (max-width: 768px) {
            .hero-content h1 { font-size: 2.6rem; }
            .hero-content p { font-size: 1rem; }
            .navbar-custom .navbar-brand { font-size: 1.2rem; }
            .section-title { font-size: 2rem; }
            .service-flip-container { min-height: 260px; }
            .service-flip, .service-front, .service-back { min-height: 260px; }
        }

        /* Scroll reveal */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-delay-1 { transition-delay: 0.1s; }
        .reveal-delay-2 { transition-delay: 0.2s; }
        .reveal-delay-3 { transition-delay: 0.3s; }
        .reveal-delay-4 { transition-delay: 0.4s; }
    
        /* ---------- ANIMACIONES GLOBALES ---------- */
        @keyframes fadeInUp {
            0% { opacity: 0; transform: translateY(40px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInLeft {
            0% { opacity: 0; transform: translateX(-50px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
            100% { transform: translateY(0px); }
        }

        @keyframes neonPulse {
            0% { text-shadow: 0 0 7px #0006FF, 0 0 15px #0006FF, 0 0 30px #0006FF33; }
            50% { text-shadow: 0 0 15px #0006FF, 0 0 30px #0006FF, 0 0 60px #0006FF66, 0 0 100px #0006FF33; }
            100% { text-shadow: 0 0 7px #0006FF, 0 0 15px #0006FF, 0 0 30px #0006FF33; }
        }

        @keyframes neonBorder {
            0% { box-shadow: 0 0 10px #0006FF44, inset 0 0 10px #0006FF22; }
            50% { box-shadow: 0 0 30px #0006FF88, inset 0 0 30px #0006FF44; }
            100% { box-shadow: 0 0 10px #0006FF44, inset 0 0 10px #0006FF22; }
        }

        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .animate-on-scroll {
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        .delay-5 { animation-delay: 0.5s; }

        /* ========== HERO / PORTADA ========== */
        .hero {
            position: relative;
            width: 100%;
            height: 70vh;
            min-height: 400px;
            max-height: 550px;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: #05051E;
        }

        /* Fondo con efectos neón */
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(ellipse at 20% 50%, rgba(0, 6, 255, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(0, 6, 255, 0.08) 0%, transparent 50%),
                linear-gradient(135deg, #05051E 0%, #000000 50%, #05051E 100%);
            z-index: 0;
            animation: gradientMove 8s ease infinite;
            background-size: 200% 200%;
        }

        /* Líneas de neón decorativas */
        .hero .neon-line {
            position: absolute;
            z-index: 1;
            background: linear-gradient(90deg, transparent, #0006FF, transparent);
            opacity: 0.6;
        }

        .hero .neon-line.top {
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            animation: neonPulse 2s infinite;
        }

        .hero .neon-line.bottom {
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            animation: neonPulse 2s infinite 1s;
        }

        .hero .neon-line.left {
            top: 0;
            left: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, transparent, #0006FF, transparent);
            animation: neonPulse 2s infinite 0.5s;
        }

        .hero .neon-line.right {
            top: 0;
            right: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(180deg, transparent, #0006FF, transparent);
            animation: neonPulse 2s infinite 1.5s;
        }

        /* Partículas de neón (círculos flotantes) */
        .hero .particle {
            position: absolute;
            border-radius: 50%;
            background: #0006FF;
            opacity: 0.15;
            z-index: 1;
            animation: float 6s infinite ease-in-out;
        }

        .hero .particle.p1 { width: 150px; height: 150px; top: 10%; left: 5%; animation-delay: 0s; }
        .hero .particle.p2 { width: 100px; height: 100px; bottom: 15%; left: 20%; animation-delay: 2s; }
        .hero .particle.p3 { width: 200px; height: 200px; top: 20%; right: 15%; animation-delay: 4s; }
        .hero .particle.p4 { width: 80px; height: 80px; bottom: 20%; right: 30%; animation-delay: 1s; }

        .hero-container {
            position: relative;
            z-index: 2;
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            width: 100%;
        }

        /* Columna izquierda: texto */
        .hero-content {
            animation: fadeInLeft 1s ease forwards;
        }

        .hero-content .badge {
            display: inline-block;
            background: rgba(0, 6, 255, 0.15);
            border: 1px solid #0006FF;
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 0.8rem;
            color: #0006FF;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            animation: neonBorder 3s infinite;
        }

        .hero-content h1 {
            font-size: 3.2rem;
            font-weight: 800;
            color: #FFFFFF;
            margin-bottom: 15px;
            letter-spacing: 1px;
            line-height: 1.2;
        }

        .hero-content h1 span {
            background: linear-gradient(135deg, #0006FF, #FFFFFF, #0006FF);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientMove 4s ease infinite;
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #B0B0D0;
            font-weight: 300;
            line-height: 1.7;
            margin-bottom: 30px;
            max-width: 500px;
        }

        .hero-content .btn-hero {
            display: inline-block;
            padding: 14px 40px;
            background: transparent;
            color: #FFFFFF;
            font-size: 1rem;
            font-weight: 600;
            border: 2px solid #0006FF;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.4s ease;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            animation: neonBorder 3s infinite;
        }

        .hero-content .btn-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 6, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .hero-content .btn-hero:hover::before {
            left: 100%;
        }

        .hero-content .btn-hero:hover {
            transform: scale(1.05) translateY(-3px);
            box-shadow: 0 0 40px rgba(0, 6, 255, 0.5), inset 0 0 30px rgba(0, 6, 255, 0.1);
            background: rgba(0, 6, 255, 0.1);
            border-color: #FFFFFF;
        }

        .hero-content .btn-hero i {
            margin-left: 10px;
            transition: transform 0.3s;
        }

        .hero-content .btn-hero:hover i {
            transform: translateX(5px);
        }

        /* Columna derecha: imagen */
        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInUp 1s ease forwards;
        }

        .hero-image img {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 20px;
            border: 2px solid #0006FF;
            box-shadow: 0 0 40px rgba(0, 6, 255, 0.2), inset 0 0 40px rgba(0, 6, 255, 0.05);
            transition: all 0.5s ease;
            filter: brightness(1.05) contrast(1.05);
            animation: neonBorder 4s infinite;
        }

        .hero-image img:hover {
            transform: scale(1.02);
            box-shadow: 0 0 80px rgba(0, 6, 255, 0.4), inset 0 0 60px rgba(0, 6, 255, 0.1);
        }

        /* ---------- SECCIÓN CLIENTES ---------- */
        .clientes-section {
            max-width: 1300px;
            margin: 0 auto;
            padding: 60px 30px 30px;
        }

        .clientes-section h2 {
            font-size: 2.6rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 10px;
            background: linear-gradient(90deg, #0006FF, #05051E);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
        }

        .clientes-section .subtitle {
            text-align: center;
            color: #717171;
            font-size: 1.1rem;
            margin-bottom: 40px;
            border-bottom: 2px solid #0006FF33;
            padding-bottom: 15px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .grid-clientes {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 25px;
            justify-items: center;
            align-items: center;
        }

        .cliente-item {
            background: #FFFFFF;
            border: 1px solid #E0E0E0;
            border-radius: 20px;
            padding: 18px 12px;
            width: 100%;
            max-width: 160px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
            cursor: default;
            animation: float 4s infinite ease-in-out;
            box-shadow: 0 4px 15px rgba(0,0,0,0.06);
        }

        .cliente-item:nth-child(odd) { animation-delay: 0.2s; }
        .cliente-item:nth-child(3n) { animation-delay: 0.6s; }
        .cliente-item:nth-child(5n+2) { animation-delay: 1s; }

        .cliente-item:hover {
            transform: scale(1.08) translateY(-6px);
            border-color: #0006FF;
            box-shadow: 0 0 35px rgba(0, 6, 255, 0.15), inset 0 0 20px rgba(0,6,255,0.05);
            background: #F8F9FF;
        }

        .cliente-item img {
            width: 100%;
            max-width: 110px;
            height: auto;
            filter: grayscale(0.1);
            transition: filter 0.3s, transform 0.3s;
            display: block;
        }

        .cliente-item:hover img {
            filter: grayscale(0);
            transform: scale(1.02);
        }

        /* ---------- FOOTER (4 COLUMNAS) ---------- */
        footer {
            background: #000000;
            border-top: 3px solid #0006FF;
            padding: 40px 30px 20px;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: -60%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0,6,255,0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .footer-container {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 1.5fr 1.5fr 1.8fr;
            gap: 30px;
            align-items: start;
            position: relative;
            z-index: 2;
        }

        /* Columna 1: Logo */
        .footer-logo {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }

        .footer-logo img {
            max-width: 260px;
            height: auto;
            filter: brightness(1.1);
            transition: transform 0.3s;
        }

        .footer-logo img:hover {
            transform: scale(1.05);
        }

        /* Columna 2: Servicios */
        .footer-servicios h4,
        .footer-contacto h4 {
            color: #FFFFFF;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 15px;
            letter-spacing: 1px;
            border-bottom: 2px solid #0006FF;
            padding-bottom: 8px;
            display: inline-block;
        }

        .footer-servicios ul {
            list-style: none;
            padding: 0;
        }

        .footer-servicios ul li {
            color: #CCCCCC;
            padding: 6px 0;
            font-size: 0.95rem;
            transition: color 0.3s, transform 0.3s;
            cursor: default;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-servicios ul li::before {
            content: '▸';
            color: #0006FF;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .footer-servicios ul li:hover {
            color: #FFFFFF;
            transform: translateX(5px);
        }

        /* Columna 3: Contacto */
        .footer-contacto .contacto-item {
            color: #CCCCCC;
            padding: 6px 0;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: color 0.3s;
        }

        .footer-contacto .contacto-item i {
            color: #0006FF;
            width: 22px;
            font-size: 1.1rem;
        }

        .footer-contacto .contacto-item:hover {
            color: #FFFFFF;
        }

        .footer-contacto .contacto-item a {
            color: #CCCCCC;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-contacto .contacto-item a:hover {
            color: #0006FF;
        }

        .redes-footer {
            display: flex;
            gap: 15px;
            margin-top: 15px;
            flex-wrap: wrap;
        }

        .redes-footer a {
            color: #FFFFFF;
            background: #05051E;
            border: 1px solid #0006FF;
            border-radius: 50%;
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .redes-footer a:hover {
            background: #0006FF;
            transform: scale(1.12) rotate(3deg);
            box-shadow: 0 0 30px #0006FF44;
            border-color: #FFFFFF;
        }

        /* Columna 4: Mapa */
        .footer-mapa {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .footer-mapa iframe {
            width: 100%;
            max-width: 100%;
            height: 220px;
            border-radius: 16px;
            border: 2px solid #0006FF;
            box-shadow: 0 0 30px rgba(0,6,255,0.15);
            transition: box-shadow 0.3s;
        }

        .footer-mapa iframe:hover {
            box-shadow: 0 0 50px rgba(0,6,255,0.3);
        }

        /* Créditos */
        .creditos {
            text-align: center;
            margin-top: 35px;
            padding-top: 20px;
            border-top: 1px solid #71717133;
            color: white;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            grid-column: 1 / -1;
        }

        .creditos i {
            color: #0006FF;
            margin: 0 5px;
        }

        .creditos span {
            color: #FFFFFF;
            font-weight: 600;
        }

        .creditos .highlight {
            background: #0006FF;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ---------- RESPONSIVE ---------- */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 20px 30px;
            }
            .hero-content p {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .hero-image img {
                max-width: 400px;
            }
            .footer-container {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            .footer-mapa {
                align-items: center;
                grid-column: 1 / -1;
            }
            .footer-mapa iframe {
                max-width: 600px;
            }
            .hero-content h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .hero {
                height: auto;
                min-height: 500px;
                max-height: none;
                padding: 40px 0;
            }
            .hero-content h1 {
                font-size: 2.2rem;
            }
            .hero-content p {
                font-size: 1rem;
            }
            .hero-image img {
                max-width: 300px;
            }
            .hero .particle {
                display: none;
            }
        }

        @media (max-width: 650px) {
            .hero-container {
                padding: 20px;
                gap: 25px;
            }
            .hero-content h1 {
                font-size: 1.8rem;
            }
            .hero-image img {
                max-width: 250px;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .footer-logo {
                align-items: center;
                text-align: center;
            }
            .footer-mapa {
                align-items: center;
            }
            .footer-mapa iframe {
                height: 200px;
            }
            .redes-footer {
                justify-content: center;
            }
            .footer-servicios ul li {
                justify-content: center;
            }
            .footer-contacto .contacto-item {
                justify-content: center;
            }
            .clientes-section h2 {
                font-size: 1.8rem;
            }
            .grid-clientes {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
                gap: 15px;
            }
            .cliente-item {
                padding: 12px 8px;
            }
            .hero-content .btn-hero {
                padding: 12px 30px;
                font-size: 0.9rem;
            }
        }



        /* ============================================
   CURSOR PERSONALIZADO CON EFECTO NEÓN #0006FF
   ============================================ */

/* ---------- OCULTAR CURSOR PREDETERMINADO ---------- */
* {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cdefs%3E%3Cfilter id='neon'%3E%3CfeDropShadow dx='0' dy='0' stdDeviation='2' flood-color='%230006FF' flood-opacity='1'/%3E%3CfeDropShadow dx='0' dy='0' stdDeviation='6' flood-color='%230006FF' flood-opacity='0.7'/%3E%3CfeDropShadow dx='0' dy='0' stdDeviation='12' flood-color='%230006FF' flood-opacity='0.4'/%3E%3C/filter%3E%3C/defs%3E%3Cg filter='url(%23neon)'%3E%3Cpath d='M4 4 L24 14 L16 16 L14 24 L4 4 Z' fill='%230006FF' stroke='%23FFFFFF' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E") 4 4, auto !important;
}

/* ---------- CURSOR PRINCIPAL (punto central) ---------- */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #0006FF;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 15px #0006FF,
        0 0 30px #0006FF66,
        0 0 60px #0006FF33;
    transition: width 0.15s, height 0.15s, background 0.15s;
    will-change: transform;
}

/* ---------- ANILLO NEÓN (cursor secundario) ---------- */
.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid #0006FF;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, box-shadow 0.3s;
    will-change: transform;
    box-shadow: 
        0 0 20px #0006FF44,
        inset 0 0 20px #0006FF22;
    animation: neonPulse 2s ease-in-out infinite;
}

/* ---------- ANIMACIÓN PULSO NEÓN ---------- */
@keyframes neonPulse {
    0% {
        box-shadow: 0 0 20px #0006FF44, inset 0 0 20px #0006FF22;
        border-color: #0006FF;
    }
    50% {
        box-shadow: 0 0 40px #0006FF88, inset 0 0 40px #0006FF44;
        border-color: #FFFFFF;
    }
    100% {
        box-shadow: 0 0 20px #0006FF44, inset 0 0 20px #0006FF22;
        border-color: #0006FF;
    }
}

/* ---------- ESTADOS HOVER (sobre elementos interactivos) ---------- */
.cursor-dot.hover {
    width: 16px;
    height: 16px;
    background: #FFFFFF;
    box-shadow: 
        0 0 25px #0006FF,
        0 0 50px #0006FF88,
        0 0 100px #0006FF44;
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: #FFFFFF;
    box-shadow: 
        0 0 40px #0006FF88,
        inset 0 0 40px #0006FF44;
}

/* ---------- ESTADO CLICK (presionado) ---------- */
.cursor-dot.click {
    width: 12px;
    height: 12px;
    background: #FFFFFF;
    box-shadow: 
        0 0 40px #0006FF,
        0 0 80px #0006FFAA,
        0 0 120px #0006FF55;
}

.cursor-ring.click {
    width: 30px;
    height: 30px;
    border-width: 3px;
    border-color: #FFFFFF;
    box-shadow: 
        0 0 60px #0006FFAA,
        inset 0 0 60px #0006FF44;
}

/* ---------- ESTADO DE CARGA (cuando se carga algo) ---------- */
.cursor-dot.loading {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 3px solid #0006FF;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
    box-shadow: none;
}

.cursor-ring.loading {
    width: 50px;
    height: 50px;
    border-color: #0006FF44;
    animation: none;
    box-shadow: 0 0 60px #0006FF33;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ---------- ESTADO DE TEXTO (sobre texto) ---------- */
.cursor-dot.text {
    width: 4px;
    height: 20px;
    border-radius: 2px;
    background: #0006FF;
    box-shadow: 
        0 0 20px #0006FF,
        0 0 40px #0006FF66;
}

.cursor-ring.text {
    width: 30px;
    height: 30px;
    border-color: #0006FF66;
    border-style: dashed;
    animation: none;
    box-shadow: 0 0 30px #0006FF33;
}

/* ---------- PARTÍCULAS DE NEÓN (opcional) ---------- */
.cursor-particle {
    position: fixed;
    pointer-events: none;
    z-index: 99997;
    border-radius: 50%;
    background: #0006FF;
    opacity: 0.6;
    transform: translate(-50%, -50%);
    animation: particleFade 0.6s ease-out forwards;
}

@keyframes particleFade {
    0% {
        width: 6px;
        height: 6px;
        opacity: 0.8;
        box-shadow: 0 0 15px #0006FF;
    }
    100% {
        width: 0px;
        height: 0px;
        opacity: 0;
        box-shadow: 0 0 0px #0006FF;
    }
}

/* ---------- RESPONSIVE: ocultar en móviles/touch ---------- */
@media (hover: none) and (pointer: coarse) {
    * {
        cursor: auto !important;
    }
    .cursor-dot,
    .cursor-ring,
    .cursor-particle {
        display: none !important;
    }
}

/* ---------- SELECTORES PARA ELEMENTOS INTERACTIVOS ---------- */
a:hover ~ .cursor-ring,
button:hover ~ .cursor-ring,
input:hover ~ .cursor-ring,
textarea:hover ~ .cursor-ring,
select:hover ~ .cursor-ring,
[role="button"]:hover ~ .cursor-ring,
.clickable:hover ~ .cursor-ring {
    /* Los estados hover se manejan con JS */
}

.flags{
    display:flex;
    align-items:center;
    gap:10px;
    margin-left:20px;
}

.flags a{
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

.flags img{
    width:20px;
    height:20px;
    border-radius:50%;
    object-fit:cover;
    border:2px solid #fff;
    box-shadow:0 2px 8px rgba(0,0,0,.2);
    transition:all .3s ease;
    cursor:pointer;
}

.flags img:hover{
    transform:scale(1.15);
    box-shadow:0 5px 15px rgba(0,0,0,.35);
}

/* ===== OCULTAR WIDGET DE GOOGLE ===== */
#google_translate_element,
.goog-te-banner-frame,
.goog-te-gadget-icon,
.goog-te-combo,
.goog-te-footer,
.skiptranslate {
    display: none !important;
}

.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

body {
    top: 0 !important;
}

/* ===== ESTILOS PARA BANDERAS ACTIVAS ===== */
.flags {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 10px;
}

.flags a {
    display: inline-block;
    transition: all 0.3s ease;
    opacity: 0.6;
    border-radius: 50%;
    border: 2px solid transparent;
    padding: 2px;
}

.flags a:hover {
    opacity: 0.9;
    transform: scale(1.1);
}

.flags a.active {
    opacity: 1;
    border-color: #7A8EFF;
    box-shadow: 0 0 15px rgba(122, 142, 255, 0.4);
    transform: scale(1.1);
}



/* Ajuste responsive */
@media (max-width: 768px) {
    .flags a img {
        width: 24px;
        height: 24px;
    }
    
    .flags {
        gap: 5px;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .flags a img {
        width: 20px;
        height: 20px;
    }