/* Estilo para o overlay */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9); /* Fundo semitransparente */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Garante que fique acima de tudo */
}

/* Estilo da imagem */
#overlay img {
  max-width: 90%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 20px;
}

/* Estilo do botão */
#overlay button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  background-color: #FAE721; /* Cor roxa */
  color: #000;
  border-radius: 6px;
  cursor: pointer;
}

#overlay button:hover {
  background-color: #ECDA00; /* Cor mais escura no hover */
}

/* Esconde o overlay inicialmente */
#overlay.hidden {
  display: none;
}