.bs-banners__square .bs-banners__img picture img, .bs-banners__big-left .bs-banners__img picture img, .bs-banners__big-right .bs-banners__img picture img {
    object-fit: fill!important;
}
/* Bloqueo de scroll mientras el lightbox está abierto */
body.lb-lock { overflow: hidden; }

/* Overlay base (sin “fondo negro” completo) */
#lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  background: transparent;         /* no oscurece toda la página */
}

/* Activo */
#lb-overlay.is-open { display: block; }

/* Controles */
#lb-overlay .lb-close,
#lb-overlay .lb-prev,
#lb-overlay .lb-next {
  position: fixed;
  z-index: 10000;
  color: #fff;
  background: rgba(0,0,0,.45);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 28px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

#lb-overlay .lb-close { top: 14px; right: 18px; font-size: 26px; }
#lb-overlay .lb-prev  { top: 50%; left: 16px;  transform: translateY(-50%); font-size: 32px; }
#lb-overlay .lb-next  { top: 50%; right: 16px; transform: translateY(-50%); font-size: 32px; }

#lb-overlay .lb-close:hover,
#lb-overlay .lb-prev:hover,
#lb-overlay .lb-next:hover { background: rgba(0,0,0,.65); }

/* Stage: NO centrado vertical, solo horizontal con top fijo (configurable) */
#lb-overlay .lb-stage {
  position: fixed;
  left: 50%;
  top: var(--lb-top, 5vh);     /* ajusta la altura de aparición aquí */
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;        /* deja pasar clicks a la imagen */
}

/* Imagen: sólo la foto “protagonista”; oscurece alrededor con shadow gigante */
#lb-overlay .lb-img {
  pointer-events: auto;
  max-width: var(--lb-maxw, 95vw);
  max-height: var(--lb-maxh, 85vh);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;

  /* halo oscuro alrededor de la foto (no hay fondo negro global) */
  box-shadow:
    0 0 0 100vmax rgba(0,0,0,.85),
    0 8px 24px rgba(0,0,0,.5);
}

/* Miniatura con cursor tipo zoom (opcional) */
.lb-item { cursor: zoom-in; }

/* Responsive */
@media (max-width: 768px) {
  #lb-overlay .lb-prev, #lb-overlay .lb-next { font-size: 28px; width: 40px; height: 40px; }
  #lb-overlay .lb-close { font-size: 24px; width: 40px; height: 40px; }
}
/* Miniaturas uniformes en la grilla */
.img-fluid.limit-height {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;   /* ? proporción pareja (elige 1/1, 16/9, etc.) */
  height: auto;          /* el alto se calcula por el ancho y la proporción */
  object-fit: cover;     /* recorta sin deformar */
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: transform .2s ease, box-shadow .2s ease;
}

.img-fluid.limit-height:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
}

/* Ajustes responsivos (opcional) */
@media (max-width: 768px) {
  .img-fluid.limit-height {
    aspect-ratio: 1 / 1; /* cuadradas en móvil, se ven muy prolijas */
  }
}
.img-fluid.limit-height.landscape {
  object-fit: cover;
}

.img-fluid.limit-height.portrait {
  object-fit: contain;
}
/*para flechas de carrusel principal*/
/* ----- Mejora accesibilidad de flechas OWL ----- */
.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* Permite que las imágenes sigan siendo clickeables */
  z-index: 50;
}

.owl-carousel .owl-prev,
.owl-carousel .owl-next {
  pointer-events: all; /* Reactiva clic solo en las flechas */
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35)!important;
  color: #fff !important;
  font-size: 28px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.owl-carousel .owl-prev:hover,
.owl-carousel .owl-next:hover {
  background: rgba(0, 0, 0, 0.55);
  transform: scale(1.05);
}

.owl-carousel .owl-prev {
  margin-left: 10px;
}

.owl-carousel .owl-next {
  margin-right: 10px;
}

/* ----- Flechas más visibles en mobile ----- */
@media (max-width: 768px) {
  .owl-carousel .owl-prev,
  .owl-carousel .owl-next {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}

/* Opcional: ocultar las flechas si hay solo una imagen */
.owl-carousel .owl-nav.disabled {
  display: none !important;
}
