/* =========================
   GALERÍAS DE EVENTOS
========================= 

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}
*/
.evento-galeria {
  margin: 20px auto;
  max-width: 1000px;
  padding: 0 15px;
}

.evento-galeria h3 {
  margin-bottom: 15px;
}

/* =========================
   CAROUSEL
========================= */

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-track img {
  width: 100%;
  flex-shrink: 0;
  cursor: pointer;
  border-radius: 6px;
}

/* Flechas */
.carousel .prev,
.carousel .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 28px;
  padding: 8px 14px;
  cursor: pointer;
  z-index: 10;
  user-select: none;
}

.carousel .prev { left: 10px; }
.carousel .next { right: 10px; }

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .carousel .prev,
  .carousel .next {
    font-size: 22px;
    padding: 6px 10px;
  }
}

#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
}

#lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

#lightbox .lb-prev,
#lightbox .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 10px;
}

#lightbox .lb-prev { left: 30px; }
#lightbox .lb-next { right: 30px; }

@media (max-width: 768px) {
  #lightbox .lb-prev,
  #lightbox .lb-next {
    font-size: 28px;
  }
}

/* =========================
   LIGHTBOX
========================= 

#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#lightbox img {
  max-width: 90%;
  max-height: 90%;
}

#lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}*/