.galeria-360 {
  width: 100%;
  position: relative;
}

.galeria-pc {
  width: 100vw;
  height: 100vh;
  border: none;
  display: block;
}

/* Móvil */
.galeria-movil {
  display: none;
  padding: 30px;
  background-color: #f9f9f9;
  text-align: center;
}

.galeria-movil h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 10px;
}

.aviso-pc {
  color: #555;
  font-size: 16px;
  margin-bottom: 20px;
  font-style: italic;
}

.grilla-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.grilla-galeria img {
  width: 100%;
  height: 180px; /* Altura común */
  object-fit: contain; /* No recorta, muestra la imagen completa */
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.grilla-galeria img:hover {
  transform: scale(1.03);
}

/* Lightbox */

.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
  flex-direction: column;
}


.info-lightbox {
  color: white;
  margin-top: 20px;
  text-align: center;
  padding: 0 20px;
  max-width: 90vw;
}

.info-lightbox h2 {
  font-size: 24px;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.info-lightbox p {
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Roboto', sans-serif;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255,255,255,0.3);
  transition: transform 0.3s ease;
}

.cerrar-lightbox {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px; /* Antes 40px */
  color: white;
  cursor: pointer;
  z-index: 1000;
  font-weight: bold;
  transition: transform 0.2s ease;
}

.cerrar-lightbox:hover {
  transform: scale(1.2);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .galeria-pc {
    display: none;
  }

  .galeria-movil {
    display: block;
  }
}
