/* ─── pandora-os — Tokens de design (fonte ÚNICA de estilo) ───────────────────
   REGRA DE OURO: nenhum arquivo do sistema escreve cor/fonte na mão.
   Tudo aponta pra estas variáveis. Quando chegar o manual da marca, troca-se
   os valores aqui (os DOIS temas) + o logo + o nome → o sistema muda de uma vez.
   Espelha os nomes de token do Alex OS v2 (css/design-tokens.css).

   Tema CLARO é o padrão (preferência do gestor). O escuro é opção na interface. */
:root{
  --brand-orange:#ff6600; --brand-orange-light:#ff8533; --brand-orange-dark:#cc5200;

  --bg:#f3f4f7; --surface:#ffffff; --surface2:#f0f1f4; --surface3:#e6e8ee;
  --text:#1a1d23; --muted:#6b7280; --border:rgba(0,0,0,.10);
  --accent:var(--brand-orange); --accent-pale:rgba(255,102,0,.11);
  --accent-sel:rgba(255,102,0,.08); --accent-line:rgba(255,102,0,.38);
  --edge:linear-gradient(180deg,rgba(0,0,0,.10),rgba(0,0,0,.05) 55%,rgba(0,0,0,.03));
  --shadow-card:0 1px 3px rgba(0,0,0,.07),0 10px 24px -14px rgba(0,0,0,.22);
  --shadow-btn:0 1px 2px rgba(0,0,0,.07);
  --success:#16a34a; --danger:#dc2626; --warn:#d97706; --info:#2563eb;
  --success-pale:rgba(22,163,74,.12); --warn-pale:rgba(217,119,6,.13);
  --info-pale:rgba(37,99,235,.11); --danger-pale:rgba(220,38,38,.10);
  --scrim:rgba(20,22,28,.42);

  --font-brand:'Montserrat',sans-serif;
  --font-ui:-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --radius-sm:5px; --radius-md:8px; --radius-lg:10px; --radius-full:9999px;
}
:root[data-theme="dark"]{
  --bg:#0e0f12; --surface:#16181d; --surface2:#1c1f25; --surface3:#23272e;
  --text:#eef0f3; --muted:#8a9099; --border:rgba(255,255,255,.07);
  --accent-pale:rgba(255,102,0,.12); --accent-sel:rgba(255,102,0,.09); --accent-line:rgba(255,102,0,.32);
  --edge:linear-gradient(180deg,rgba(255,255,255,.11),rgba(255,255,255,.02) 45%,rgba(255,255,255,.012));
  --shadow-card:0 1px 0 rgba(255,255,255,.04) inset,0 12px 26px -14px rgba(0,0,0,.6);
  --shadow-btn:0 1px 0 rgba(255,255,255,.07) inset,0 2px 5px rgba(0,0,0,.4);
  --success:#22c55e; --danger:#ef4444; --warn:#f59e0b; --info:#3b82f6;
  --success-pale:rgba(34,197,94,.12); --warn-pale:rgba(245,158,11,.12);
  --info-pale:rgba(59,130,246,.12); --danger-pale:rgba(239,68,68,.12);
  --scrim:rgba(8,9,11,.66);
}
