/* ═══════════════════════════════════════════════
   PRONET AI — Estilos de páginas legales
   Hoja autónoma (no depende de styles.css de la landing)
   ═══════════════════════════════════════════════ */

:root {
  --dark-bg: #07040F;
  --dark-surface: #110B24;
  --brand-purple-light: #6C3CE0;
  --brand-purple-glow: #8B5CF6;
  --accent-magenta: #FF2DAA;
  --accent-cyan: #00E5FF;
  --light-bg: #F7F5FC;
  --white: #FFFFFF;
  --text-primary: #0F0822;
  --text-body: #3D3554;
  --text-muted: #6B5E8A;
  --border-light: #E2DAF2;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--light-bg);
  color: var(--text-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ─── Header ─── */
.legal-header {
  background: var(--dark-bg);
  border-bottom: 1px solid rgba(139, 92, 246, 0.25);
  padding: 18px 32px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.legal-header__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.legal-header__logo img { height: 30px; display: block; }

.legal-header__back {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color .2s ease;
}

.legal-header__back:hover { color: var(--accent-cyan); }

/* ─── Contenido ─── */
.legal-main {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 32px 80px;
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 56px clamp(24px, 5vw, 64px);
  box-shadow: 0 10px 40px rgba(60, 30, 110, 0.06);
}

.legal-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-purple-light);
  margin-bottom: 14px;
}

.legal-card h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.legal-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-light);
}

.legal-card h2 {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.4px;
  margin: 40px 0 14px;
}

.legal-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 24px 0 8px;
}

.legal-card p { margin-bottom: 16px; }

.legal-card ul { margin: 0 0 16px; padding-left: 22px; }
.legal-card li { margin-bottom: 9px; }

.legal-card a {
  color: var(--brand-purple-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-card a:hover { color: var(--accent-magenta); }

.legal-card strong { color: var(--text-primary); font-weight: 600; }

.legal-note {
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--brand-purple-light);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 15px;
}

.legal-contact {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
  font-size: 15px;
}

/* ─── Footer ─── */
.legal-footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  padding: 28px 32px;
  text-align: center;
}

.legal-footer__links {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.legal-footer__links a {
  color: #A599C7;
  text-decoration: none;
  font-size: 13px;
  transition: color .2s ease;
}
.legal-footer__links a:hover { color: var(--accent-cyan); }

.legal-footer__copy { font-size: 12px; color: #6B5E8A; }

@media (max-width: 600px) {
  .legal-main { padding: 32px 16px 56px; }
  .legal-card { padding: 36px 22px; }
  .legal-header { padding: 14px 18px; }
}
