.modal-externo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-interno {
  background-color: white;
  padding: 2em;
  border-radius: 10px;
  text-align: center;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
  font-family: sans-serif;
}

.modal-interno img {
  width: 78px;
  margin-bottom: 15px;
}

.modal-interno p {
  margin: 0;
  font-size: 18px;
}

.modal-interno button {
  margin-top: 1em;
  background-color: #0b2033;
  color: white;
  padding: 8px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.modal-interno button:hover {
  background-color: #590505;
}
