/* Archivo: style.css */
.gallery-container {
  max-width: 350px;
  margin: 0 auto;
  border: none;
  margin-top: 20px;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);

}

.gallery-container:hover {
      box-shadow: 0 8px 30px rgba(0,0,0,0.1);
      margin-top: 20px;

    }

/* Estilos para el Slider */
.slider-container {
  position: relative;
  overflow: hidden; /* Oculta las imágenes que están fuera de la vista */
}
.slider {
  display: flex;
  transition: transform 0.5s ease-in-out; /* Permite una transición suave */
}
.gallery-item {
  width: 100%;
  flex-shrink: 0; /* Evita que las miniaturas se encojan */
  cursor: pointer;
  border-radius: 12px;
}
.prev-button, .next-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.1);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;

}
.prev-button { left: 10px; }
.next-button { right: 10px; }

/* Estilos para el Lightbox */
.lightbox {
  display: none; /* Oculto por defecto */
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.lightbox-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.close-button {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}


