.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 99999;
}

.modal-overlay.ativo {
  display: flex;
}

.modal-recarga {
  width: 380px;
  background: #0b0b0b;
  border: 1px solid #222;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,.9);
  animation: surgir 0.25s ease;
}

@keyframes surgir {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.modal-header h2 {
  font-size: 18px;
  margin: 0;
  color: #fff;
}

.modal-fechar {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.modal-subtitulo {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 14px;
}

.modal-planos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.plano-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 14px;
  color: #fff;
}

.plano-item input {
  margin-right: 10px;
}

.plano-item strong {
  color: #00ff99;
}

.plano-item.destaque {
  border-color: #ff6a00;
  box-shadow: 0 0 0 1px rgba(255,106,0,.3);
}

.btn-final-recarga {
  width: 100%;
  padding: 12px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ff6a00, #ff8a00);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
}

.btn-final-recarga:hover {
  opacity: 0.9;
}
/* ========================= */
/* MODAL RECARGA MOBILE     */
/* ========================= */
@media (max-width: 480px) {

  .modal-recarga {
    width: 94%;
    padding: 18px;
    border-radius: 14px;
  }

  .modal-header h2 {
    font-size: 17px;
  }

  .modal-subtitulo {
    font-size: 14px;
  }

  .plano-item {
    font-size: 15px;
    padding: 12px 14px;
  }

  .btn-final-recarga {
    font-size: 15px;
    padding: 14px;
  }

}

