/**
 * PJ System — Design tokens (ERP/SaaS)
 * Carregar antes de admin.css / cliente_app.css / tema_modern.css
 */

:root {
    /* Brand PJ System */
    --brand-950: #00165c;
    --brand-900: #001e74;
    --brand-800: #092b70;
    --brand-700: #123f91;
    --brand-600: #1d56b3;
    --brand-500: #2b6ce6;

    --background: #f4f7fb;
    --surface: #ffffff;
    --surface-secondary: #f8fafc;

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;

    --border: #d8e1ec;
    --border-light: #e8edf4;

    --success: #15803d;
    --warning: #d97706;
    --danger: #dc2626;
    --info: #2563eb;

    --radius-sm: 8px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.1);
    --focus-ring: 0 0 0 3px rgba(43, 108, 230, 0.22);
    --control-height: 42px;
    --sidebar-width: 260px;
    --sidebar-collapsed: 76px;
    --topbar-height: 60px;
    --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Legacy aliases (compatibilidade) */
    --pj-navy: var(--brand-900);
    --pj-navy-hover: var(--brand-800);
    --pj-text: var(--text-primary);
    --pj-muted: var(--text-muted);
    --pj-border: var(--border);
    --pj-bg: var(--background);
    --pj-white: var(--surface);
    --pj-focus: rgba(43, 108, 230, 0.22);
    --pj-accent: var(--brand-500);
    --pj-accent-soft: rgba(43, 108, 230, 0.12);
    --pj-card-shadow: var(--shadow-md);
    --pj-radius: var(--radius-lg);
    --pj-radius-sm: var(--radius-md);
    --admin-content-max: 100%;
}

@media (prefers-reduced-motion: reduce) {
    :root {
        --motion: 0ms;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
