.carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  width: 100%;
  flex-shrink: 0;
  /* Aspect ratio 16:9 para que se adapte a todos los dispositivos */
  height: auto;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Dots */
.dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background: #ff4c3b;
}

/* Opcional: ajustar tamaño de dots en móviles */
@media (max-width: 800px) {

  .dots {
  bottom: 5px;
}

  .dot {
    width: 7px;
    height: 7px;
    margin: 0 3px;
    bottom: 5px;
  }
}

