/* Estilo do container dos termos */
.container-termos {
  margin: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: right;
  color: rgb(138, 138, 138);
}

.termos {
  margin-bottom: 10px;
}

.p-modal {
  text-align: right;
}

/* Alinhamento e estilo do label e checkbox */
.termos-alinhar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.termos-alinhar p {
  font-size: 16px;
}

.checkbox {
  width: 15px;
  height: 15px;
  border-radius: 30px;
  border: initial;
  cursor: pointer;
}

#confirmar-informacao {
  margin-top: 10px;
}

/* Estilo do botão de abrir o Modal */
#openModal, #openModal2 {
  margin-top: 5px;
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
  cursor: pointer;
}

#openModal:hover {
  text-decoration: underline;
}

/* Estilo do Modal */
.modal {
  display: none; /* O Modal começa escondido */
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fundo escuro */
}

/* Estilo do conteúdo dentro do Modal */
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  max-height: 600px;

  overflow-y: auto;
}

/* Estilo do botão de fechar */
#closeModal, #closeModal2, #close, #close2 {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
#close:focus,
#close:hover,
#close2:focus,
#close2:hover,
#closeModal:focus,
#closeModal:hover,
#closeModal2:focus,
#closeModal2:hover {
  color: black;
  text-decoration: none;
  cursor: pointer;
}