/*Clientes*/

#clients {
  background: #fff;
  text-align: center;
  padding: 60px 0;
}

#clients .title-box {
  margin-bottom: 30px;
}

#clients .title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}

.clients-carousel {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
}

.clients-carousel-track {
  display: flex;
  animation: scrollClients 30s linear infinite;
}

.clients-carousel .item {
  flex: 0 0 auto;
  width: 150px;
  margin: 0 20px;
}

.clients-carousel .item figure img {
  width: 100%;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.clients-carousel .item figure img:hover {
  opacity: 1;
}

/* Animación de desplazamiento continuo */
@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}