/* ========================
   Modal Legal – Estela.app
   Mejorado (estilo centrado tipo tarjeta)
   ======================== */

.modal-legal {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
      background: rgb(3, 12, 29, 0.55);
  color: #f0f0f0;
  z-index: 9999;
  width: calc(100% - 40px);
  max-width: 800px;
  padding: 1.5rem 1.75rem;
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  text-align: center;
  backdrop-filter: blur(6px);
  border: 1px solid #ffffff18;
}

.modal-legal a {
  color: #00aaff;
  text-decoration: underline;
}

.modal-legal a:hover {
  color: #66ccff;
  text-decoration: none;
}

.modal-legal__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.aceptar-btn,
.salir-btn {
  background: #00aaff;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  transition: background 0.25s ease;
  min-width: 160px;
}

.aceptar-btn:hover {
  background: #0077cc;
}

.salir-btn {
  background: #ccc;
  color: #000;
}

.salir-btn:hover {
  background: #e5e5e5;
}
