/* ================= SLIDER ================= */

.slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 14px;
  background: #0f172a; /* azul DarleXPC */
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain; /* 🔥 ESTA ES LA CLAVE */
}

/* Botones */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.6);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(15, 23, 42, 0.9);
}

.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

/* ================= RESPONSIVE ================= */

/* 📱 MÓVIL */
@media (max-width: 768px) {
  .slide img {
    max-height: 200px;
  }

  .slider-btn {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .slider-btn.prev { left: 8px; }
  .slider-btn.next { right: 8px; }
}

/* 📲 TABLET */
@media (min-width: 769px) and (max-width: 1024px) {
  .slide img {
    max-height: 280px;
  }
}

