/* Galeria básica */
.simple-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
  overflow-x: auto;
  padding: 10px 5px;
  box-sizing: border-box;
}

.simple-gallery .gallery-item {
  flex: 0 0 auto;
  width: 240px;
  max-width: 100%;
}

.simple-gallery .gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.simple-gallery .gallery-item img:hover {
  transform: scale(1.03);
}

/* CORREÇÃO PARA O LIGHTBOX GLIGHTBOX */

/* Container do lightbox - limita max largura/altura */
.glightbox-container {
  max-width: 90vw !important;
  max-height: 90vh !important;
  padding: 20px !important;
  box-sizing: border-box;
}

/* Imagem dentro do lightbox - se ajusta proporcionalmente */
.glightbox-container img {
  max-width: 100% !important;
  max-height: 80vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  display: block !important;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}
