/* Animaciones globales de Electromás con Motion.
   El contenido permanece visible aunque el CDN no responda. */

.em-scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10000;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, #ffa500, #ffd166);
  box-shadow: 0 2px 10px rgba(255, 165, 0, 0.35);
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
}

[data-em-motion] {
  backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .em-scroll-progress {
    display: none !important;
  }
}
