.carousel-container {
  width: 100%;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  margin: 0 auto;
  max-width: 1200px;
}

.carousel-track {
  display: flex;
  animation: scroll 20s linear infinite;
  width: calc(240px * 12); /* 6 logos * 2 para loop infinito */
}

.carousel-item {
  flex: 0 0 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.carousel-item:hover {
  transform: scale(1.1);
}
.carousel-item:hover .logo {
  filter: grayscale(0%);
}

.carousel-item .logo {
  width: 140px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-240px * 6));
  }
}

.carousel-container:hover .carousel-track {
  animation-play-state: paused;
}
