/**
 * RINGNECK GENETICS - VARIÁVEIS CSS
 * 
 * Define cores, tamanhos, e outras constantes de design
 */

:root {
    /* ============================================================
       CORES PRIMÁRIAS
       ============================================================ */
    
    --color-primary: #0066CC;          /* Azul Ringneck */
    --color-primary-dark: #0052A3;
    --color-primary-light: #E6F0FF;
    
    --color-white: #FFFFFF;
    --color-black: #000000;
    
    /* ============================================================
       CORES DE ESCALA DE CINZA
       ============================================================ */
    
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F5F5F5;
    --color-gray-200: #E0E0E0;
    --color-gray-300: #D0D0D0;
    --color-gray-400: #BDBDBD;
    --color-gray-500: #999999;
    --color-gray-600: #666666;
    --color-gray-700: #444444;
    --color-gray-800: #333333;
    --color-gray-900: #1A1A1A;
    
    /* ============================================================
       CORES DE ESTADO
       ============================================================ */
    
    --color-success: #00CC00;          /* Verde - Seguro */
    --color-warning: #FFAA00;          /* Amarelo - Atenção */
    --color-error: #CC0000;            /* Vermelho - Erro */
    --color-info: #0099FF;             /* Azul claro - Info */
    
    /* ============================================================
       CORES DE MUTAÇÕES (FENÓTIPOS)
       ============================================================ */
    
    --color-mutation-azul: #0066CC;
    --color-mutation-verde: #00AA00;
    --color-mutation-ino: #FFFF00;
    --color-mutation-lutino: #FF9900;
    --color-mutation-violeta: #9933FF;
    --color-mutation-canela: #8B4513;
    --color-mutation-cinza: #808080;
    --color-mutation-pied: #CCCCCC;
    
    /* ============================================================
       SEXO
       ============================================================ */
    
    --color-male: #0099FF;             /* Azul - Macho */
    --color-female: #FF0099;           /* Rosa - Fêmea */
    
    /* ============================================================
       TIPOGRAFIA
       ============================================================ */
    
    --font-family-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-family-mono: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-size-2xl: 32px;
    
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    --line-height-tight: 1.2;
    --line-height-normal: 1.5;
    --line-height-loose: 1.8;
    
    /* ============================================================
       ESPAÇAMENTO (8px base grid)
       ============================================================ */
    
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    --spacing-3xl: 64px;
    
    /* ============================================================
       BORDER RADIUS
       ============================================================ */
    
    --border-radius-sm: 4px;
    --border-radius-md: 6px;
    --border-radius-lg: 8px;
    --border-radius-xl: 12px;
    --border-radius-full: 9999px;
    
    /* ============================================================
       SOMBRAS
       ============================================================ */
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.20);
    
    /* ============================================================
       TRANSIÇÕES
       ============================================================ */
    
    --transition-fast: 0.1s ease;
    --transition-normal: 0.2s ease;
    --transition-slow: 0.3s ease;
    
    /* ============================================================
       BREAKPOINTS (Mobile First)
       ============================================================ */
    
    --breakpoint-sm: 576px;    /* Tablets pequenos */
    --breakpoint-md: 768px;    /* Tablets */
    --breakpoint-lg: 1024px;   /* Desktop */
    --breakpoint-xl: 1200px;   /* Desktop grande */
    --breakpoint-2xl: 1400px;  /* Ultra wide */
    
    /* ============================================================
       OUTRAS DIMENSÕES
       ============================================================ */
    
    --header-height: 70px;
    --footer-height: 60px;
    --sidebar-width: 250px;
    --modal-max-width: 600px;
    
    /* ============================================================
       Z-INDEX
       ============================================================ */
    
    --z-index-dropdown: 100;
    --z-index-sticky: 200;
    --z-index-fixed: 300;
    --z-index-modal-backdrop: 400;
    --z-index-modal: 500;
    --z-index-popover: 600;
    --z-index-tooltip: 700;
    --z-index-notification: 800;
}

/* ============================================================
   MODO ESCURO (FUTURO)
   ============================================================ */

@media (prefers-color-scheme: dark) {
    :root {
        --color-white: #1A1A1A;
        --color-black: #FFFFFF;
        --color-gray-50: #0F0F0F;
        --color-gray-900: #F9FAFB;
    }
}