/* ============================================
   RESET Y CONFIGURACIONES GLOBALES
   ============================================ */
   *,*::before,*::after{box-sizing:border-box}
   html,body{height:100%;scroll-behavior:smooth}
   body{margin:0;font-family:ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Noto Sans";color:#ffffff;background:#0b1020;line-height:1.6}
   img{max-width:100%;display:block}
   a{color:inherit;text-decoration:none}
   .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
   
   /* ============================================
      VARIABLES CSS
      ============================================ */
   :root{
     --bg:#0b1020;--bg-elev:#0f172a;--card:#111935;--muted:#94a3b8;--brand:#3bbcf5;--brand-2:#0074d9;--brand-3:#0042a4;--accent:#042c63;--bg-dark:#020d26;--text:#e2e8f0;--danger:#ef4444;--ok:#10b981;
     --radius:18px;--shadow:0 10px 25px rgba(0,0,0,.35);
     --theme-icon: "🌙";
   }
   
   /* ============================================
      ANIMACIONES Y KEYFRAMES
      ============================================ */
   @keyframes gradientShift {
     0% { background-position: 0% 50%; }
     50% { background-position: 100% 50%; }
     100% { background-position: 0% 50%; }
   }
   
   @keyframes fadeInUp {
     from { opacity: 0; transform: translateY(30px); }
     to { opacity: 1; transform: translateY(0); }
   }
   
   @keyframes rotate {
     from { transform: rotate(0deg); }
     to { transform: rotate(360deg); }
   }
   
   @keyframes lavaFloat1 {
     0%, 100% { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); border-radius: 50% 45% 48% 52%; }
     25% { transform: translate3d(30px, -40px, 0) scale(1.08) rotate(90deg); border-radius: 48% 52% 45% 55%; }
     50% { transform: translate3d(-20px, -60px, 0) scale(1.15) rotate(180deg); border-radius: 52% 48% 55% 45%; }
     75% { transform: translate3d(-40px, -30px, 0) scale(1.05) rotate(270deg); border-radius: 45% 55% 50% 50%; }
   }
   
   @keyframes lavaFloat2 {
     0%, 100% { transform: translate3d(0, 0, 0) scale(1) rotate(0deg); border-radius: 48% 52% 50% 50%; }
     30% { transform: translate3d(-35px, 45px, 0) scale(1.1) rotate(120deg); border-radius: 55% 45% 52% 48%; }
     60% { transform: translate3d(25px, 70px, 0) scale(1.18) rotate(240deg); border-radius: 50% 50% 45% 55%; }
     85% { transform: translate3d(40px, 35px, 0) scale(1.06) rotate(300deg); border-radius: 52% 48% 48% 52%; }
   }
   
   @keyframes lavaShift {
     0%, 100% { background-position: 60% 40%, 30% 70%; transform: scale(1) translateZ(0); }
     33% { background-position: 45% 60%, 70% 35%; transform: scale(1.1) translateZ(0); }
     66% { background-position: 75% 50%, 25% 80%; transform: scale(0.95) translateZ(0); }
   }
   
   /* ============================================
      LAYOUT Y CONTENEDORES
      ============================================ */
   .container{width:100%;max-width:1200px;margin-inline:auto;padding:0 1.25rem}
   
   /* Grid System */
   .grid{display:grid;gap:1rem;}
   .grid.cols-3{grid-template-columns:repeat(3,minmax(0,1fr));}
   .grid.cols-2{grid-template-columns:repeat(2,minmax(0,1fr)); text-align: justify;}
   
   /* Secciones generales */
   section{padding:4rem 0; text-align: center;}
   .section-title{font-size:clamp(1.5rem,3vw,2rem);margin:.25rem 0 1rem}
   
   /* ============================================
      COMPONENTES REUTILIZABLES
      ============================================ */
   
   /* Botones */
   .btn{display:inline-flex;align-items:center;gap:.5rem;padding:.8rem 1.1rem;border-radius:12px;background:linear-gradient(135deg, var(--brand-2), var(--brand-3));color:#ffffff;font-weight:700;box-shadow:var(--shadow);border:0;cursor:pointer;transition:all 0.3s ease;position:relative;overflow:hidden}
   .btn::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);transition:left 0.5s}
   .btn:hover::before{left:100%}
   .btn:hover{transform:translateY(-2px);box-shadow:0 15px 30px rgba(0, 116, 217, 0.4);background:linear-gradient(135deg, var(--brand), var(--brand-2))}
   
   .btn.secondary{background:transparent;outline:1px solid var(--brand-2);color:var(--brand);transition:all 0.3s ease}
   .btn.secondary:hover{background:rgba(59, 188, 245, 0.1);outline:1px solid var(--brand);transform:translateY(-2px);box-shadow:0 8px 20px rgba(0, 66, 164, 0.3)}
   
   .btn2{display:block;align-items:center;gap:.5rem;padding:.8rem 1.1rem;border-radius:12px;background:linear-gradient(135deg, var(--brand-2), var(--brand-3));color:#ffffff;font-weight:700;box-shadow:var(--shadow);border:0;cursor:pointer;transition:all 0.3s ease}
   .btn2:hover{transform:translateY(-2px);box-shadow:0 15px 30px rgba(0, 116, 217, 0.4);background:linear-gradient(135deg, var(--brand), var(--brand-2))}
   
   /* Badge */
   .badge{display:inline-block;padding:.35rem .6rem;border-radius:999px;font-size:.75rem;background:linear-gradient(135deg, rgba(0, 66, 164, 0.2), rgba(59, 188, 245, 0.15));border:1px solid rgba(0, 116, 217, 0.3);color:var(--brand)}
   
   /* Card */
   .card{background:var(--card);border:1px solid rgba(148,163,184,.15);border-radius:var(--radius);padding:1.1rem;box-shadow:var(--shadow);transition:all 0.3s ease}
   .card:hover{transform:translateY(-5px);box-shadow:0 15px 30px rgba(0,66,164,0.2);border-color:var(--brand-2)}
   .card h3{margin:.25rem 0}
   .card p{color:var(--muted)}
   
   /* KPI Cards */
   .kpis{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1rem;margin-top:2rem}
   .kpi{background:rgba(255,255,255,0.1);border-radius:var(--radius);padding:1rem 1.2rem;border:1px solid rgba(255,255,255,0.2);color: white;transition:all 0.3s ease; display:flex; align-items:center; text-align:center; justify-content:center;}
   .kpi:hover{transform:translateY(-3px);box-shadow:0 10px 20px rgba(59,188,245,0.3);border-color:var(--brand)}
   .kpi b{display:block;font-size:1.4rem;color: white; margin-bottom:0.5rem}
   .kpi span{color: rgba(255,255,255,0.8); display:block; margin-top:0.3rem}
   .kpi-icon{width:55px; height:60px; margin-bottom:0.5rem; filter:brightness(0) invert(1); transition:all 0.3s ease}
   .kpi:hover .kpi-icon{transform:scale(1.1); filter:brightness(0) invert(1) drop-shadow(0 0 8px rgba(59, 188, 245, 0.5))}
   
   /* Quote & Avatar */
   .quote{font-size:1rem}
   .avatar{display:flex;align-items:center;gap:.7rem;margin-top:1rem;transition:all 0.3s ease}
   .avatar:hover{transform:translateX(5px)}
   .avatar img{width:36px;height:36px;border-radius:999px;border:2px solid rgba(148,163,184,.25);transition:all 0.3s ease}
   .avatar:hover img{border-color:var(--brand)}
   
   /* Formularios */
   form{display:grid;gap:.8rem}
   .form-row{display:grid;grid-template-columns:1fr 1fr;gap:.8rem}
   input,textarea,select{width:100%;padding:.9rem 1rem;border-radius:12px;border:1px solid rgba(148,163,184,.25);background:rgba(2,6,23,.35);color:var(--text);transition:all 0.3s ease}
   input:focus,textarea:focus,select:focus{outline:2px solid var(--brand);border-color:transparent;box-shadow:0 0 0 3px rgba(59,188,245,0.1)}
   .legal{font-size:.85rem;color:var(--muted)}
   
   /* CTA Band */
   .cta-band{position:relative;overflow:hidden;border-radius:var(--radius);background:linear-gradient(135deg,rgba(0,66,164,.15),rgba(59,188,245,.12));padding:2rem;border:1px solid rgba(0,116,217,.3);margin:3rem 0;transition:all 0.3s ease}
   .cta-band:hover{transform:translateY(-3px);box-shadow:0 15px 30px rgba(0,66,164,0.25);border-color:var(--brand)}
   
   /* ============================================
      HEADER Y NAVEGACIÓN
      ============================================ */
   header {
     position: fixed;
     top: 0;
     width: 100%;
     z-index: 50;
     background: linear-gradient(135deg, rgba(11, 16, 32, 0.95) 0%, rgba(15, 23, 42, 0.98) 100%);
     backdrop-filter: saturate(180%) blur(15px);
     border-bottom: 1px solid rgba(148, 163, 184, 0.1);
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   }
   header.header-hidden {transform: translateY(-100%); opacity: 0;}
   header.header-visible {transform: translateY(0) !important; opacity: 1 !important;}
   
   .nav {display: flex; align-items: center; justify-content: space-between; min-height: 64px;}
   .logo {display: flex; align-items: center; gap: .6rem; font-weight: 900; letter-spacing: .4px;}
   .logo-img {width: 120px; height: auto; transition: all 0.3s ease; filter: brightness(1.2) contrast(1.1);}
   .logo:hover .logo-img {transform: scale(1.05); filter: drop-shadow(0 2px 12px rgba(59, 188, 245, 0.4));}
   
   /* Navegación principal */
   nav ul {display: flex; gap: 1rem; list-style: none; padding: 0; margin: 0;}
   nav ul li {position: relative; overflow: hidden;}
   nav ul li a {padding: 0.5rem 0.8rem; border-radius: 8px; transition: all 0.3s ease; font-weight: 500; position: relative;}
   nav ul li a::after {content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: linear-gradient(90deg, var(--brand), var(--brand-2)); transition: all 0.3s ease; transform: translateX(-50%);}
   nav ul li a:hover {background: rgba(59, 188, 245, 0.1); color: var(--brand);}
   nav ul li a:hover::after {width: 80%;}
   
   /* Controles de navegación */
   .nav-controls {display: flex; align-items: center; gap: 0.75rem;}
   .theme-toggle {width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; background: rgba(59, 188, 245, 0.15); border: 1px solid rgba(59, 188, 245, 0.3);}
   .theme-toggle:hover {background: rgba(59, 188, 245, 0.25); transform: rotate(15deg); box-shadow: 0 0 15px rgba(59, 188, 245, 0.3);}
   .menu-toggle {display: none; transition: all 0.3s ease; background: rgba(59, 188, 245, 0.15); border: 1px solid rgba(59, 188, 245, 0.3);}
   .menu-toggle:hover {background: rgba(59, 188, 245, 0.25); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(59, 188, 245, 0.2);}
   
   /* ============================================
      HERO SECTION
      ============================================ */
   .hero {
     position: relative;
     isolation: isolate;
     padding: 1rem 0;
     min-height: 100vh;
     display: flex;
     align-items: center;
     overflow: hidden;
   }
   .hero-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image: url('assets/imagenes/FONDO2.jpeg');
     background-size: cover;
     background-position: center;
     z-index: -2;
   }
   .hero-background::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.82);
     z-index: -1;
   }
   .hero-content {text-align: center; color: white; z-index: 1;}
   .hero-logo {max-width: 310px !important; margin: 0 auto 2rem; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));}
   .hero h1{font-size:clamp(2rem,4.5vw,3.2rem);line-height:1.1;margin:.5rem 0}
   .hero p{max-width:775px;margin: 0 auto;color: rgba(255,255,255,0.9)}
   .hero-cta{display:flex;gap:.8rem;flex-wrap:wrap;margin-top:1.2rem;justify-content: center;}
   .hero .hero-gradient {
     background: linear-gradient(135deg, var(--brand), var(--brand-2), var(--brand-3));
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
     background-size: 200% 200%;
     animation: gradientShift 3s ease infinite;
   }
   
   /* Hero interno para páginas secundarias */
   .hero-interno {
     min-height: 50vh;
     padding: 8rem 0 6rem !important;
     position: relative;
     overflow: hidden;
   }
   .hero-interno .hero-background::after {
     background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.45) 100%);
   }
   .hero-interno .hero-content {position: relative; z-index: 2; animation: fadeInUp 0.8s ease-out;}
   .hero-interno h1 {
     font-size: clamp(2.5rem, 5vw, 3.5rem);
     margin-bottom: 1rem;
     background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
     text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
   }
   .hero-interno p {font-size: 1.25rem; max-width: 600px; margin: 0 auto 2rem; opacity: 0.9; color: rgba(255, 255, 255, 0.95);}
   .hero-interno::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: radial-gradient(circle at 20% 30%, rgba(59, 188, 245, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(0, 116, 217, 0.15) 0%, transparent 50%);
     z-index: 1;
   }
   .hero-interno::after {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     right: -50%;
     bottom: -50%;
     background: conic-gradient(from 0deg at 50% 50%, rgba(59, 188, 245, 0.1) 0deg, rgba(0, 116, 217, 0.1) 90deg, rgba(0, 66, 164, 0.1) 180deg, rgba(59, 188, 245, 0.1) 270deg, rgba(59, 188, 245, 0.1) 360deg);
     animation: rotate 20s linear infinite;
     z-index: 1;
     opacity: 0.5;
   }
   
   /* ============================================
      SECCIONES ESPECÍFICAS
      ============================================ */
   
   /* Sección Nosotros */
   #nosotros {
     position: relative;
     isolation: isolate;
     padding: 5rem 0;
     overflow: visible;
     background: transparent;
   }
   #nosotros::before, #nosotros::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     background: #000000;
     z-index: -3;
   }
   #nosotros::before {bottom: 0;}
   #nosotros::after {height: 200vh;}
   
   .about-content {padding-right: 2rem;}
   .about-content p {margin-bottom: 1.5rem; color: var(--muted); line-height: 1.7;}
   .about-features {list-style: none; padding: 0; margin: 1.5rem 0;}
   .about-features li {position: relative; padding-left: 1.5rem; margin-bottom: 0.8rem; color: var(--text); transition: all 0.3s ease;}
   .about-features li:hover {transform: translateX(5px);}
   .about-features li:before {content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: bold;}
   
   .about-media {display: flex; align-items: center; justify-content: center;}
   .video-container {position: relative; width: 100%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--card); transition: all 0.3s ease;}
   .video-container:hover {transform: translateY(-2px); box-shadow: 0 15px 30px rgba(0,66,164,0.2);}
   .video-container video {width: 100%; display: block; border-radius: var(--radius);}
   .video-overlay {position: absolute; top: 0; left: 0; right: 0; bottom: 0; display: flex; align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.3); transition: background 0.3s ease;}
   .video-overlay:hover {background: rgba(0, 0, 0, 0.2);}
   .play-btn {width: 70px; height: 70px; border-radius: 50%; background: var(--brand-2); color: #06111a; border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);}
   .play-btn:hover {transform: scale(1.1); background: var(--brand);}
   
   /* Fondo animado para Nosotros y Servicios */
   .animated-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -2;
     background: #000000;
     overflow: hidden;
     transform: translateZ(0);
     backface-visibility: hidden;
     perspective: 1000px;
   }
   .animated-background::before, .animated-background::after {
     content: '';
     position: absolute;
     border-radius: 50%;
     background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.4) 0%, rgba(96, 165, 250, 0.3) 40%, rgba(147, 197, 253, 0.2) 70%, transparent 100%);
     filter: blur(80px);
     opacity: 0.9;
     will-change: transform;
     transform: translateZ(0);
     backface-visibility: hidden;
     contain: layout style paint;
   }
   .animated-background::before {top: -15%; left: -10%; width: 500px; height: 500px; animation: lavaFloat1 20s ease-in-out infinite; transform: translate3d(0, 0, 0);}
   .animated-background::after {bottom: -15%; right: -10%; width: 550px; height: 550px; animation: lavaFloat2 18s ease-in-out infinite; transform: translate3d(0, 0, 0);}
   .animated-background {
     background-image: radial-gradient(circle at 60% 40%, rgba(9, 28, 44, 0.4) 0%, transparent 40%), radial-gradient(circle at 30% 70%, rgba(9, 28, 44, 0.3) 0%, transparent 50%);
     background-size: 400px 400px, 350px 350px;
     background-position: 60% 40%, 30% 70%;
     filter: blur(60px);
     animation: lavaShift 15s ease-in-out infinite;
   }
   
   /* Sección Misión-Visión (Accordion) */
   #mision-vision {padding: 6rem 0; background: var(--bg-elev);}
   .accordion-card {position: relative; cursor: pointer; transition: all 0.3s ease; overflow: hidden;}
   .accordion-card:hover {transform: translateY(-2px); box-shadow: 0 15px 30px rgba(0,66,164,0.2); border-color: var(--brand-2);}
   .accordion-card-header {display: flex; align-items: center; gap: 1rem; padding: 0; background: transparent; border: none; cursor: pointer; text-align: left; width: 100%;}
   .accordion-icon {display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; background: linear-gradient(135deg, var(--brand-2), var(--brand-3)); border-radius: 12px; padding: 10px; flex-shrink: 0; transition: all 0.3s ease;}
   .accordion-card:hover .accordion-icon {background: linear-gradient(135deg, var(--brand), var(--brand-2));}
   .accordion-icon img {filter: brightness(0) invert(1); width: 35px; height: 35px;}
   .accordion-card-header h3 {flex: 1; margin: 0; font-size: 1.3rem; color: var(--text); font-weight: 700;}
   .accordion-arrow {transition: transform 0.3s ease; color: var(--brand); font-size: 1rem; flex-shrink: 0;}
   .accordion-card.expanded .accordion-arrow {transform: rotate(180deg); color: var(--brand-2);}
   .accordion-card-content {max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease; padding: 0;}
   .accordion-card.expanded .accordion-card-content {max-height: 400px; padding: 1rem 0 0;}
   .accordion-card-content p, .accordion-card-content ul {margin: 0; color: var(--muted); line-height: 1.6; font-size: 0.95rem;}
   .accordion-card-content ul {padding-left: 1.5rem;}
   .accordion-card-content li {margin-bottom: 0.6rem; font-size: 0.95rem; transition: all 0.3s ease;}
   .accordion-card-content li:hover {transform: translateX(3px);}
   .accordion-card-content strong {color: var(--text);}
   
   /* Sección Servicios */
   #servicios {
     position: relative;
     isolation: isolate;
     padding: 5rem 0;
     overflow: visible;
     background: transparent;
   }
   
   /* Sección Proyectos */
   .proyectos-slider-container {position: relative; display: flex; align-items: center; margin: 2rem 0;}
   .proyectos-container {display: flex; gap: 1.5rem; overflow-x: hidden; padding: 4rem 2rem; scroll-behavior: smooth; width: 100%;}
   .proyecto-item {position: relative; flex: 0 0 300px; height: 350px; border-radius: var(--radius); box-shadow: var(--shadow); transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); cursor: pointer; margin: 10px 5px;}
   .proyecto-item:hover {transform: translateY(-8px); box-shadow: 0 5px 30px rgba(0,66,164,0.35); border-color: var(--brand-2); z-index: 5;}
   .proyecto-item-inner {position: relative; width: 100%; height: 100%; border-radius: var(--radius); overflow: hidden;}
   .proyecto-front, .proyecto-back {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}
   .proyecto-front {background-size: cover; background-position: center; display: flex; align-items: flex-end; transition: all 0.4s ease;}
   .proyecto-item.expandido .proyecto-front {opacity: 0; visibility: hidden;}
   .proyecto-back {background: var(--card); padding: 2rem; overflow-y: auto; transform: translateX(100%); opacity: 0; transition: all 0.4s ease; cursor: pointer;}
   .proyecto-item.expandido .proyecto-back {transform: translateX(0); opacity: 1;}
   .proyecto-overlay {background: linear-gradient(to top, rgba(13, 14, 15, 0.95), rgba(11, 11, 11, 0.85) 60%, rgba(23, 23, 23, 0.5) 85%, transparent); width: 100%; padding: 2rem 1.5rem 1.5rem; color: white;}
   .proyecto-overlay h3 {margin: 0 0 0.5rem; font-size: 1.3rem; text-shadow: 0 2px 8px rgba(0,0,0,0.9), 0 4px 16px rgba(0,0,0,0.6); font-weight: 700;}
   .proyecto-overlay p {margin: 0 0 1rem; opacity: 1; text-shadow: 0 2px 6px rgba(0,0,0,0.9), 0 3px 12px rgba(0,0,0,0.7); line-height: 1.4;}
   .proyecto-more {font-size: 0.9rem; opacity: 0.95; transition: opacity 0.3s ease; text-shadow: 0 1px 4px rgba(0,0,0,0.8); font-weight: 600;}
   .proyecto-item:hover .proyecto-more {opacity: 1;}
   .proyecto-back h3 {margin: 0 0 1rem; color: var(--text); font-size: 1.4rem;}
   .proyecto-back p {color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem;}
   .proyecto-back ul {list-style: none; padding: 0; margin: 0;}
   .proyecto-back li {padding: 0.5rem 0; border-bottom: 1px solid rgba(148,163,184,0.2); color: var(--muted); transition: all 0.3s ease;}
   .proyecto-back li:hover {transform: translateX(3px); border-color: rgba(148,163,184,0.3);}
   .proyecto-back li:last-child {border-bottom: none;}
   .proyecto-back strong {color: var(--text);}
   
   /* Navegación de proyectos */
   .proyectos-nav-btn {
     position: absolute;
     z-index: 10;
     background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
     color: white;
     border: none;
     border-radius: 50%;
     width: 50px;
     height: 50px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: var(--shadow);
     transition: all 0.3s ease;
     opacity: 0.9;
   }
   .proyectos-nav-btn:hover {opacity: 1; transform: scale(1.05); background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 10px 20px rgba(0,66,164,0.4);}
   .proyectos-prev {left: -25px;}
   .proyectos-next {right: -25px;}
   
   /* ============================================
      SECCIÓN CLIENTES - ACTUALIZADA
      ============================================ */
   #clientes {padding: 5rem 0; background: var(--bg);}
   
   .clients-slider-container {
     position: relative;
     display: flex;
     align-items: center;
     margin: 2rem 0;
   }
   
   .clients-container {
     display: flex;
     gap: 4rem;
     overflow-x: hidden;
     padding: 3rem 2rem;
     scroll-behavior: smooth;
     width: 100%;
     border-radius: var(--radius);
     background: rgb(255, 255, 255);
     box-shadow: var(--shadow);
     transition: all 0.3s ease;
   }
   
   .clients-container:hover {
     box-shadow: 0 15px 30px rgba(0,66,164,0.2);
   }
   
   .clients-group {
     flex: 0 0 100%;
     display: flex;
     flex-direction: column;
     gap: 2.5rem;
     padding: 0 2.5rem;
   }
   
   .client-row {
     display: flex;
     justify-content: center;
     align-items: center;
     gap: 2.5rem;
   }
   
   .client-item {
     flex: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     background: rgb(255, 255, 255);
     padding: 2rem;
     border-radius: var(--radius);
     box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
     transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
     border: 1px solid transparent;
     min-height: 160px;
     margin: 8px;
     position: relative;
   }
   
   .client-item:hover {
     transform: translateY(-8px) scale(1.02);
     box-shadow: 0 20px 40px rgba(0,66,164,0.25);
     border-color: var(--brand);
     z-index: 5;
   }
   
   .client-logo-container {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 100%;
     height: 100%;
     padding: 10px;
   }
   
   .client-logo {
     max-width: 85%;
     max-height: 70px;
     width: auto;
     height: auto;
     object-fit: contain;
     transition: all 0.4s ease;
     filter: grayscale(0%) brightness(90%);
     opacity: 0.85;
   }
   
   .client-item:hover .client-logo {
     filter: grayscale(0%) brightness(100%);
     opacity: 1;
     transform: scale(1.1);
   }
   
   .clients-nav-btn {
     position: absolute;
     z-index: 10;
     background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
     color: white;
     border: none;
     border-radius: 50%;
     width: 50px;
     height: 50px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: var(--shadow);
     transition: all 0.3s ease;
     opacity: 0.9;
   }
   
   .clients-nav-btn:hover {
     opacity: 1;
     transform: scale(1.05);
     background: linear-gradient(135deg, var(--brand), var(--brand-2));
     box-shadow: 0 10px 20px rgba(0,66,164,0.4);
   }
   
   .clients-prev {
     left: -25px;
   }
   
   .clients-next {
     right: -25px;
   }
   
   /* Sección Proveedores */
   #proveedores {padding: 5rem 0; background: var(--bg);}
   .proveedores-slider-container {position: relative; display: flex; align-items: center; margin: 2rem 0;}
   .proveedores-container {display: flex; gap: 4rem; overflow-x: hidden; padding: 3rem 2rem; scroll-behavior: smooth; width: 100%; border-radius: var(--radius); background: rgb(255, 255, 255); box-shadow: var(--shadow); transition: all 0.3s ease;}
   .proveedores-container:hover {box-shadow: 0 15px 30px rgba(0,66,164,0.2);}
   .proveedores-group {flex: 0 0 100%; display: flex; flex-direction: column; gap: 2rem;}
   .proveedores-row {display: flex; justify-content: center; align-items: center; gap: 2rem;}
   .proveedor-item {flex: 1; display: flex; align-items: center; justify-content: center; background: rgb(255, 255, 255); padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow); transition: all 0.3s ease; min-height: 150px;}
   .proveedor-item:hover {transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,66,164,0.2); border-color: var(--brand);}
   .proveedor-img-container {display: flex; align-items: center; justify-content: center; width: 100%; height: 100%;}
   .proveedor-img {max-width: 85%; max-height: 80px; width: auto; height: auto; object-fit: contain; transition: all 0.3s ease; filter: brightness(100%);}
   .proveedor-item:hover .proveedor-img {filter: brightness(100%); opacity: 1; transform: scale(1.05);}
   .proveedores-nav-btn {
     position: absolute;
     z-index: 10;
     background: linear-gradient(135deg, var(--brand-2), var(--brand-3));
     color: white;
     border: none;
     border-radius: 50%;
     width: 50px;
     height: 50px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: var(--shadow);
     transition: all 0.3s ease;
     opacity: 0.9;
   }
   .proveedores-nav-btn:hover {opacity: 1; transform: scale(1.05); background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 10px 20px rgba(0,66,164,0.4);}
   .proveedores-prev {left: -25px;}
   .proveedores-next {right: -25px;}
   
   /* Sección Contacto */
   /* (Los estilos de formulario ya están en Componentes Reutilizables) */
   
   /* ============================================
      FOOTER
      ============================================ */
   footer {
     padding: 3rem 0 1rem;
     border-top: 1px solid rgba(148,163,184,.15);
     background: rgba(2,6,23,.35);
     text-align: center;
   }
   .foot {
     display: grid;
     grid-template-columns: 2fr 1fr 1fr;
     gap: 2rem;
     align-items: start;
     text-align: left;
   }
   .foot > div:first-child {text-align: left;}
   .foot h4 {margin: 0 0 1rem; color: var(--text); font-size: 1.1rem;}
   .foot nav ul {list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem;}
   .foot nav a {color: #cbd5e1; transition: all 0.3s ease; display: inline-block;}
   .foot nav a:hover {color: var(--brand); transform: translateX(3px);}
   .sub {
     display: flex;
     justify-content: space-between;
     align-items: center;
     border-top: 1px dashed rgba(148,163,184,.25);
     margin-top: 2rem;
     padding-top: 1.5rem;
     color: #94a3b8;
     flex-wrap: wrap;
     gap: 1rem;
   }
   
   /* ============================================
      EFECTOS DE REVELADO
      ============================================ */
   .reveal-section {
     opacity: 0;
     transform: translateY(30px);
     filter: blur(8px);
     transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   }
   .reveal-section.revealed {
     opacity: 1;
     transform: translateY(0);
     filter: blur(0);
     box-shadow: 0 0 30px rgba(0,66,164,0.1);
   }
   
   #nosotros, #mision-vision, #servicios, #proyectos, #clientes, #proveedores, #contacto {
     opacity: 0;
     transform: translateY(30px);
     filter: blur(8px);
     transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
   }
   #nosotros.revealed, #mision-vision.revealed, #servicios.revealed, #proyectos.revealed, #clientes.revealed, #proveedores.revealed, #contacto.revealed {
     opacity: 1;
     transform: translateY(0);
     filter: blur(0);
   }
   
   #nosotros.revealed { transition-delay: 0.1s; }
   #mision-vision.revealed { transition-delay: 0.2s; }
   #servicios.revealed { transition-delay: 0.3s; }
   #proyectos.revealed { transition-delay: 0.4s; }
   #clientes.revealed { transition-delay: 0.5s; }
   #proveedores.revealed { transition-delay: 0.6s; }
   #contacto.revealed { transition-delay: 0.7s; }
   
   /* ============================================
      MENÚ MÓVIL
      ============================================ */
   @media (max-width:900px) {
     nav ul {display: none;}
     .menu-toggle {display: inline-flex;}
     
     .mobile-menu {
       position: fixed;
       inset: 64px 0 auto 0;
       background: rgba(15, 23, 42, 0.98);
       backdrop-filter: saturate(180%) blur(20px);
       border-bottom: 1px solid rgba(148, 163, 184, 0.15);
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
       max-height: 0;
       opacity: 0;
       visibility: hidden;
       transform: translateY(-20px);
       transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
       overflow: hidden;
       z-index: 100;
     }
     .mobile-menu.open {
       max-height: 500px;
       opacity: 1;
       visibility: visible;
       transform: translateY(0);
     }
     .mobile-menu ul {
       list-style: none;
       margin: 0;
       padding: 1.5rem 1rem;
       border-top: 1px solid rgba(148,163,184,.1);
     }
     .mobile-menu li {
       padding: 0;
       margin-bottom: 0.5rem;
       opacity: 0;
       transform: translateX(-30px);
       transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
     }
     .mobile-menu.open li {opacity: 1; transform: translateX(0);}
     .mobile-menu.open li:nth-child(1) { transition-delay: 0.05s; }
     .mobile-menu.open li:nth-child(2) { transition-delay: 0.1s; }
     .mobile-menu.open li:nth-child(3) { transition-delay: 0.15s; }
     .mobile-menu.open li:nth-child(4) { transition-delay: 0.2s; }
     .mobile-menu.open li:nth-child(5) { transition-delay: 0.25s; }
     .mobile-menu.open li:nth-child(6) { transition-delay: 0.3s; }
     .mobile-menu li a,
     .mobile-menu li button {
       display: block;
       padding: 0.8rem 1rem;
       border-radius: 8px;
       transition: all 0.3s ease;
       border-bottom: 1px dashed rgba(148,163,184,.2);
       background: rgba(59, 188, 245, 0.08);
       border: 1px solid rgba(59, 188, 245, 0.2);
       margin: 0.25rem 0;
     }
     .mobile-menu li:last-child a,
     .mobile-menu li:last-child button {border-bottom: none;}
     .mobile-menu li:hover {background: rgba(59,188,245,0.05);}
     .mobile-menu li a:hover,
     .mobile-menu li button:hover {
       background: rgba(59,188,245,0.2);
       border-color: rgba(59,188,245,0.4);
       transform: translateX(8px);
       box-shadow: 0 4px 12px rgba(59, 188, 245, 0.15);
     }
     .mobile-menu .btn.secondary {
       width: 100%;
       justify-content: center;
       margin-top: 0.5rem;
     }
   }
   @media (min-width:901px) {.mobile-menu {display: none !important;}}
   
   /* ============================================
      AVISO DE PRIVACIDAD Y ESTILOS DE IMPRESIÓN
      ============================================ */
   #aviso-privacidad {padding: 4rem 0; background: var(--bg-elev);}
   .legal-content {max-width: 900px; margin: 0 auto; text-align: left; padding: 2rem; background: white; border-radius: var(--radius); box-shadow: var(--shadow);}
   
   /* Cabecera para impresión */
   .print-header {display: flex; align-items: center; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid #0066cc;}
   .print-title {flex: 0.9; text-align: center;}
   .print-title h1 {font-size: 1.8rem; margin: 0; color: #003366; text-transform: uppercase; letter-spacing: 1px;}
   .print-subtitle {font-size: 1.2rem; color: #666; margin: 0.2rem 0 0; font-weight: bold;}
   .print-info {display: flex; justify-content: space-between; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid #ddd; font-size: 0.9rem;}
   .legal-intro {margin-bottom: 2rem; padding: 0.5rem 0;}
   .legal-article {margin-bottom: 1.8rem; page-break-inside: avoid;}
   .legal-article h3 {color: #003366; margin-bottom: 0.8rem; font-size: 1.1rem; line-height: 1.4; background: #f0f8ff; padding: 0.5rem 0.8rem; border-left: 4px solid #0066cc;}
   .legal-article h4 {color: #003366; margin: 1rem 0 0.5rem; font-size: 1rem;}
   .legal-article p {margin-bottom: 0.8rem; line-height: 1.5; color: #333; font-size: 0.95rem;}
   .legal-article ul {padding-left: 1.2rem; margin-bottom: 0.8rem;}
   .legal-article li {margin-bottom: 0.3rem; line-height: 1.4; color: #333; font-size: 0.95rem;}
   .legal-subsection {margin: 1rem 0; padding: 0.8rem; background: #f9f9f9; border-radius: 4px; border-left: 3px solid #ddd;}
   .contact-info {background: #e6f2ff; border: 1px solid #b3d9ff; padding: 0.8rem 1rem; margin: 1rem 0; border-radius: 4px;}
   .contact-info p {margin: 0; color: #0066cc; font-size: 1rem;}
   .print-footer {margin-top: 2rem; padding-top: 1rem; border-top: 1px solid #ddd;}
   .print-footer hr {border: none; height: 1px; background: #ddd; margin: 0 0 1rem;}
   .footer-info {text-align: center; font-size: 0.85rem; color: #666; line-height: 1.4;}
   .print-small {font-size: 0.8rem; color: #999; margin-top: 0.5rem;}
   .action-buttons {display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; flex-wrap: wrap;}
   
   /* Estilos para impresión */
   @media print {
     @page {size: letter; margin: 0.5in;}
     body, .legal-content {margin: 0; padding: 0; background: white !important; color: black !important; width: 100%;}
     header, footer, .action-buttons, .hero, .theme-toggle, .menu-toggle {display: none !important;}
     #aviso-privacidad {padding: 0 !important;}
     .container {max-width: 100% !important; padding: 0 !important;}
     .legal-content {max-width: 100% !important; padding: 0 !important; box-shadow: none !important; border: none !important; background: white !important;}
     .print-header {margin-bottom: 1rem; padding-bottom: 0.8rem;}
     .print-title h1 {font-size: 1.5rem !important;}
     .print-subtitle {font-size: 1rem !important;}
     .print-info {font-size: 0.8rem !important; margin-bottom: 1rem;}
     .legal-article {margin-bottom: 1.2rem !important;}
     .legal-article h3 {font-size: 0.95rem !important; margin-bottom: 0.5rem !important; padding: 0.4rem 0.6rem !important; page-break-after: avoid;}
     .legal-article p, .legal-article li {font-size: 0.85rem !important; line-height: 1.3 !important; margin-bottom: 0.4rem !important;}
     .legal-article h4 {font-size: 0.9rem !important;}
     .legal-subsection {padding: 0.6rem !important; margin: 0.8rem 0 !important;}
     .contact-info {padding: 0.6rem !important; margin: 0.8rem 0 !important;}
     .contact-info p {font-size: 0.9rem !important;}
     .footer-info {font-size: 0.75rem !important;}
     .print-small {font-size: 0.7rem !important;}
     .legal-article, .legal-subsection {page-break-inside: avoid;}
     h3 {page-break-after: avoid;}
     p, ul, li {orphans: 3; widows: 3;}
     .print-header, .print-info, .legal-intro, .legal-article {padding-left: 0; padding-right: 0;}
   }
   
   /* ============================================
      MEDIA QUERIES RESPONSIVE
      ============================================ */
   
   /* Responsive general */
   @media (max-width:900px) {
     .kpis{grid-template-columns:repeat(2,1fr)}
     .grid.cols-3{grid-template-columns:repeat(2,1fr)}
     .grid.cols-2{grid-template-columns:1fr}
     .about-content {padding-right: 0; margin-bottom: 2rem;}
     .accordion-icon {width: 50px; height: 50px;}
     .accordion-icon img {width: 28px; height: 28px;}
     .accordion-card-header h3 {font-size: 1.2rem;}
     .accordion-card-content p, .accordion-card-content ul {font-size: 0.9rem;}
   }
   
   @media (max-width:1000px) {
     .grid.cols-3{grid-template-columns:repeat(2,1fr)}
     .grid.cols-2{grid-template-columns:1fr}
   }
   
   @media (max-width:640px) {
     .grid.cols-3{grid-template-columns:1fr}
   }
   
   @media (max-width:720px) {
     .form-row{grid-template-columns:1fr}
   }
   
   /* Responsive para móviles */
   @media (max-width: 768px) {
     .animated-background::before {width: 350px; height: 350px; filter: blur(60px);}
     .animated-background::after {width: 400px; height: 400px; filter: blur(60px);}
     .animated-background {filter: blur(40px);}
     
     /* Proyectos */
     .proyecto-item.expandido {flex: 0 0 280px !important; height: 320px !important; z-index: 25; position: relative; transform: scale(1.02);}
     .proyecto-back {padding: 1.2rem; overflow-y: auto; -webkit-overflow-scrolling: touch; background: var(--card); border-radius: var(--radius);}
     .proyecto-back h3 {font-size: 1.2rem; margin: 0 0 0.8rem;}
     .proyecto-back p {font-size: 0.9rem; line-height: 1.4; margin-bottom: 1rem;}
     .proyecto-back ul {padding-left: 1rem; margin-bottom: 0;}
     .proyecto-back li {font-size: 0.85rem; padding: 0.3rem 0; line-height: 1.3;}
     .proyectos-slider-container {padding: 0 1rem;}
     .proyectos-nav-btn {width: 40px; height: 40px;}
     .proyectos-prev {left: 5px;}
     .proyectos-next {right: 5px;}
     .proyectos-container {gap: 1rem;}
     .proyecto-item {flex: 0 0 280px; height: 300px;}
     .proyecto-back {padding: 1.5rem;}
     .proyecto-overlay {padding: 1.5rem 1rem 1rem;}
     
     /* Clientes */
     .clients-slider-container {padding: 0 1rem;}
     .clients-container {padding: 2rem 1rem; gap: 1rem;}
     .clients-group {gap: 1.5rem; padding: 0 1.5rem;}
     .client-row {flex-direction: column; gap: 1.5rem;}
     .client-item {flex: 0 0 auto; width: 100%; min-height: 130px; padding: 1.5rem; margin: 5px;}
     .client-logo {max-height: 55px; max-width: 75%;}
     .clients-nav-btn {width: 40px; height: 40px;}
     .clients-prev {left: 5px;}
     .clients-next {right: 5px;}
     
     /* Proveedores */
     .proveedores-slider-container {padding: 0 1rem;}
     .proveedores-container {padding: 2rem 1rem; gap: 1rem;}
     .proveedores-group {gap: 1.5rem;}
     .proveedores-row {flex-direction: column; gap: 1.5rem;}
     .proveedor-item {flex: 0 0 auto; width: 100%; min-height: 120px; padding: 1.5rem;}
     .proveedor-img {max-height: 60px;}
     .proveedores-nav-btn {width: 40px; height: 40px;}
     .proveedores-prev {left: 5px;}
     .proveedores-next {right: 5px;}
     
     /* Footer */
     .foot {grid-template-columns: 1fr; gap: 2rem; text-align: center;}
     .foot > div:first-child {text-align: center;}
     .foot nav ul {align-items: center;}
     .sub {flex-direction: column; text-align: center; gap: 0.5rem;}
     .logo-img {margin: 0 auto 0.5rem;}
     
     /* Aviso de privacidad */
     .legal-content {padding: 1.5rem;}
     .print-header {flex-direction: column; text-align: center;}
     .print-logo {margin-bottom: 0.5rem;}
     .print-info {flex-direction: column; gap: 0.5rem;}
     .action-buttons {flex-direction: column; align-items: center;}
     .action-buttons .btn {width: 100%; max-width: 300px; justify-content: center;}
     
     /* Header */
     header.header-visible {position: fixed !important; transform: translateY(0) !important; opacity: 1 !important;}
     .hero-interno {padding-top: 5rem !important;}
     .header-visible + .mobile-menu {top: 64px;}
   }
   
   @media (max-width: 680px) {
     .client-item {min-height: 50px; padding: 1.2rem; margin: 1px;}
     .client-logo {max-height: 45px; max-width: 100%;}
     .clients-nav-btn {width: 44px; height: 44px;}
     .clients-container {padding: 1.0rem 0.8rem;}
   }
   
   @media (max-width: 480px) {
     footer {padding: 2rem 0 1rem;}
     .foot {gap: 1.5rem;}
     .sub {margin-top: 1.5rem; padding-top: 1rem;}
     
     .proyecto-item.expandido {flex: 0 0 260px !important; height: 300px !important;}
     .proyecto-back {padding: 1rem;}
     .proyecto-back h3 {font-size: 1.1rem;}
     .proyecto-back p, .proyecto-back li {font-size: 0.8rem;}
     
     .legal-content {padding: 1rem;}
     .print-title h1 {font-size: 1.4rem;}
   }
   
   @media (min-width: 901px) {
     header.header-visible {transform: translateY(0) !important; opacity: 1 !important; position: fixed !important; top: 0 !important;}
     main.hero-interno {margin-top: 64px;}
   }
   
   /* Optimización para reducción de movimiento */
   @media (prefers-reduced-motion: reduce) {
     .animated-background::before,
     .animated-background::after {animation-duration: 40s;}
     .animated-background {animation-duration: 30s;}
     .hero .hero-gradient {animation: none;}
   }

/* ============================================
   OPTIMIZACIÓN DE ANIMACIÓN COMPARTIDA
   Sobre Nosotros + Servicios
   ============================================ */
.shared-animation-zone {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #000;
}

.shared-animation-zone #nosotros,
.shared-animation-zone #servicios {
  position: relative;
  z-index: 1;
  background: transparent;
  overflow: hidden;
}

.shared-animation-zone #nosotros::before,
.shared-animation-zone #nosotros::after {
  display: none !important;
}

.shared-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  contain: paint;
  background:
    radial-gradient(circle at 18% 20%, rgba(59,188,245,.18), transparent 32%),
    radial-gradient(circle at 82% 48%, rgba(0,116,217,.16), transparent 36%),
    linear-gradient(180deg, #000 0%, #020d26 48%, #000 100%);
}

.shared-section-bg::before,
.shared-section-bg::after {
  content: '';
  position: absolute;
  width: min(42vw, 460px);
  aspect-ratio: 1;
  border-radius: 45% 55% 48% 52%;
  opacity: .68;
  filter: blur(24px);
  transform: translate3d(0,0,0);
  will-change: transform;
}

.shared-section-bg::before {
  top: 8%;
  left: -9%;
  background: radial-gradient(circle at 35% 35%, rgba(59,188,245,.55), rgba(0,116,217,.24) 58%, transparent 72%);
  animation: sharedBlobA 26s ease-in-out infinite alternate;
}

.shared-section-bg::after {
  right: -10%;
  bottom: 7%;
  background: radial-gradient(circle at 35% 35%, rgba(0,66,164,.62), rgba(59,188,245,.20) 60%, transparent 74%);
  animation: sharedBlobB 30s ease-in-out infinite alternate;
}

@keyframes sharedBlobA {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(18vw, 22%, 0) scale(1.08); }
}

@keyframes sharedBlobB {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-16vw, -18%, 0) scale(1.06); }
}

.shared-animation-zone.is-paused .shared-section-bg::before,
.shared-animation-zone.is-paused .shared-section-bg::after {
  animation-play-state: paused;
}

/* Eliminamos fondos anteriores para evitar doble renderizado */
.animated-background,
.servicios-background {
  display: none !important;
}

@media (max-width: 768px) {
  .shared-section-bg::before,
  .shared-section-bg::after {
    width: 360px;
    filter: blur(18px);
    opacity: .5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shared-section-bg::before,
  .shared-section-bg::after {
    animation: none !important;
  }
}
