/* 
   Ixtar Bolão - Design System Variables
   Single Source of Truth para estilos do sistema.
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Fonts */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-display: 'Outfit', sans-serif;

    /* Theme Colors (Premium Dark Theme) */
    --color-bg: #090d16;
    --color-surface-bg: #0f172a;
    --color-card-bg: rgba(15, 23, 42, 0.65);
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-hover: rgba(0, 212, 255, 0.3);

    /* Brand Accent Colors */
    --color-primary: #00d4ff;        /* Ciano Elétrico */
    --color-primary-rgb: 0, 212, 255;
    --color-secondary: #ff6b35;      /* Laranja Gol */
    --color-secondary-rgb: 255, 107, 53;

    /* Semantic Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-info: #3b82f6;

    /* Text Colors */
    --color-text-main: #f8fafc;
    --color-text-muted: #e2e8f0; /* Cinza bem claro próximo ao branco */
    --color-text-dark: #cbd5e1;  /* Cinza médio/claro muito legível */

    /* Layout & Styling Properties */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-xl: 2rem;

    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(0, 212, 255, 0.2);
    --shadow-glow-secondary: 0 0 20px rgba(255, 107, 53, 0.2);

    /* Animations & Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s ease;
    
    --glass-blur: blur(16px);
}
