
/* Estilos da Modal */
#contact {
  margin-top: 30px;
}
.modal {
  display: none; /* Oculta a modal por padrão */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fundo escuro semi-transparente */
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  text-align: center;
  position: relative;
}
.modal-content h2 {
  color: #000000af
}

.message-modal {
  font-size: 18px;
  color: #000000af;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.close-modal:hover {
  color: rgb(207, 38, 9);
}