html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

.slider {
  position: relative;
  overflow: hidden;
  width: 100vw;
  max-width: 100vw;
  margin: 0 auto;
  max-height: 110vh;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  align-items: flex-start;
  width: 100vw;
}

.slides img {
  width: 100vw;
  height: auto;
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
}
/* Puntos (dots) de navegación */
.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.dots button.active,
.dots button:hover {
  background: #f1be18;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 768px) {
  .dots button {
    width: 10px;
    height: 10px;
  }
  .slides img {
    width: 100%; /* antes 100vw */
  }
}
