.clientes-title {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 34px;
  color: #1f2937; /* gris oscuro elegante */
  margin-bottom: 28px;
  position: relative;
  line-height: 1.2;
}

/* Acento comercial */
.clientes-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background-color: #2563eb;
  margin-top: 12px;
  border-radius: 4px;
}


.clientes-carousel {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.clientes-carousel-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content; /* 🔑 CLAVE */
  animation: clientes-scroll 40s linear infinite;
}

/* Logos */
.clientes-carousel-track img {
  height: 70px;
  width: auto !important; /* 🔑 sobrescribe inline */
  max-width: none;
  opacity: 0.85;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.clientes-carousel-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Animación */
@keyframes clientes-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pausa elegante al hover */
.clientes-carousel:hover .clientes-carousel-track {
  animation-play-state: paused;
}
