
       .bg-div222 {
        position: fixed;
        z-index: -10;
        inset: 0;
        margin: auto;
        width: 100%;
        max-width: 700px;
        height: 100vh;

        /* background:
          linear-gradient(rgba(155, 170, 255, 0.6), rgba(155, 170, 255, 0.6)),
          url("./../img/fundo.webp"); */

           background:
          linear-gradient(rgba(46, 59, 133, 0.8), rgba(46, 59, 133, 0.8)),
          url("./../img/fundo.webp");

        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
      }


      input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: #fff !important; /* cor do texto */
  transition: background-color 5000s ease-in-out 0s;
}


/* header.................. */




/* modal ................*/


.open-btn {
  padding: 12px 20px;
  background: #6366f1;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.modal-overlay {
  position: fixed;
  z-index: 999;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(6px);
  display: none;
  justify-content: center;
  align-items: center;
}

.modal-overlay .modal {
  background: #1e293b;
  color: #fff;
  width: 93%;
  max-width: 400px;
  border-radius: 16px;
  padding: 20px;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  display: flex;
}
.modal-overlay.active .modal {
  transform: scale(1);
  opacity: 1;
}

.modal-overlay .modal h2 {
  margin-bottom: 13px;
  font-size: 18px;
}

.modal-overlay .modal .plan-info {
  font-size: 14px;
  color: #cbd5f5;
  margin-bottom: 20px;
}

/* TOGGLE BUTTONS */
.modal-overlay .modal .toggle {
  display: flex;
  background: #334155;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.modal-overlay .modal .toggle button {
  flex: 1;
  padding: 10px;
  border: none;
  font-size: 14px;
  background: transparent;
  color: #cbd5f5;
  cursor: pointer;
  text-align: center;
  transition: 0.3s;
}
.modal-overlay .modal .toggle button span{
font-weight: bold;
color:#f5a623;
font-size: 15px;
}

.modal-overlay .modal .toggle button.active {
  background: #6366f1;
  color: #fff;
}

/* CONTENT */
.modal-overlay .modal .content_box {
  background: #0f172a;
  padding: 10px 40px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
}
.modal-overlay .modal .content_box p{
 display: flex;
 color: #fff;
 padding: 0 5px;
 padding-bottom: 1px;
 margin-bottom: 8px;
 justify-content: space-between;
 border-bottom: solid 1px #585858;
}
.modal-overlay .modal .content_box p span{
  font-size: 15px;
  font-weight: bold;
  color:#f5a623;
}

/* ACTION BUTTONS */
.modal-overlay .modal .actions {
  display: flex;
  gap: 10px;
}

.modal-overlay .modal .actions button {
  flex: 1;
  padding: 10px;
  border: none;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
}

.modal-overlay .modal .cancel {
  background: #334155;
  color: #fff;
}

.modal-overlay .modal .confirm {
  background: #22c55e;
  color: #fff;
}

 /* MENSAGENS */
   .mensagem-flutuante {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 400;
    z-index: 1000;
    animation: fadeOut 6s ease forwards;
    text-align: center;
    width: 80%;
    max-width: 320px;
    min-width: 200px;
  }
  .mensagem-sucesso {
     border:1px solid #bbffbb;
      background: #edfbda;
    color: green;
  }
  .mensagem-erro {
     border:1px solid #ffb3b3;
    background: #ffd6d6;
    color: #ca0000;
  }
  @keyframes fadeOut {
    0% { opacity: 1; top: 40px; }
    70% { opacity: 1; top: 40px; }
    100% { opacity: 0; top: -50px; visibility: hidden; }
  }