/**
 * Estilos para o modal
 *
 * @format
 */

 .dados-revisao {
  padding: 15px;
  border-radius: 8px;
  text-align: left;
  margin: 10px 0 20px;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.modal-confirmacao {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
/*   background-color: rgba(0, 0, 0, 0.418); */
  z-index: 9999;
}

.modal-content-confirmacao {
  background: rgba(112, 112, 112, 0.822);
  backdrop-filter: blur(17px);
  --webkit-backdrop-filter: blur(17px);
  border: 1px solid rgba(255, 255, 255, 0.219);
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.modal-content-confirmacao::after {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-color: rgba(255, 255, 255, 0.089);
  border-radius: 12px;
  z-index: -1;
}

.modal-content-confirmacao p {
  font-size: 16px;
  margin-bottom: 20px;
  width: 100%;
  text-align: center;
  color: #ffffff;
}

.modal-content-confirmacao .botoes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.modal-content-confirmacao button {
  height: 30px;
  font-size: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}

/* Botão "Editar" */
.modal-content-confirmacao .botoes button:first-child {
  background-color: #ccc !important;
  color: #000;
}

/* Botão "Enviar" */
.modal-content-confirmacao .botoes button:last-child {
  background-color: #25d366;
  color: #fff;
}








.modal-wrapper {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: auto;
}

.modal {
  max-width: 400px;
  z-index: 1000;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(17px);
  --webkit-backdrop-filter: blur(17px);
  border: 1px solid rgba(255, 255, 255, 0.219);
  margin: 10% auto;
  padding: 20px;
  width: 80%;
  position: relative;
}

.modal-content-Input {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.close-modal {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  position: absolute;
  top: 0px;
  right: 2px;
  cursor: pointer;
  transition: transform 0.6s ease;
}

.close-modal:hover {
  color: #dfdfdf;
  transform: rotate(180deg);
}

.modal-content-Input h2 {
  margin-top: 0;
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 400;
}

input[type='text'] {
  text-align: center;
  width: 90%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 15px;
  border-radius: 50px;
  border: none;
  box-sizing: border-box;
  font-size: 13px;
  background-color: #fbfffda2;
  transition: width 0.3s ease;
}

input[type='text']:hover {
  width: 100%;
}

input::placeholder {
  color: #000000;
}

#modalInputWrapper .modal .modal-content-Input button {
  background-color: #25d366;
  color: #fff;
  width: 60%;
  padding: 12px 24px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  font-size: 16px;
}

#modalInputWrapper .modal .modal-content-Input button:focus {
  background-color: #00ce4b;
}

#modalInputWrapper .decoracao-top {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-color: rgba(255, 255, 255, 0.089);
  border-radius: 12px;
  z-index: -1;
}

#modalInputWrapper .decoracao-bottom {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  z-index: -1;
}

@media (max-width: 768px) and (min-width: 481px) {
  .modal {
    margin: 20% auto;
  }
}

@media (max-width: 480px) {
  .modal {
    margin: 50% auto;
  }
}
