/* ============================================================================
   Sistema de temas VPP — tokens por tema via [data-theme].
   Tema por defecto: "bodypal" (identidad de marca, azul #1F3F8C).
   Otros: claro, oscuro, neutro, pastel. Se conmutan con el selector del header
   y se guardan en localStorage (ver js/theme.js).
   ============================================================================ */

:root,
[data-theme="bodypal"] {
  --bg: #eef1f7;
  --surface: #ffffff;
  --surface-2: #f4f6fb;
  --border: #dde1e8;
  --text: #161b23;
  --text-muted: #4b5564;
  --brand: #1f3f8c;
  --brand-strong: #142862;
  --brand-contrast: #ffffff;
  --accent: #2a78d0;
  --accent-soft: #a1cbf4;
  --ok: #12b76a;
  --warn: #f79009;
  --err: #f04438;
  --recent: #12b76a;          /* viaje reciente */
  --special: #f04438;         /* *BL / *BX */
  --zebra: #f4f6fb;
  --shadow: 0 1px 3px rgba(20, 40, 98, .12), 0 1px 2px rgba(20, 40, 98, .08);
}

[data-theme="claro"] {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f1f5f9;
  --border: #e2e8f0;
  --text: #0f172a;
  --text-muted: #64748b;
  --brand: #2563eb;
  --brand-strong: #1d4ed8;
  --brand-contrast: #ffffff;
  --accent: #0ea5e9;
  --accent-soft: #bae6fd;
  --ok: #16a34a;
  --warn: #d97706;
  --err: #dc2626;
  --recent: #16a34a;
  --special: #dc2626;
  --zebra: #f8fafc;
  --shadow: 0 1px 3px rgba(15, 23, 42, .1), 0 1px 2px rgba(15, 23, 42, .06);
}

[data-theme="oscuro"] {
  --bg: #0f1623;
  --surface: #161f2e;
  --surface-2: #1c2738;
  --border: #2a3547;
  --text: #e6e9ef;
  --text-muted: #94a3b8;
  --brand: #2a78d0;
  --brand-strong: #1f3f8c;
  --brand-contrast: #ffffff;
  --accent: #38bdf8;
  --accent-soft: #1e3a5f;
  --ok: #22c55e;
  --warn: #fbbf24;
  --err: #f87171;
  --recent: #22c55e;
  --special: #f87171;
  --zebra: #1a2433;
  --shadow: 0 2px 6px rgba(0, 0, 0, .4);
}

[data-theme="neutro"] {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-2: #f4f4f5;
  --border: #e4e4e7;
  --text: #18181b;
  --text-muted: #71717a;
  --brand: #475569;
  --brand-strong: #334155;
  --brand-contrast: #ffffff;
  --accent: #64748b;
  --accent-soft: #cbd5e1;
  --ok: #15803d;
  --warn: #b45309;
  --err: #b91c1c;
  --recent: #15803d;
  --special: #b91c1c;
  --zebra: #f4f4f5;
  --shadow: 0 1px 2px rgba(0, 0, 0, .08);
}

[data-theme="pastel"] {
  --bg: #fbf7fd;
  --surface: #ffffff;
  --surface-2: #f6eefb;
  --border: #ecdcf2;
  --text: #3b2f47;
  --text-muted: #8b7a98;
  --brand: #7c83db;
  --brand-strong: #5b62c4;
  --brand-contrast: #ffffff;
  --accent: #e7799b;
  --accent-soft: #fad4e1;
  --ok: #4caf91;
  --warn: #e0a458;
  --err: #e26d7a;
  --recent: #4caf91;
  --special: #e26d7a;
  --zebra: #faf3fc;
  --shadow: 0 1px 4px rgba(124, 131, 219, .18);
}
