/* ══════════════════════════════════════════════════════════
   GREMIONEXO - Design System Variables
   Directorio Digital Nacional de Colombia
   ══════════════════════════════════════════════════════════ */

:root {
    /* ── Brand Colors ────────────────────────────────── */
    --color-primary: #0891b2;        /* Cyan 600 - Main brand */
    --color-primary-dark: #0e7490;   /* Cyan 700 - Hover */
    --color-primary-light: #22d3ee;  /* Cyan 400 - Light */
    --color-primary-50: #ecfeff;     /* Cyan 50 - Background */

    /* ── Secondary Colors ────────────────────────────── */
    --color-secondary: #1e40af;      /* Blue 800 - Trust */
    --color-secondary-dark: #1e3a8a;
    --color-secondary-light: #3b82f6;

    /* ── Accent Colors ───────────────────────────────── */
    --color-success: #059669;        /* Emerald 600 */
    --color-warning: #d97706;        /* Amber 600 */
    --color-danger: #dc2626;         /* Red 600 */
    --color-info: #2563eb;           /* Blue 600 */

    /* ── Neutral Colors ──────────────────────────────── */
    --color-white: #ffffff;
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;

    /* ── Typography ──────────────────────────────────── */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Poppins', 'Inter', sans-serif;

    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 1.875rem;    /* 30px */
    --text-4xl: 2.25rem;     /* 36px */

    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* ── Spacing ─────────────────────────────────────── */
    --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 */
    --space-16: 4rem;        /* 64px */

    /* ── Border Radius ───────────────────────────────── */
    --radius-sm: 0.375rem;   /* 6px */
    --radius-md: 0.5rem;     /* 8px */
    --radius-lg: 0.75rem;    /* 12px */
    --radius-xl: 1rem;       /* 16px */
    --radius-full: 9999px;

    /* ── Shadows ─────────────────────────────────────── */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);

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

    /* ── Z-Index ─────────────────────────────────────── */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;

    /* ── Container ───────────────────────────────────── */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
}
