/* ===============================
   SWIPER - CONFIGURACIÓN VISUAL
   =============================== */

/* ESTRUCTURA DE LOS SLIDES */
.swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

/* CONTENEDOR INTERNO DE CADA ÍTEM */
.item-box-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* IMÁGENES DENTRO DE CADA ITEM */
.item-box-2 .image {
  margin-bottom: 5px;
}

.item-box-2 img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* TÍTULO DE CADA ICONO */
.item-box-2 h6 {
  margin: 0;
  font-size: 14px;
  color: #333;
}

/* AJUSTES DE ESPACIO Y LOGO EN MÓVILES */
@media (max-width: 480px) {
  .swiper {
    margin-left: 20px !important;
  }

  #scroll-indicator {
    left: 90px !important;
    font-size: 22px;
  }
}