/* ===============================
SLIDER CONTENEDOR
=============================== */
.fullscreen-slider {
  width: 100%;
  height: 95vh;
  position: relative;
  overflow: hidden;
}

/* ===============================
TRACK DEL SLIDER
=============================== */
.slider-track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slider-track::-webkit-scrollbar {
  display: none;
}

/* ===============================
SLIDES - ANCHO COMPLETO SIEMPRE
=============================== */
.slide {
  flex: 0 0 100%;         /* Cada slide ocupa el 100% del contenedor */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============================
IMÁGENES - AHORA CUBREN TODO EL SLIDE
=============================== */
.slide img {
  width: 100%;            /* Ocupa todo el ancho del slide */
  height: 100%;           /* Ocupa todo el alto del slide */
  object-fit: cover;      /* Cubre el área sin distorsión (puede recortar) */
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* ===============================
CONTROL DRAG (sin cambios)
=============================== */
.slider-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 20px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.fullscreen-slider:hover .slider-scroll {
  opacity: 1;
}
.scroll-line {
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #f7f7f7 !important;
  transform: translateY(-50%);
}
.scroll-dot {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: #f7f7f7 !important;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: grab;
  user-select: none;
}
.scroll-dot:active {
  cursor: grabbing;
}

/* ===============================
TABLET - SOLO AJUSTE DE ALTURA
=============================== */
@media (max-width: 1024px) {
  .fullscreen-slider {
    height: 50vh;
  }
}

/* ===============================
MÓVIL
=============================== */
@media (max-width: 768px) {
  .fullscreen-slider {
    height: 25vh;
  }
  /* CONTROL SCROLL EN MÓVIL */
  .fullscreen-slider .slider-scroll {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 20px;
    
    backdrop-filter: blur(4px);
    border-radius: 10px;
    padding: 5px 0;
    opacity: 0.9;
  }
}



