/* MODAL DE ÉXITO */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0.2s,
    opacity 0.2s;
}
.modal-overlay.active {
  visibility: visible;
  opacity: 1;
}
.confirm-modal {
  background: white;
  max-width: 420px;
  width: 90%;
  border-radius: 32px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
  animation: fadeUp 0.3s ease;
}
@keyframes fadeUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.confirm-modal h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #022a68;
  margin-bottom: 12px;
}
.confirm-modal p {
  color: #4b6b8a;
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.4;
}
.modal-confirm-btn {
  background: #afafaf;
  color: white;
  border: none;
  padding: 14px 28px;
  cursor: pointer;
  transition: 0.2s;
  width: 45%;
}

.modal-confirm-btn.aceptar {
  background: #022a68;
}
.modal-confirm-btn.aceptar:hover {
  background: #134b82;
}

.confirm-modal-btn-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
