/* Carruseles animados */

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.brands-carousel,
.trusted-companies-carousel {
  display: flex;
  animation: scroll-left 40s linear infinite;
  will-change: transform;
}

.trusted-companies-carousel {
  animation: scroll-left 50s linear infinite;
}

.brands-carousel:hover,
.trusted-companies-carousel:hover {
  animation-play-state: paused;
}

.brand-card,
.company-logo {
  flex-shrink: 0;
}
