/* Estilo básico para la galería */
figure {
    margin: 0;
  }

#gallery {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}
  
.gallery-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  max-height: 100vh;
}
  
.gallery-item {
  min-width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.gallery-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.gallery-item img.horizontal {
  width: 100% !important;
  height: auto !important;
  object-fit: cover !important;
}

.gallery-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* permite clic solo en botones */
}  

.nav-button {
  pointer-events: auto;
}
  .nav-button {
      background-color: rgba(0,0,0, .3);
      color: white;
      border: none;
      padding: 10px 20px;
      cursor: pointer;
      border-radius: 5px;
  }
  .nav-button > span {
    font-size: 30px;
  }
  .nav-button:hover {
      background-color: #88152F;
      opacity: 0.6;
  }
  /*__FIN SLIDER DE IMAGENES__*/