@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.animate-scroll {
  animation: scroll 35s linear infinite;
}

/* Asegura que cada img no encoja y se ajuste bien */
#carousel img {
  flex-shrink: 0;
  object-fit: contain;
}