/* Estilos para o modal da galeria */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.gallery-modal-content img {
  max-width: 100%;
  max-height: 80vh;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.gallery-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--white);
  font-size: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-modal-close:hover {
  color: var(--gold);
}

.gallery-modal-caption {
  color: var(--white);
  text-align: center;
  padding: 15px 0;
  font-size: 16px;
}
