/* marquee.css: animación horizontal de derecha a izquierda */

.marquee-container {
  width: 100%;
  overflow: hidden;
  background: transparent;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-left 18s linear infinite;
}

@keyframes marquee-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
