.clientes {
  padding: 30px 20px;
  background: #111;
  color: white;
}

.clientes__titulo {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.logos-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logos-carousel__viewport {
  overflow: hidden;
  width: 100%;
}

.logos-carousel__track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s ease;
}

.logo-item {
  min-width: 180px;
  max-width: 180px;
  height: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 12px;
}

.logo-item a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  display: block;
}

.logos-carousel__btn {
  background: #f28c7a;
  color: #000;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  transition: 0.3s;
}

.logos-carousel__btn:hover {
  background: #ffd86b;
}

@media (max-width: 768px) {
  .logo-item {
    min-width: 140px;
    max-width: 140px;
    height: 85px;
  }

  .logo-item img {
    max-height: 50px;
  }
}


.carousel {
  position: relative;
  max-width: 900px;
  margin: auto;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: 20px;
}

.carousel__track {
  display: flex;
  transition: transform 0.6s ease;
}

.carousel__slide {
  min-width: 100%;
  position: relative;
}

.carousel__slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

/* Botones */
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 30px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
}

.carousel__btn.prev { left: 10px; }
.carousel__btn.next { right: 10px; }

.carousel__btn:hover {
  background: rgba(0,0,0,0.8);
}

/* Puntitos */
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.carousel__dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
}

.carousel__dots button.active {
  background: #111;
}