* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.clientes2 {
  background-color: #d4703f;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
}

.clientes2 h2 span {
  text-decoration: underline;
}

.slider2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

.slider2-container {
  overflow: hidden;
  width: 80%;
  touch-action: pan-y;
}

.slider2-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.slider2-track img {
  width: 200px;
  margin: 0 20px;
  object-fit: contain;
}

/* Flechas */
.arrow {
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

/* Dots */
.dots {
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
}

.dot.active {
  background: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .slider2-container {
    width: 100%;
  }

  .slider2-track img {
    width: 220px;
    margin: 0 auto;
  }
}
