@media (max-width: 900px) {
  .slider-container {
    height: 140px;
    min-height: 100px;
    padding: 0;
  }
  .slide {
    font-size: 1.1rem;
  }
  .slide img,
  .slide video {
    height: 120px !important;
    max-height: 120px;
    border-radius: 10px;
  }
}
@media (max-width: 600px) {
  .slider-container {
    height: 90px;
    min-height: 60px;
  }
  .slide {
    font-size: 0.9rem;
  }
  .slide img,
  .slide video {
    border-radius: 8px;
  }
}
/* --- Estilos para el slider --- */
.slider-container {
  width: 100vw;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  background: #f4f6fb;
  /* height: 260px; */
}
.slider {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
  width: 100vw;
  /* Ajuste dinámico con JS */
}
.slide {
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #fff;
  border: none;
  border-radius: 0;
  width: auto;
  height: auto;
  cursor: pointer;
  font-size: 2.2rem;
  z-index: 2;
  padding: 0 8px;
}
.slider-btn.left { left: 16px; }
.slider-btn.right { right: 16px; }
/* --- Fin estilos slider --- */
