/* =============================================================================
   GetAll Admin Console — Design System Variables
   Fork do samurai-console: vermelho (#dc2626) → roxo (#7c3aed)
   ============================================================================= */

:root {
    /* ── Primary (Purple — was Red in samurai) ─────────────────── */
    --color-primary: #7c3aed;
    --color-primary-hover: #6d28d9;
    --color-primary-active: #5b21b6;
    --color-primary-light: #8b5cf6;
    --color-primary-lighter: #a78bfa;
    --color-primary-lightest: #c4b5fd;
    --color-primary-010: rgba(124, 58, 237, 0.1);
    --color-primary-012: rgba(124, 58, 237, 0.12);
    --color-primary-020: rgba(124, 58, 237, 0.2);
    --color-primary-040: rgba(124, 58, 237, 0.4);
    --color-primary-060: rgba(124, 58, 237, 0.6);

    /* ── Backgrounds (same as samurai) ─────────────────────────── */
    --color-bg: #080808;
    --color-surface: #111111;
    --color-surface-2: #161616;
    --color-surface-3: #1e1e1e;
    --color-surface-hover: #222222;
    --color-surface-active: #2a2a2a;

    /* ── Text ──────────────────────────────────────────────────── */
    --color-text: #e8e8e8;
    --color-text-secondary: #999999;
    --color-text-dim: #666666;
    --color-text-inverse: #080808;

    /* ── Borders ───────────────────────────────────────────────── */
    --color-border: #222222;
    --color-border-light: #2a2a2a;
    --color-border-focus: var(--color-primary);

    /* ── Status ────────────────────────────────────────────────── */
    --color-success: #22c55e;
    --color-success-bg: rgba(34, 197, 94, 0.1);
    --color-warning: #f59e0b;
    --color-warning-bg: rgba(245, 158, 11, 0.1);
    --color-danger: #ef4444;
    --color-danger-bg: rgba(239, 68, 68, 0.1);
    --color-info: #06b6d4;
    --color-info-bg: rgba(6, 182, 212, 0.1);

    /* ── Typography ────────────────────────────────────────────── */
    --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;

    /* ── Spacing ───────────────────────────────────────────────── */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;

    /* ── Radius ────────────────────────────────────────────────── */
    --radius-sm: 0.25rem;
    --radius-md: 0.625rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;

    /* ── Shadows ───────────────────────────────────────────────── */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 20px var(--color-primary-020);

    /* ── Layout ────────────────────────────────────────────────── */
    --sidebar-width: 260px;
    --sidebar-collapsed: 64px;
    --topbar-height: 56px;

    /* ── Transitions ───────────────────────────────────────────── */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
}
