/* ============================================================
   EYOU CRM — Design Tokens
   Centraliza cores, espaçamento, tipografia, radius, sombras
   e transições. Importado antes de custom.css em todas as views.
   ============================================================ */

:root {
    /* ── Cores ────────────────────────────────────────────────── */
    --eyou-purple: #3f3cbb;
    --eyou-purple-dark: #312e81;
    --eyou-teal: #14b8a6;
    --eyou-orange: #f97316;
    --eyou-bg: #f8fafc;

    /* Bootstrap overrides */
    --bs-primary: #3f3cbb;
    --bs-primary-rgb: 63, 60, 187;
    --bs-info: #14b8a6;
    --bs-info-rgb: 20, 184, 166;
    --bs-warning: #f97316;
    --bs-warning-rgb: 249, 115, 22;

    /* Semantic colors */
    --eyou-text-primary: #344767;
    --eyou-text-muted: #64748b;
    --eyou-border: #e2e8f0;
    --eyou-input-bg: #f8fafc;

    /* Glass effect (auth) */
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px 0 rgba(63, 60, 187, 0.15);

    /* ── Spacing (base 4px) ──────────────────────────────────── */
    --space-1: 0.25rem;    /* 4px */
    --space-2: 0.5rem;     /* 8px */
    --space-3: 0.75rem;    /* 12px */
    --space-4: 1rem;       /* 16px */
    --space-5: 1.25rem;    /* 20px */
    --space-6: 1.5rem;     /* 24px */
    --space-8: 2rem;       /* 32px */
    --space-10: 2.5rem;    /* 40px */
    --space-12: 3rem;      /* 48px */

    /* ── Tipografia ──────────────────────────────────────────── */
    --font-family: 'Nunito', sans-serif;
    --text-xs: 0.75rem;    /* 12px — sidebar labels */
    --text-sm: 0.82rem;    /* ~13px — sub-items */
    --text-base: 0.9rem;   /* ~14px — form labels */
    --text-md: 0.95rem;    /* ~15px — form controls */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px — brand text */

    /* ── Font weights ────────────────────────────────────────── */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    /* ── Border radius ───────────────────────────────────────── */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;     /* cards, inputs */
    --radius-xl: 16px;
    --radius-2xl: 24px;    /* auth-card */
    --radius-full: 9999px; /* pills */

    /* ── Shadows ──────────────────────────────────────────────── */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(63, 60, 187, 0.15);

    /* ── Transitions ─────────────────────────────────────────── */
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;

    /* ── Z-index ─────────────────────────────────────────────── */
    --z-navbar: 1030;
    --z-toast: 9999;
    --z-chat-widget: 999999;
}
