        /* --- PALETA DE COLORES Y VARIABLES --- */
        :root {
            --negro-profundo: #050505;
            --negro-suave: #111111;
            --verde-costa: #6b8e23;
            --verde-neon: #6b8e23;
            --celeste-mar: #00bfff;
            --azul-electrico: #00bfff;
            --magenta-neon: #ff0055;
            --blanco: #ffffff;
            --gris: #cccccc;
            --gradient-main: linear-gradient(to bottom, var(--verde-neon) 20%, var(--azul-electrico) 100%);
        }

        /* --- PREVENCIÓN DE SCROLL HORIZONTAL GLOBAL --- */
        html, body {
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
            margin: 0;
            padding: 0;
        }

        * { box-sizing: border-box; }
        
        body { font-family: 'Montserrat', sans-serif; background-color: var(--negro-profundo); color: var(--blanco); line-height: 1.6; scroll-behavior: smooth; }
        body.loader-active { overflow: hidden; }
        h1, h2, h3, h4 { font-family: 'Roboto', sans-serif; font-weight: 700; margin: 0; }
        a { text-decoration: none; transition: 0.3s; }
        ul { list-style: none; margin: 0; padding: 0; }

        /* --- FONDO ANIMADO GLOBAL --- */
        .global-animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: -1; 
            background: linear-gradient(135deg, #050a14 0%, var(--negro-profundo) 50%, #05140a 100%);
            overflow: hidden;
            pointer-events: none; 
        }

        .bg-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.25;
            animation: orbFloatGlobal 15s infinite alternate ease-in-out;
        }

        .orb-verde { width: 500px; height: 500px; background: var(--verde-neon); top: -10%; left: -10%; }
        .orb-azul { width: 600px; height: 600px; background: var(--celeste-mar); bottom: -10%; right: -10%; animation-delay: -5s; }
        .orb-magenta { width: 400px; height: 400px; background: var(--magenta-neon); top: 30%; left: 50%; animation-delay: -10s; opacity: 0.15; }

        @keyframes orbFloatGlobal {
            0% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(50px, 100px) scale(1.2); }
            100% { transform: translate(-80px, 50px) scale(0.9); }
        }

        /* --- LÍNEA NEÓN INFERIOR --- */
        .global-neon-border-bottom { position: fixed; bottom: 0; left: 0; width: 100%; height: 3px; z-index: 9999; opacity: 0; transition: opacity 1.5s ease-in-out; pointer-events: none; background: var(--azul-electrico); box-shadow: 0 0 20px var(--azul-electrico); }
        body.marco-activo .global-neon-border-bottom { opacity: 1; }

        /* --- HEADER --- */
        header { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; position: fixed; width: 100%; top: 0; background: rgba(5, 5, 5, 0.98); z-index: 1000; height: 75px; transition: all 0.3s ease-in-out; border-bottom: 2px solid transparent; }
        body.marco-activo header { border-bottom: 3px solid var(--verde-neon); box-shadow: 0 5px 20px rgba(107, 142, 35, 0.3); }

        /* --- LOGO --- */
        .logo { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 600; letter-spacing: 1.5px; color: var(--blanco); display: flex; align-items: center; gap: 12px; flex-shrink: 0; text-transform: uppercase; z-index: 1002; position: relative; cursor: pointer; }
        .logo-icon-dual { width: 26px; height: 26px; position: relative; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
        .logo-icon-dual::before { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 6px solid transparent; background: linear-gradient(to bottom, var(--verde-neon) 0%, var(--verde-neon) 50%, var(--azul-electrico) 50%, var(--azul-electrico) 100%) border-box; -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; transform: rotate(0deg); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15); transition: all 0.3s ease; }
        .logo-icon-dual::after { content: ''; position: absolute; width: 110%; height: 110%; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.1); opacity: 0.3; transform: rotate(0deg); transition: all 0.3s ease; }

        /* --- MENÚ HAMBURGUESA (MÓVIL) --- */
        .menu-toggle { display: none; color: #fff; font-size: 1.8rem; cursor: pointer; z-index: 1002; transition: 0.3s; }
        .menu-toggle:hover { color: var(--verde-neon); }

        /* --- NAVEGACIÓN --- */
        nav { transition: all 0.4s ease-in-out; transform-origin: top; overflow: visible; }
        nav ul { display: flex; gap: 30px; align-items: center; }
        nav a { color: var(--gris); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; position: relative; cursor: pointer; white-space: nowrap; }
        nav a:hover, nav a.active { color: var(--celeste-mar); }
        nav > ul > li > a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -5px; left: 0; background: var(--gradient-main); box-shadow: 0 0 8px var(--verde-neon); transition: width 0.3s; }
        nav > ul > li > a:hover::after { width: 100%; }

        .dropdown { position: relative; }
        .dropdown-menu { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: rgba(5, 5, 5, 0.98); border: 1px solid rgba(107, 142, 35, 0.3); min-width: 160px; padding: 10px 0; flex-direction: column; gap: 0; box-shadow: 0 10px 20px rgba(0,0,0,0.5); z-index: 1001; text-align: center; }
        .dropdown:hover .dropdown-menu { display: flex; }
        .dropdown-menu li a { display: block; padding: 10px 15px; font-size: 0.75rem; color: var(--blanco); text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .dropdown-menu li:last-child a { border-bottom: none; }
        .dropdown-menu li a:hover { background-color: rgba(107, 142, 35, 0.2); color: var(--verde-neon); text-shadow: 0 0 5px rgba(107, 142, 35, 0.5); }
        .dropdown-menu li a::after { display: none; } 

        @keyframes logoPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

        /* --- TRANSICIÓN DE VIDEO (NAV) - fundido a negro para camuflar el corte entre páginas --- */
        /* El contenedor (fondo negro puro) hace fade in/out. El contenido (video+logo) se funde aparte
           con la clase .show, de modo que en el momento de navegar la pantalla queda en negro puro. */
        .video-transition { position: fixed; inset: 0; z-index: 99999; background: #000; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.6s ease, visibility 0.6s; }
        .video-transition.active { opacity: 1; visibility: visible; pointer-events: all; }

        .vt-video { position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; object-fit: cover; transform: translate(-50%,-50%) scale(1.08); opacity: 0; transition: opacity 0.6s ease; }
        .video-transition.show .vt-video { opacity: 0.5; }
        .vt-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.92) 100%); }

        .vt-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; z-index: 2; opacity: 0; transition: opacity 0.55s ease; }
        .video-transition.show .vt-content { opacity: 1; }
        .vt-logo-icon { width: 70px; height: 70px; margin: 0 auto 22px; animation: logoPulse 1.6s ease-in-out infinite; }
        .vt-text { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 2.2rem; letter-spacing: 6px; color: #fff; }
        .vt-line { width: 120px; height: 2px; margin: 20px auto 0; background: linear-gradient(90deg, var(--verde-neon), var(--celeste-mar)); box-shadow: 0 0 15px var(--verde-neon); border-radius: 2px; opacity: 0; transition: opacity 0.55s ease; }
        .video-transition.show .vt-line { opacity: 1; }
        @media (max-width: 768px) { .vt-text { font-size: 1.5rem; letter-spacing: 4px; } .vt-logo-icon { width: 56px; height: 56px; } }

        /* Entrada de página: el telón negro ya aparece puesto antes de pintar (el contenido se funde luego con .show) */
        html.cv-entering .video-transition { opacity: 1; visibility: visible; pointer-events: all; }

        /* --- APARICIÓN SUAVE DE ELEMENTOS --- */
        [data-reveal] { transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1); }
        [data-reveal].reveal-hidden { opacity: 0; transform: translateY(40px); }

        /* --- HERO --- */
        .hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; padding: 0 20px; background: transparent; overflow: hidden; }
        .hero-video-bg { position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; min-width: 100%; min-height: 100%; object-fit: cover; transform: translate(-50%, -50%); z-index: 0; opacity: 0.35; }
        .hero-video-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.25) 50%, rgba(5,5,5,0.75) 100%), linear-gradient(to bottom, rgba(5,5,5,0.6) 0%, rgba(5,5,5,0.1) 40%, rgba(5,5,5,0.1) 60%, rgba(5,5,5,0.7) 100%); z-index: 1; }
        .hero-floating-card { position: absolute; background: rgba(30, 30, 30, 0.4); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.1); border-radius: 15px; padding: 12px 18px; display: flex; align-items: center; gap: 12px; z-index: 2; box-shadow: 0 15px 35px rgba(0,0,0,0.3); animation: floatCard 6s ease-in-out infinite; }
        @keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
        .card-1 { top: 25%; left: 8%; border-left: 3px solid var(--azul-electrico); }
        .card-2 { bottom: 25%; right: 8%; border-left: 3px solid var(--verde-neon); animation-delay: 2s; }
        .card-3 { top: 20%; right: 12%; border-left: 3px solid #ff0055; animation-delay: 1s; padding: 10px 15px; }
        .card-4 { bottom: 30%; left: 15%; border-radius: 30px; border: 1px solid rgba(255,255,255,0.2); animation-delay: 3s; padding: 8px 20px; }
        .float-icon.verde { color: var(--verde-neon); }
        
        .hero-content { z-index: 4; max-width: 900px; position: relative; }
        .hero-badge { display: inline-block; padding: 8px 16px; border-radius: 20px; background: rgba(107, 142, 35, 0.1); border: 1px solid var(--verde-neon); color: var(--verde-neon); font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; backdrop-filter: blur(5px); }
        .hero h1 { font-family: 'Roboto', sans-serif; font-weight: 900; font-size: 4rem; margin-bottom: 25px; color: white; line-height: 1.1; text-shadow: 0 10px 30px rgba(0,0,0,0.5); }
        .hero-highlight { background: linear-gradient(90deg, var(--verde-neon), var(--celeste-mar), var(--verde-neon)); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; animation: shine 4s linear infinite; }
        @keyframes shine { to { background-position: 200% center; } }
        .hero p { font-size: 1.25rem; color: #ccc; margin-bottom: 40px; font-weight: 300; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.8; }
        .hero-btns-container { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
        .btn-main { padding: 16px 45px; background-color: transparent; border: 1px solid var(--celeste-mar); color: var(--celeste-mar); font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; position: relative; overflow: hidden; transition: 0.4s; display: inline-block; font-weight: 700; border-radius: 4px; backdrop-filter: blur(5px); }
        .btn-main:hover { background-color: var(--celeste-mar); color: var(--negro-profundo); box-shadow: 0 0 30px rgba(0, 191, 255, 0.4); transform: translateY(-3px); }
        .btn-green-neon { border-color: var(--verde-neon); color: var(--verde-neon); }
        .btn-green-neon:hover { background-color: var(--verde-neon); color: var(--blanco); box-shadow: 0 0 30px rgba(107, 142, 35, 0.4); }
        
        .scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 5; opacity: 0.7; animation: bounce 2s infinite; }
        .mouse { width: 26px; height: 40px; border: 2px solid #fff; border-radius: 20px; position: relative; }
        .wheel { width: 4px; height: 8px; background: #fff; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); border-radius: 2px; }
        @keyframes bounce { 0%, 20%, 50%, 80%, 100% {transform:translateY(0) translateX(-50%);} 40% {transform:translateY(-10px) translateX(-50%);} 60% {transform:translateY(-5px) translateX(-50%);} }

        /* --- SECCIONES COMUNES --- */
        section { position: relative; }
        .titulo-seccion p { color: var(--verde-costa); text-transform: uppercase; letter-spacing: 3px; font-size: 0.8rem; font-weight: 600; margin-bottom: 5px; }

        /* --- SECCIÓN NOSOTROS --- */
        .nosotros-section { padding: 130px 5% 120px; position: relative; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.04); }

        .nosotros-year-bg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: 'Roboto', sans-serif; font-size: clamp(200px, 28vw, 380px); font-weight: 900; color: rgba(107,142,35,0.03); line-height: 1; pointer-events: none; user-select: none; letter-spacing: -15px; white-space: nowrap; }

        .nos-inner { max-width: 1300px; margin: 0 auto; }

        /* — Cabecera — */
        .nos-header { text-align: center; margin-bottom: 70px; }
        .nos-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 18px; border-radius: 30px; border: 1px solid rgba(107,142,35,0.4); background: rgba(107,142,35,0.07); font-size: 0.72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--verde-neon); margin-bottom: 22px; }
        .nos-title { font-family: 'Roboto', sans-serif; font-size: clamp(2.2rem, 4vw, 3.6rem); font-weight: 900; line-height: 1.1; color: #fff; }
        .nos-title em { font-style: normal; background: linear-gradient(90deg, var(--verde-neon), var(--celeste-mar)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .nos-sub { font-size: 1rem; color: #888; margin-top: 16px; font-weight: 300; }

        /* — Stats — */
        .nos-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-bottom: 50px; border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; overflow: hidden; }
        .nos-stat { padding: 36px 20px; text-align: center; background: rgba(255,255,255,0.02); transition: background 0.3s; position: relative; }
        .nos-stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,0.06); }
        .nos-stat:hover { background: rgba(107,142,35,0.05); }
        .nos-stat-num { font-family: 'Roboto', sans-serif; font-size: 3rem; font-weight: 900; color: var(--verde-neon); line-height: 1; text-shadow: 0 0 30px rgba(107,142,35,0.5); }
        .nos-stat-lbl { font-size: 0.72rem; color: #666; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-top: 8px; }

        /* — Pilares — */
        .nos-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
        .nos-pillar { background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07); border-radius: 20px; padding: 36px 28px; position: relative; overflow: hidden; transition: all 0.4s ease; cursor: default; }
        .nos-pillar::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s; border-radius: 20px; }
        .nos-pillar.p-verde::before { background: radial-gradient(ellipse at top left, rgba(107,142,35,0.1) 0%, transparent 60%); }
        .nos-pillar.p-azul::before  { background: radial-gradient(ellipse at top left, rgba(0,191,255,0.08) 0%, transparent 60%); }
        .nos-pillar.p-mag::before   { background: radial-gradient(ellipse at top left, rgba(255,0,85,0.08) 0%, transparent 60%); }
        .nos-pillar:hover { transform: translateY(-6px); }
        .nos-pillar:hover::before { opacity: 1; }
        .nos-pillar.p-verde:hover { border-color: rgba(107,142,35,0.35); box-shadow: 0 20px 40px rgba(107,142,35,0.08); }
        .nos-pillar.p-azul:hover  { border-color: rgba(0,191,255,0.3); box-shadow: 0 20px 40px rgba(0,191,255,0.06); }
        .nos-pillar.p-mag:hover   { border-color: rgba(255,0,85,0.25); box-shadow: 0 20px 40px rgba(255,0,85,0.05); }

        .pillar-icon-wrap { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 22px; font-size: 1.5rem; }
        .p-verde .pillar-icon-wrap { background: rgba(107,142,35,0.12); color: var(--verde-neon); }
        .p-azul  .pillar-icon-wrap { background: rgba(0,191,255,0.1); color: var(--celeste-mar); }
        .p-mag   .pillar-icon-wrap { background: rgba(255,0,85,0.1); color: var(--magenta-neon); }

        .pillar-num { position: absolute; top: 24px; right: 28px; font-family: 'Roboto', sans-serif; font-size: 4rem; font-weight: 900; line-height: 1; opacity: 0.05; color: #fff; }
        .pillar-title { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
        .pillar-desc { font-size: 0.82rem; color: #777; line-height: 1.6; }

        /* — Bottom row — */
        .nos-bottom { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
        .nos-methods { display: flex; flex-wrap: wrap; gap: 10px; }
        .nos-method-chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 15px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.09); background: rgba(255,255,255,0.03); font-size: 0.75rem; color: #aaa; font-weight: 600; transition: all 0.3s; }
        .nos-method-chip:hover { border-color: rgba(107,142,35,0.4); color: var(--verde-neon); background: rgba(107,142,35,0.07); }
        .nos-method-chip i { font-size: 0.75rem; }
        .nos-ia-badge { display: flex; align-items: center; gap: 12px; padding: 16px 24px; border-radius: 50px; border: 1px solid rgba(0,191,255,0.2); background: linear-gradient(135deg, rgba(0,191,255,0.06), rgba(107,142,35,0.05)); white-space: nowrap; transition: all 0.3s; }
        .nos-ia-badge:hover { border-color: rgba(0,191,255,0.4); box-shadow: 0 0 25px rgba(0,191,255,0.1); }
        .nos-ia-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--celeste-mar); box-shadow: 0 0 10px var(--celeste-mar); animation: pulseWhite 2s infinite; }
        .nos-ia-badge span { font-size: 0.8rem; font-weight: 700; color: var(--celeste-mar); letter-spacing: 0.5px; }

        @media (max-width: 1024px) { .nos-pillars { grid-template-columns: 1fr 1fr; } .nos-bottom { grid-template-columns: 1fr; } }
        @media (max-width: 768px) {
            .nosotros-section { padding: 90px 5% 80px; }
            .nos-stats { grid-template-columns: repeat(2,1fr); }
            .nos-stat:nth-child(2)::after { display: none; }
            .nos-stat-num { font-size: 2.2rem; }
            .nos-pillars { grid-template-columns: 1fr; }
        }

        /* --- SECCIÓN NUESTROS CAMPOS --- */
        .campos-section { padding: 70px 5% 120px; background-color: transparent; z-index: 2; position: relative; }
        
        .campos-intro-card { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 20; opacity: 1; transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1); background: #000; border: 2px solid var(--verde-neon); border-radius: 50%; width: 100px; height: 100px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 50px rgba(107, 142, 35, 0.5); }
        .campos-intro-card .logo-icon-dual { width: 60px; height: 60px; }
        .campos-intro-card .logo-icon-dual::before { border-width: 8px; }
        .campos-section.active-spread .campos-intro-card { transform: translate(-50%, -50%) scale(5); opacity: 0; pointer-events: none; }
        
        .services-columns-wrapper { display: flex; gap: 25px; max-width: 1400px; margin: 0 auto; align-items: flex-start; opacity: 0; transition: opacity 1.5s ease 0.3s; }
        .campos-section.active-spread .services-columns-wrapper { opacity: 1; }
        
        .campos-legend { display: flex; justify-content: center; gap: 40px; margin-bottom: 60px; flex-wrap: wrap; opacity: 0; transition: opacity 1s ease 0.5s; }
        .campos-section.active-spread .campos-legend { opacity: 1; }
        .legend-item { display: flex; align-items: center; gap: 12px; font-family: 'Montserrat', sans-serif; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
        .legend-orb { width: 14px; height: 14px; border-radius: 50%; position: relative; }
        .legend-orb::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; border-radius: 50%; opacity: 0.6; filter: blur(6px); animation: energyPulse 3s ease-in-out infinite; }
        @keyframes energyPulse { 0% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.5); opacity: 0.2; } 100% { transform: scale(1); opacity: 0.6; } }
        .legend-item.verde .legend-orb { background: var(--verde-neon); box-shadow: 0 0 10px var(--verde-neon); } .legend-item.verde span { color: var(--verde-neon); }
        .legend-item.azul .legend-orb { background: var(--azul-electrico); box-shadow: 0 0 10px var(--azul-electrico); } .legend-item.azul span { color: var(--azul-electrico); }
        .legend-item.magenta .legend-orb { background: var(--magenta-neon); box-shadow: 0 0 10px var(--magenta-neon); } .legend-item.magenta span { color: var(--magenta-neon); }
        
        .service-column { flex: 1; display: flex; flex-direction: column; gap: 25px; transform: translateY(30px); transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1); }
        .campos-section.active-spread .service-column { transform: translateY(0); }
        
        .service-card { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 25px; cursor: pointer; transition: all 0.4s ease; overflow: hidden; position: relative; }
        .service-card:hover { background: rgba(255, 255, 255, 0.06); transform: translateY(-5px); }
        .cat-verde:hover, .cat-verde.active { border-color: var(--verde-neon); box-shadow: 0 0 20px rgba(107, 142, 35, 0.2); }
        .cat-azul:hover, .cat-azul.active { border-color: var(--azul-electrico); box-shadow: 0 0 20px rgba(0, 191, 255, 0.2); }
        .cat-magenta:hover, .cat-magenta.active { border-color: var(--magenta-neon); box-shadow: 0 0 20px rgba(255, 0, 85, 0.2); }
        .cat-verde .service-icon { color: var(--verde-neon); } .cat-azul .service-icon { color: var(--azul-electrico); } .cat-magenta .service-icon { color: var(--magenta-neon); }
        .service-header { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%; } 
        .header-content { display: flex; align-items: center; gap: 15px; } 
        .service-icon { font-size: 1.5rem; transition: 0.3s; } 
        .service-title { font-size: 1.1rem; font-weight: 700; color: white; margin: 0; }
        .toggle-icon { width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: all 0.3s; }
        .service-card:hover .toggle-icon { border-color: #fff; color: #fff; background: rgba(255,255,255,0.1); }
        .service-card.active .toggle-icon { transform: rotate(135deg); border-color: inherit; color: inherit; background: transparent; }
        .service-body { max-height: 0; opacity: 0; overflow: hidden; margin-top: 0; color: #ccc; font-size: 0.9rem; transition: all 0.5s ease; }
        .service-card.active .service-body { max-height: 200px; opacity: 1; margin-top: 15px; }
        .service-card.active .service-icon { transform: scale(1.2); }

        @keyframes highlightCard {
            0% { box-shadow: 0 0 0px var(--celeste-mar); border-color: rgba(255,255,255,0.1); }
            30% { box-shadow: 0 0 40px var(--celeste-mar); border-color: var(--celeste-mar); transform: scale(1.05); }
            100% { box-shadow: 0 0 20px rgba(0, 191, 255, 0.2); border-color: var(--celeste-mar); transform: scale(1); }
        }
        .highlight-active { animation: highlightCard 2s ease-out forwards; border-color: var(--celeste-mar); }

        /* --- SECCIÓN DE PAQUETES --- */
        .paquetes-section { padding: 120px 5% 150px; background-color: transparent; border-top: 1px solid rgba(255,255,255,0.05); position: relative; }
        
        .myPlanesCarousel { padding-top: 30px !important; }
        .planes-grid-desktop { display: flex; flex-wrap: wrap; gap: 30px; justify-content: center; max-width: 1300px; margin: 0 auto; z-index: 10; position: relative; align-items: stretch; padding-top: 30px; }
        .planes-grid-desktop .swiper-slide { width: calc(33.333% - 20px); min-width: 320px; height: auto; display: flex; justify-content: center; }
        .planes-pagination { display: none; }
        
        .mobile-swipe-hint { display: none; }

        .plan-card {
            background: rgba(20, 20, 20, 0.7); backdrop-filter: blur(15px); border: 1px solid rgba(255,255,255,0.1);
            border-radius: 20px; padding: 40px 30px; width: 100%; min-width: 320px;
            display: flex; flex-direction: column; position: relative; transition: all 0.4s ease;
            height: 100%;
        }
        .plan-card:hover { transform: translateY(-10px); background: rgba(30, 30, 30, 0.9); }

        .plan-card.plan-recommended { border-color: var(--verde-neon); box-shadow: 0 0 25px rgba(107, 142, 35, 0.2); transform: scale(1.05); z-index: 2; }
        .plan-card.plan-recommended:hover { box-shadow: 0 0 40px rgba(107, 142, 35, 0.4); transform: scale(1.05) translateY(-10px); }
        .plan-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--verde-neon); color: #000; font-weight: 800; font-size: 0.7rem; padding: 5px 15px; border-radius: 20px; letter-spacing: 1px; text-transform: uppercase; box-shadow: 0 0 10px var(--verde-neon); white-space: nowrap; }

        .plan-card.plan-elite { overflow: hidden; border-color: rgba(255, 0, 85, 0.3); }
        .elite-blur { position: absolute; inset: 0; background: rgba(5,5,5,0.8); backdrop-filter: blur(8px); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 5; text-align: center; padding: 30px; }
        .lock-icon { font-size: 3rem; color: var(--magenta-neon); margin-bottom: 20px; text-shadow: 0 0 20px var(--magenta-neon); animation: floatCard 4s ease-in-out infinite; }
        .elite-title { color: #fff; font-size: 1.5rem; margin-bottom: 10px; font-weight: 800; }
        .elite-desc { color: #aaa; font-size: 0.85rem; margin-bottom: 25px; line-height: 1.5; }
        .btn-elite { background: transparent; border: 1px solid var(--magenta-neon); color: var(--magenta-neon); padding: 12px 25px; border-radius: 30px; font-size: 0.8rem; font-weight: bold; text-transform: uppercase; cursor: pointer; transition: 0.3s; width: 100%; letter-spacing: 1px; }
        .btn-elite:hover { background: var(--magenta-neon); color: #fff; box-shadow: 0 0 20px var(--magenta-neon); transform: translateY(-2px); }

        .plan-header { text-align: center; margin-bottom: 20px; padding-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.1); }
        .plan-name { font-size: 1.8rem; font-weight: 800; color: var(--blanco); margin-bottom: 5px; }
        .plan-sub { font-size: 0.85rem; color: var(--celeste-mar); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; }
        .plan-card.plan-recommended .plan-sub { color: var(--verde-neon); }
        .plan-price-box { display: flex; flex-direction: column; align-items: center; }
        .plan-price-old { text-decoration: line-through; color: #666; font-size: 0.9rem; }
        .plan-price { font-size: 2.5rem; font-weight: 900; color: var(--verde-neon); line-height: 1; }
        .plan-price span { font-size: 1rem; font-weight: 400; color: #888; }
        
        .plan-features { flex-grow: 1; margin-bottom: 20px; max-height: 320px; overflow-y: auto; padding-right: 10px; }
        .plan-features::-webkit-scrollbar { width: 4px; }
        .plan-features::-webkit-scrollbar-track { background: rgba(255,255,255,0.03); border-radius: 4px; }
        .plan-features::-webkit-scrollbar-thumb { background: var(--celeste-mar); border-radius: 4px; }
        .plan-card.plan-recommended .plan-features::-webkit-scrollbar-thumb { background: var(--verde-neon); }

        .feature-group-title { font-size: 0.75rem; color: var(--celeste-mar); text-transform: uppercase; letter-spacing: 1px; margin: 15px 0 10px 0; border-bottom: 1px solid rgba(0, 191, 255, 0.2); padding-bottom: 5px; font-weight: 700; text-align: left; }
        .plan-card.plan-recommended .feature-group-title { color: var(--verde-neon); border-color: rgba(107, 142, 35, 0.3); }

        .service-link { color: var(--celeste-mar); font-weight: 700; cursor: pointer; position: relative; display: inline-block; transition: all 0.3s ease; border-bottom: 1px dashed var(--celeste-mar); padding-bottom: 1px; }
        .service-link:hover { color: var(--verde-neon); border-bottom: 1px solid var(--verde-neon); transform: translateY(-2px); text-shadow: 0 0 8px rgba(107, 142, 35, 0.5); }
        .plan-card.plan-recommended .service-link { color: var(--verde-neon); border-bottom-color: var(--verde-neon); }
        .plan-card.plan-recommended .service-link:hover { color: #fff; border-bottom-color: #fff; text-shadow: 0 0 8px rgba(255,255,255,0.5); }

        .plan-features ul { text-align: left; }
        .plan-features ul li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; color: #ddd; }
        .plan-features ul li i { color: var(--verde-neon); margin-top: 4px; font-size: 0.9rem; }
        .plan-features ul li.missing { color: #666; }
        .plan-features ul li.missing i { color: #555; }

        .scroll-hint-overlay { position: absolute; bottom: 135px; left: 2px; width: calc(100% - 4px); height: 70px; background: linear-gradient(to top, rgba(20, 20, 20, 0.95) 10%, rgba(20, 20, 20, 0) 100%); display: flex; justify-content: center; align-items: flex-end; padding-bottom: 10px; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; z-index: 10; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; }
        .plan-card.plan-recommended .scroll-hint-overlay { background: linear-gradient(to top, rgba(30, 30, 30, 0.95) 10%, rgba(30, 30, 30, 0) 100%); }
        .plan-card:hover .scroll-hint-overlay:not(.hidden-hint) { opacity: 1; }
        .scroll-hint-overlay.hidden-hint { opacity: 0 !important; }
        .scroll-hint-content { display: flex; flex-direction: column; align-items: center; gap: 3px; color: var(--celeste-mar); font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; animation: scrollBounce 1.5s infinite; }
        .plan-card.plan-recommended .scroll-hint-content { color: var(--verde-neon); }
        @keyframes scrollBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

        .plan-actions-wrapper { margin-top: auto; display: flex; flex-direction: column; gap: 15px; padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.05); position: relative; z-index: 5; }
        
        .btn-solicitar { background: transparent; border: 1px solid var(--celeste-mar); color: var(--celeste-mar); padding: 12px 20px; border-radius: 30px; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; cursor: pointer; transition: 0.3s; width: 100%; letter-spacing: 1px; }
        .btn-solicitar:hover { background: var(--celeste-mar); color: #000; box-shadow: 0 0 15px var(--celeste-mar); transform: translateY(-2px); }
        .plan-card.plan-recommended .btn-solicitar { border-color: var(--verde-neon); color: var(--verde-neon); }
        .plan-card.plan-recommended .btn-solicitar:hover { background: var(--verde-neon); color: #000; box-shadow: 0 0 15px var(--verde-neon); }

        .compare-checkbox-container { text-align: center; position: relative; }
        .compare-label { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.1); padding: 10px 20px; border-radius: 30px; display: inline-flex; align-items: center; gap: 10px; cursor: pointer; font-size: 0.75rem; color: #bbb; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; user-select: none; width: 100%; justify-content: center; }
        .compare-label:hover { background: rgba(0, 191, 255, 0.05); border-color: var(--celeste-mar); color: #fff; box-shadow: 0 0 15px rgba(0, 191, 255, 0.1); }
        .compare-label.checked { background: rgba(0, 191, 255, 0.15); border-color: var(--celeste-mar); color: #fff; box-shadow: 0 0 20px rgba(0, 191, 255, 0.2); }
        .compare-label input { appearance: none; width: 16px; height: 16px; border: 2px solid #777; border-radius: 4px; background: transparent; cursor: pointer; position: relative; transition: 0.2s; margin: 0; }
        .compare-label.checked input { border-color: var(--celeste-mar); background: var(--celeste-mar); }
        .compare-label.checked input::after { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: #000; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 0.6rem; }

        .tutorial-tooltip { 
            position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px); 
            background: linear-gradient(135deg, var(--celeste-mar), #0055ff); 
            color: #fff; padding: 6px 14px; border-radius: 8px; font-size: 0.7rem; font-weight: 700; 
            text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; 
            box-shadow: 0 5px 15px rgba(0, 191, 255, 0.4); z-index: 20; white-space: nowrap; 
            opacity: 0; pointer-events: none; transition: opacity 0.4s ease, transform 0.4s ease; margin-top: 12px;
        }
        .tutorial-tooltip::after { content: ''; position: absolute; bottom: 100%; top: auto; left: 50%; transform: translateX(-50%); border-width: 6px; border-style: solid; border-color: transparent transparent #0055ff transparent; }
        .pulsing-dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; animation: pulseWhite 1.5s infinite; }
        @keyframes floatTooltip { 0%, 100% { transform: translateX(-50%) translateY(5px); } 50% { transform: translateX(-50%) translateY(10px); } }
        @keyframes pulseWhite { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); } 70% { box-shadow: 0 0 0 6px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }
        .close-tutorial { cursor: pointer; opacity: 0.7; transition: 0.3s; font-size: 0.8rem; pointer-events: auto;}
        .close-tutorial:hover { opacity: 1; transform: scale(1.2); }
        .tutorial-hidden { display: none !important; }
        .tutorial-tooltip.show-tutorial { opacity: 1; pointer-events: auto; animation: floatTooltip 2s infinite ease-in-out; }

        .compare-floating-bar { position: fixed; bottom: -100px; left: 50%; transform: translateX(-50%); background: rgba(10, 15, 20, 0.95); backdrop-filter: blur(20px); border: 1px solid var(--celeste-mar); padding: 15px 30px; border-radius: 50px; display: flex; align-items: center; gap: 20px; z-index: 9999; box-shadow: 0 10px 30px rgba(0, 191, 255, 0.3); transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .compare-floating-bar.active { bottom: 30px; }
        .compare-text { font-weight: 600; font-size: 0.9rem; color: #fff; }
        .compare-text span { color: var(--celeste-mar); font-weight: 800; }
        .btn-compare-action { background: var(--celeste-mar); color: #000; border: none; padding: 10px 20px; border-radius: 30px; font-weight: 800; font-size: 0.8rem; text-transform: uppercase; cursor: pointer; transition: 0.3s; }
        .btn-compare-action:hover { box-shadow: 0 0 15px var(--celeste-mar); transform: scale(1.05); }
        
        .btn-close-compare { background: #111; border: 1px solid rgba(255,255,255,0.2); color: #aaa; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: 0.3s; position: absolute; top: -10px; right: -10px; font-size: 0.8rem; box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
        .btn-close-compare:hover { color: #fff; border-color: #ff0055; background: #ff0055; transform: scale(1.1) rotate(90deg); }

        .compare-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.9); backdrop-filter: blur(10px); z-index: 10000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: 0.4s; padding: 20px; }
        .compare-modal-overlay.active { opacity: 1; pointer-events: all; }
        .compare-modal-content { background: #0a0a0a; border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; width: 100%; max-width: 1000px; max-height: 90vh; display: flex; flex-direction: column; overflow: hidden; position: relative; transform: scale(0.95); transition: 0.4s; box-shadow: 0 0 50px rgba(0, 191, 255, 0.1); }
        .compare-modal-overlay.active .compare-modal-content { transform: scale(1); }
        .modal-header { padding: 25px 30px; border-bottom: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; background: rgba(20,20,20,0.5); }
        .modal-header h3 { font-size: 1.5rem; color: var(--verde-neon); margin: 0; }
        .close-modal { background: transparent; border: none; color: #888; font-size: 1.5rem; cursor: pointer; transition: 0.3s; }
        .close-modal:hover { color: #fff; transform: rotate(90deg); }
        .modal-body { padding: 30px; overflow-y: auto; overflow-x: auto; }
        .compare-table { width: 100%; border-collapse: collapse; min-width: 600px; }
        .compare-table th, .compare-table td { padding: 15px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
        .compare-table th { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; color: #fff; background: rgba(255,255,255,0.02); }
        .compare-table td:first-child { text-align: left; font-weight: 600; color: #aaa; background: rgba(255,255,255,0.01); border-right: 1px solid rgba(255,255,255,0.05); }
        
        .compare-table .highlight-col { background: rgba(107, 142, 35, 0.05); }
        .compare-table .feature-yes { color: var(--verde-neon); font-size: 1.2rem; }
        .compare-table .feature-no { color: #444; font-size: 1.2rem; }
        .compare-table .feature-text { color: #ddd; font-size: 0.9rem; font-weight: 500; }

        select.form-input option { background-color: var(--negro-profundo); color: white; padding: 10px; }

        /* --- CLIENTES --- */
        .clientes-section { padding: 100px 5%; background-color: transparent; border-top: 1px solid rgba(107, 142, 35, 0.1); position: relative; overflow: hidden; }
        .clientes-container-wrapper { position: relative; z-index: 10; }
        .titulo-seccion { text-align: center; margin-bottom: 80px; } .titulo-seccion h2 { font-family: 'Roboto', sans-serif; font-size: 2.5rem; margin-bottom: 15px; }
        .carousel-container-relative { position: relative; max-width: 1500px; margin: 0 auto; padding: 0; }
        
        .clientes-section .swiper { width: 100%; padding: 40px 0; } 
        
        .swipe-indicator-clientes { display: none; }

        .client-interactive-card { position: relative; width: 100%; height: 100%; background: rgba(10, 10, 10, 0.6); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; overflow: hidden; cursor: pointer; transition: all 0.4s ease; display: flex; flex-direction: column; align-items: center; justify-content: center; }
        .client-interactive-card:hover { box-shadow: 0 0 30px rgba(0, 191, 255, 0.2); border-color: var(--celeste-mar); background: rgba(20, 20, 20, 0.8); }
        .client-front { padding: 10px; text-align: center; transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1); z-index: 2; width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
        .client-logo-wrapper { width: 180px; height: 180px; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%); border-radius: 50%; margin-bottom: 15px; transition: all 0.5s ease; position: relative; }
        .client-logo-wrapper::after { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s; }
        .client-interactive-card:hover .client-logo-wrapper::after { border-color: rgba(0, 191, 255, 0.3); box-shadow: 0 0 20px rgba(0, 191, 255, 0.1); }
        .client-logo-img { max-width: 80%; max-height: 80%; width: auto; height: auto; object-fit: contain; filter: drop-shadow(0 0 2px rgba(255,255,255,0.2)); transition: all 0.5s ease; }
        .click-hint { font-size: 0.7rem; color: var(--verde-neon); text-transform: uppercase; letter-spacing: 2px; opacity: 0.6; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 8px; transition: 0.3s; }
        
        .client-interactive-card.active .client-logo-wrapper { transform: translateY(-80px) scale(0.6); opacity: 0.5; }
        .client-interactive-card.active .click-hint { opacity: 0; }
        .client-details-drawer { position: absolute; bottom: 0; left: 0; width: 100%; height: auto; max-height: 70%; background: rgba(5, 15, 5, 0.95); border-top: 2px solid var(--verde-neon); backdrop-filter: blur(15px); padding: 30px 20px; text-align: center; transform: translateY(110%); transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275); z-index: 10; display: flex; flex-direction: column; justify-content: flex-start; box-shadow: 0 -10px 30px rgba(0,0,0,0.5); }
        .client-interactive-card.active .client-details-drawer { transform: translateY(0); }
        .client-mini-title { font-size: 1.1rem; color: var(--verde-neon); text-transform: uppercase; font-weight: 800; margin-bottom: 15px; letter-spacing: 1px; }
        .client-desc { font-size: 0.9rem; font-weight: 300; color: #ccc; line-height: 1.5; margin-bottom: 10px; }
        .close-hint { position: absolute; top: 10px; right: 15px; font-size: 1.2rem; color: #666; cursor: pointer; transition: 0.3s; z-index: 20; }
        .close-hint:hover { color: var(--magenta-neon); transform: scale(1.2); }

        .swiper-button-next, .swiper-button-prev { color: var(--blanco) !important; background: rgba(255,255,255,0.05); width: 60px; height: 60px; border-radius: 50%; transition: 0.3s; z-index: 20; }
        .swiper-button-next:after, .swiper-button-prev:after { font-size: 1.5rem !important; font-weight: bold; }
        .swiper-button-prev { left: 0; background-color: rgba(107, 142, 35, 0.2); } .swiper-button-prev:hover { background-color: var(--verde-costa); box-shadow: 0 0 15px rgba(107, 142, 35, 0.5); }
        .swiper-button-next { right: 0; background-color: rgba(0, 191, 255, 0.2); } .swiper-button-next:hover { background-color: var(--celeste-mar); box-shadow: 0 0 15px rgba(0, 191, 255, 0.5); }
        
        /* --- ESTILOS EXCLUSIVOS DESKTOP (CLIENTES EN DOS COLUMNAS Y EXPANSIÓN) --- */
        @media (min-width: 769px) {
            .carousel-container-relative { padding: 0 20px; }
            #nuestros-clientes .swiper-button-next, 
            #nuestros-clientes .swiper-button-prev { display: none !important; }

            .clientes-grid-desktop {
                display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; max-width: 1300px; margin: 0 auto;
            }
            .clientes-grid-desktop .swiper-slide { height: 220px; }
            .clientes-grid-desktop .client-interactive-card { min-height: unset; height: 100%; justify-content: center; }
            .clientes-grid-desktop .client-logo-wrapper { width: 140px; height: 140px; margin: 0; }
            .clientes-grid-desktop .click-hint { display: none; }
            .clientes-grid-desktop .client-details-drawer { display: none; }

            .clientes-grid-desktop.has-expanded {
                display: flex; justify-content: center; max-width: 100%; width: 100%; margin: 0 auto;
            }
            .clientes-grid-desktop.has-expanded .swiper-slide { display: none; } 
            .clientes-grid-desktop.has-expanded .swiper-slide.is-expanded {
                display: block; width: 100%; max-width: 900px; height: auto; min-height: 350px; margin: 0;
            }
            .clientes-grid-desktop.has-expanded .client-interactive-card {
                flex-direction: row; cursor: default; padding: 40px 50px; justify-content: center; align-items: center; gap: 20px; width: 100%; box-sizing: border-box;
            }
            .clientes-grid-desktop.has-expanded .client-interactive-card:hover { transform: none; box-shadow: 0 0 30px rgba(0, 191, 255, 0.2); }
            
            .clientes-grid-desktop.has-expanded .client-front { width: 45%; height: auto; flex: none; }
            .clientes-grid-desktop.has-expanded .client-logo-wrapper {
                width: 200px; height: 200px; transform: none !important; opacity: 1 !important; margin: 0 auto;
            }
            
            .clientes-grid-desktop.has-expanded .client-details-drawer {
                display: flex; position: relative; width: 55%; height: auto; transform: none; background: transparent; border: none; box-shadow: none; justify-content: center; align-items: flex-start; text-align: left; padding: 0 0 0 30px; border-left: 1px solid rgba(255,255,255,0.1); flex: none;
            }
            .clientes-grid-desktop.has-expanded .close-hint { position: absolute; top: -20px; right: 0; font-size: 1.5rem; display: block; }
            .clientes-grid-desktop.has-expanded .client-mini-title { font-size: 1.5rem; margin-bottom: 20px; }
            .clientes-grid-desktop.has-expanded .client-desc { font-size: 1rem; }
        }

        .contacto-section { padding: 140px 5%; background: transparent; overflow: hidden; }
        .contacto-container { max-width: 600px; margin: 0 auto; position: relative; z-index: 2; }
        .contacto-card { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.05); padding: 50px 40px; border-radius: 30px; }
        .form-input { width: 100%; background: transparent; border: 2px solid rgba(255,255,255,0.1); padding: 15px; color: white; border-radius: 8px; transition: 0.3s; outline: none; }
        .form-input:focus { border-color: var(--verde-neon); box-shadow: 0 0 15px rgba(107, 142, 35, 0.2); background: rgba(107, 142, 35, 0.05); }
        .btn-whatsapp { width: 100%; padding: 18px; background-color: var(--verde-neon); color: white; font-weight: 800; text-transform: uppercase; border: none; border-radius: 8px; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 35px; }
        .btn-whatsapp:hover { background-color: white; color: var(--negro-profundo); box-shadow: 0 0 30px rgba(107, 142, 35, 0.6); transform: translateY(-2px); }

        footer { background-color: #000; padding: 50px 5%; text-align: center; border-top: 1px solid rgba(0, 191, 255, 0.2); }
        .social-icons { display: flex; gap: 30px; margin-bottom: 20px; justify-content: center; }
        .social-icons a { color: var(--gris); font-size: 1.8rem; transition: 0.3s; }
        .social-icons a:hover { color: var(--celeste-mar); transform: scale(1.1); }

        /* --- RESPONSIVE MÓVIL --- */
        @media (max-width: 1024px) { 
            .hero-floating-card { display: none; } 
            .plan-card { width: calc(50% - 15px); }
        }
        
        @media (max-width: 768px) {
            header { flex-direction: row; padding: 15px 5%; height: 75px; width: 100%; box-sizing: border-box; }
            .menu-toggle { display: block; position: relative; z-index: 1003; }
            .logo { z-index: 1003; }
            
            nav { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: rgba(5,5,5,0.98); backdrop-filter: blur(15px); display: flex; flex-direction: column; justify-content: center; align-items: center; transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1); max-height: 100vh; opacity: 1; z-index: 1001; }
            nav.open { right: 0; }
            nav ul { flex-direction: column; gap: 40px; font-size: 1.2rem; }
            .dropdown-menu { position: relative; top: 0; left: 0; transform: none; box-shadow: none; border: none; background: transparent; padding-top: 15px; display: none; }

            .hero { padding-top: 160px; } 
            .hero h1 { font-size: 2.5rem; }
            .hero-content { padding-bottom: 80px; } 
            
            .scroll-indicator { bottom: 10px; }
            .campos-section { padding: 50px 5% 80px; }
            
            .hero-floating-card { display: flex !important; padding: 0; border-radius: 50%; width: 45px; height: 45px; justify-content: center; border-left: none !important; border: 1px solid rgba(255,255,255,0.2); }
            .hero-floating-card .float-text { display: none; }
            .hero-floating-card i { font-size: 1.2rem; margin: 0; }
            .card-1 { top: 12%; left: 5%; border-color: var(--azul-electrico); animation: floatCardMobile1 4s infinite alternate ease-in-out; }
            .card-2 { bottom: 25%; right: 5%; border-color: var(--verde-neon); animation: floatCardMobile2 5s infinite alternate ease-in-out; }
            .card-3 { top: 22%; right: 8%; border-color: #ff0055; animation: floatCardMobile3 6s infinite alternate ease-in-out; }
            .card-4 { bottom: 15%; left: 8%; animation: floatCardMobile4 4.5s infinite alternate ease-in-out; }

            .services-columns-wrapper { flex-direction: column; gap: 15px; }
            .service-column { gap: 15px; }
            .campos-legend { flex-direction: column; align-items: center; gap: 15px; }

            .myPlanesCarousel { overflow: hidden !important; padding-bottom: 60px !important; width: 100%; touch-action: pan-y; }
            .myPlanesCarousel .swiper-wrapper { display: flex; flex-wrap: nowrap; gap: 0; }
            .myPlanesCarousel .swiper-slide { width: 85% !important; height: auto; display: flex; justify-content: center; box-sizing: border-box; }
            
            .plan-card { width: 100%; min-width: unset !important; max-width: unset !important; height: 100%; margin: 0; }
            .plan-card.plan-recommended { transform: none; }
            .plan-card.plan-recommended:hover { transform: translateY(-5px); }
            
            .planes-pagination { display: block; bottom: 0 !important; }
            .planes-pagination .swiper-pagination-bullet { background: var(--celeste-mar); }
            .planes-pagination .swiper-pagination-bullet-active { background: var(--verde-neon); width: 20px; border-radius: 10px; }
            
            .mobile-swipe-hint { display: block; text-align: center; color: var(--celeste-mar); font-size: 0.8rem; margin-bottom: 25px; letter-spacing: 1px; text-transform: uppercase; animation: pulseHint 2s infinite; font-weight: bold; }
            
            .compare-floating-bar { width: 90%; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 10px; padding: 15px; text-align: center; border-radius: 15px; }
            .modal-body { padding: 15px; }
            
            .carousel-container-relative { padding: 0 15px; }
            
            .swipe-indicator-clientes { 
                display: flex; align-items: center; justify-content: center; gap: 10px; 
                color: var(--verde-neon); font-size: 0.75rem; margin-bottom: 20px; 
                letter-spacing: 1px; text-transform: uppercase; font-weight: bold; 
            }
            
            #nuestros-clientes .swiper-button-prev,
            #nuestros-clientes .swiper-button-next {
                display: flex !important; width: 40px; height: 40px; margin-top: -20px;
            }
            #nuestros-clientes .swiper-button-prev::after,
            #nuestros-clientes .swiper-button-next::after {
                font-size: 1.2rem !important;
            }
            #nuestros-clientes .swiper-button-prev { left: 5px; }
            #nuestros-clientes .swiper-button-next { right: 5px; }
            
            .myClientesCarousel { padding-bottom: 50px !important; padding-left: 35px; padding-right: 35px; }
            .myClientesCarousel:not(.expanded-mode) { height: 420px; }
            .myClientesCarousel:not(.expanded-mode) .swiper-slide { height: calc((100% - 15px) / 2) !important; display: flex; justify-content: center; }
            
            .myClientesCarousel .client-interactive-card { min-height: unset; padding: 10px; }
            .myClientesCarousel .client-logo-wrapper { width: 80px; height: 80px; margin-bottom: 0; }
            .myClientesCarousel .click-hint { display: none; }
            .myClientesCarousel .client-details-drawer { display: none; }

            .myClientesCarousel.expanded-mode { height: auto !important; padding-left: 0 !important; padding-right: 0 !important; }
            .myClientesCarousel .swiper-wrapper.has-expanded { display: block !important; width: 100% !important; transform: translate3d(0,0,0) !important; box-sizing: border-box; }
            .myClientesCarousel .swiper-wrapper.has-expanded .swiper-slide { display: none !important; margin: 0 !important; }
            .myClientesCarousel .swiper-wrapper.has-expanded .swiper-slide.is-expanded { display: block !important; width: 100% !important; max-width: 100% !important; height: auto !important; margin-top: 0 !important; box-sizing: border-box; }
            
            .myClientesCarousel .swiper-wrapper.has-expanded .client-interactive-card { flex-direction: column; padding: 30px 20px; cursor: default; min-height: 350px; width: 100% !important; box-sizing: border-box; }
            .myClientesCarousel .swiper-wrapper.has-expanded .client-logo-wrapper { width: 140px; height: 140px; transform: none; opacity: 1; margin: 0 auto 20px auto; }
            .myClientesCarousel .swiper-wrapper.has-expanded .client-details-drawer { display: flex; position: relative; width: 100%; transform: none; background: transparent; border: none; box-shadow: none; padding: 0; text-align: center; }
            .myClientesCarousel .swiper-wrapper.has-expanded .close-hint { position: absolute; top: -180px; right: 0; font-size: 1.5rem; display: block; color: #fff; }
            
            .clientes-pagination { bottom: 0 !important; }
            .clientes-pagination .swiper-pagination-bullet { background: var(--verde-neon); }
            .clientes-pagination .swiper-pagination-bullet-active { background: var(--blanco); width: 20px; border-radius: 10px; }
            .myClientesCarousel.expanded-mode .clientes-pagination { display: none; }
        }

        @keyframes floatCardMobile1 { 0% { transform: translateY(0) scale(1); } 100% { transform: translateY(-10px) scale(1.05); } }
        @keyframes floatCardMobile2 { 0% { transform: translateY(0) scale(1); } 100% { transform: translateY(10px) scale(1.05); } }
        @keyframes floatCardMobile3 { 0% { transform: translateX(0) scale(1); } 100% { transform: translateX(-10px) scale(1.05); } }
        @keyframes floatCardMobile4 { 0% { transform: translateX(0) scale(1); } 100% { transform: translateX(10px) scale(1.05); } }
        @keyframes pulseHint { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; text-shadow: 0 0 10px var(--celeste-mar); } }
        @keyframes pulseHintVerde { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; text-shadow: 0 0 10px var(--verde-neon); } }
/* Desplazamiento de anclas por debajo del header fijo */
section[id] { scroll-margin-top: 90px; }

/* --- BOTÓN CONTÁCTANOS HERO --- */
.btn-contactanos-hero {
    padding: 16px 45px;
    background: linear-gradient(135deg, rgba(0,191,255,0.15), rgba(255,0,85,0.1));
    border: 2px solid var(--celeste-mar);
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 800;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(0,191,255,0.35), 0 0 50px rgba(0,191,255,0.15), inset 0 0 20px rgba(0,191,255,0.05);
    animation: contactanoPulse 2.5s ease-in-out infinite;
}
.btn-contactanos-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,191,255,0.2), rgba(255,0,85,0.15));
    opacity: 0;
    transition: opacity 0.4s;
}
.btn-contactanos-hero:hover {
    background: linear-gradient(135deg, rgba(0,191,255,0.35), rgba(255,0,85,0.2));
    box-shadow: 0 0 40px rgba(0,191,255,0.6), 0 0 80px rgba(0,191,255,0.3);
    transform: translateY(-4px) scale(1.03);
    border-color: #fff;
    animation-play-state: paused;
}
.btn-contactanos-hero:hover::before { opacity: 1; }
@keyframes contactanoPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0,191,255,0.35), 0 0 50px rgba(0,191,255,0.15); }
    50% { box-shadow: 0 0 35px rgba(0,191,255,0.7), 0 0 80px rgba(0,191,255,0.35), 0 0 120px rgba(0,191,255,0.1); }
}

/* --- BOTÓN AGENDA LLAMADA --- */
.btn-agenda-llamada {
    width: 100%;
    padding: 18px;
    background-color: var(--celeste-mar);
    color: var(--negro-profundo);
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}
.btn-agenda-llamada:hover {
    background-color: white;
    color: var(--negro-profundo);
    box-shadow: 0 0 30px rgba(0,191,255,0.6);
    transform: translateY(-2px);
}

/* --- PANTALLAS DE AGRADECIMIENTO / CONFIRMACIÓN --- */
.thanks-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s;
    pointer-events: none;
}
.thanks-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.thanks-video-bg {
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    opacity: 0.45;
}
.thanks-overlay-dark {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.88) 100%);
}
.thanks-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    animation: thanksAppear 0.7s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes thanksAppear {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.thanks-logo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    animation: logoPulse 1.6s ease-in-out infinite;
}
.thanks-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 6px;
    color: #fff;
    text-shadow: 0 0 30px rgba(0,191,255,0.5);
    margin-bottom: 16px;
}
.thanks-line {
    width: 120px;
    height: 2px;
    margin: 0 auto 30px;
    background: linear-gradient(90deg, var(--verde-neon), var(--celeste-mar));
    box-shadow: 0 0 15px var(--verde-neon);
    border-radius: 2px;
}
.thanks-msg {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.5;
}
.thanks-msg span {
    display: block;
    font-size: 1rem;
    font-weight: 300;
    color: #bbb;
    margin-top: 8px;
}
.btn-thanks-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 36px;
    padding: 14px 36px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}
.btn-thanks-back:hover {
    border-color: var(--celeste-mar);
    color: var(--celeste-mar);
    box-shadow: 0 0 20px rgba(0,191,255,0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .thanks-brand { font-size: 1.4rem; letter-spacing: 4px; }
    .thanks-msg { font-size: 1.1rem; }
    .thanks-logo-icon { width: 60px; height: 60px; }
    .contacto-btns-row { flex-direction: column; }
}
