body {
  font-family: 'Novecentowide', sans-serif;
  margin: 0;
  background-image: url('../img/fundo_folhas.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

.galeria img {
  width: 100%;
  max-width: 300px;
  margin: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 40px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 1000;
}

.imagem-expandida {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 10px;
}

.nav, .fechar {
  position: absolute;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.fechar {
  top: 20px;
  right: 30px;
}

.prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.legenda {
  color: white;
  margin-top: 10px;
  font-size: 16px;
  text-align: center;
}
@font-face {
  font-family: 'Novecentowide';
  src: url('../fonts/Novecentowide-Normal.otf') format('opentype');
  font-weight: normal;
}

body {
  font-family: 'Novecentowide', sans-serif;
}