/* =========================================================
   ZAQORI · legal.css — estilo de páginas legales
   (Política de privacidad y Términos de servicio)
   ========================================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #050816;
  color: #C7D2E4;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* fondo sutil con glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(700px circle at 15% -5%, rgba(59,130,246,0.10), transparent 60%),
    radial-gradient(600px circle at 100% 100%, rgba(111,252,255,0.06), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.legal-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 8, 22, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.12);
}
.legal-header-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.legal-logo {
  font-family: 'Exo 2', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .14em;
  color: #fff;
  text-decoration: none;
}
.legal-logo span { color: #6FFCFF; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #9fb2d4;
  text-decoration: none;
  padding: 9px 16px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 10px;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.legal-back:hover { color: #6FFCFF; border-color: rgba(111,252,255,0.4); background: rgba(111,252,255,0.06); }
.legal-back svg { width: 16px; height: 16px; }

/* Cuerpo */
.legal-main { padding: 56px 0 80px; }

.legal-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #6FFCFF;
  margin-bottom: 14px;
}
.legal-title {
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(30px, 6vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 14px;
}
.legal-updated {
  font-size: 14px;
  color: #6E8FBF;
  margin-bottom: 28px;
}

.legal-note {
  display: flex;
  gap: 12px;
  background: rgba(245, 158, 11, 0.07);
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 40px;
  font-size: 14px;
  color: #e4d2ad;
}
.legal-note svg { flex-shrink: 0; width: 20px; height: 20px; color: #f59e0b; margin-top: 2px; }

.legal-section { margin-bottom: 34px; }
.legal-section h2 {
  font-family: 'Exo 2', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #eaf2ff;
  margin-bottom: 12px;
  display: flex;
  gap: 11px;
  align-items: baseline;
}
.legal-section h2 .n {
  font-size: 15px;
  font-weight: 700;
  color: #3B82F6;
  font-family: 'Space Grotesk', sans-serif;
}
.legal-section p { margin-bottom: 12px; color: #aebdd6; }
.legal-section ul { margin: 0 0 12px; padding-left: 4px; list-style: none; }
.legal-section li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 9px;
  color: #aebdd6;
}
.legal-section li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6FFCFF;
  box-shadow: 0 0 8px rgba(111,252,255,0.5);
}
.legal-section a { color: #6FFCFF; text-decoration: none; border-bottom: 1px solid rgba(111,252,255,0.3); }
.legal-section a:hover { border-bottom-color: #6FFCFF; }
.legal-section strong { color: #d6e2f5; font-weight: 600; }

.legal-placeholder {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  padding: 1px 7px;
  border-radius: 5px;
  font-size: .92em;
}

/* Footer */
.legal-footer {
  border-top: 1px solid rgba(99, 102, 241, 0.12);
  padding: 30px 0;
  text-align: center;
  font-size: 13px;
  color: #6E8FBF;
}
.legal-footer a { color: #9fb2d4; text-decoration: none; }
.legal-footer a:hover { color: #6FFCFF; }
