.clients-carousel {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  animation: scroll 30s linear infinite;
  width: calc(200px * 22); /* Ajustar según número de logos */
}

.clients-carousel:hover {
  animation-play-state: paused;
}

.clients-carousel img {
  flex-shrink: 0;
  height: 80px;
  width: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  object-fit: contain;
}

.clients-carousel img:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% / 2));
  }
}

@media (max-width: 768px) {
  .clients-carousel {
    gap: 15px;
    padding: 15px 0;
    width: calc(60px * 22);
    animation-duration: 25s;
  }

  .clients-carousel img {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .clients-carousel {
    gap: 10px;
    padding: 10px 0;
    width: calc(50px * 22);
    animation-duration: 20s;
  }

  .clients-carousel img {
      height: 50px;
  }
  
  .clients-title {
      text-align: center;
  }
  
  @media (min-width: 768px) {
      .clients-title {
          text-align: left;
      }
  }
