.wp-block-gallery img {
  transition: all 0.4s ease-in-out;
  border-radius: 6px;
  cursor: pointer;
}

/* Efecto de luz al pasar el ratón */
.wp-block-gallery img:hover {
  box-shadow: 0 0 20px rgba(255, 255, 200, 0.8), 0 0 40px rgba(255, 255, 150, 0.6);
  transform: scale(1.05);
  z-index: 10;
}
#lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.9);
  text-align: center;
}

#lightbox img {
  max-width: 80%;
  max-height: 80%;
}

#lightbox #caption {
  margin: 10px auto;
  color: #ccc;
  font-size: 18px;
}

#lightbox .cerrar {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
