/* Estilo do modal */
.modal {
  display: none; /* Oculto por padrão */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

/* Conteúdo do modal */
.modal-conteudo {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  width: 60%;
  max-width: 500px;
  border-radius: 10px;
  position: relative;
}

/* Botão de fechar */
.fechar {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.fechar:hover {
  color: #000;
}