/**
 * Sarará Ensina - Design System (Variables)
 * Centralização de Identidade Visual e Tokens de Design
 * Localização: assets/css/variables.css
 */

/* 1. IDENTIDADE VISUAL (FONTES) 
   Nota: Os caminhos utilizam ../fonts/ para subir um nível a partir de assets/css/
*/

@font-face {
    font-family: 'Stara';
    src: url('../fonts/Stara-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stara';
    src: url('../fonts/Stara-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stara';
    src: url('../fonts/Stara-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stara';
    src: url('../fonts/Stara-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Stara';
    src: url('../fonts/Stara-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    /* 2. CORES PRINCIPAIS (Paleta Institucional) */
    --srr-blue: #2563eb;          /* Azul Sarará */
    --srr-blue-hover: #1d4ed8;    /* Interação */
    --srr-green: #10b981;         /* Sucesso / Ativo */
    --srr-red: #ef4444;           /* Erro / Excluir */
    --srr-orange: #f59e0b;        /* Alerta / Pendente */
    
    /* 3. ESCALA DE CINZAS (Contraste e Leitura) */
    --srr-dark: #0f172a;          /* Títulos e Textos Fortes */
    --srr-gray: #64748b;          /* Subtítulos e Corpo de Texto */
    --srr-light: #94a3b8;         /* Placeholders e Desativados */
    --srr-border: #e2e8f0;        /* Bordas de Containers e Inputs */
    
    /* 4. CORES DE FUNDO */
    --srr-bg-main: #f1f5f9;       /* Fundo do Dashboard WP */
    --srr-bg-white: #ffffff;      /* Cards e Modais */
    --srr-bg-subtle: #f8fafc;     /* Fundo de Inputs e Zebra Tables */
    
    /* 5. MEDIDAS E GEOMETRIA (Border Radius) */
    --srr-radius-sm: 6px;         /* Botões e Inputs */
    --srr-radius: 12px;           /* Cards Padrão */
    --srr-radius-lg: 20px;        /* Modais e Grandes Seções */
    
    /* 6. ELEVAÇÃO E SOMBRAS (Riqueza Visual) */
    --srr-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    --srr-shadow-lg: 0 10px 25px rgba(15, 23, 42, 0.12);
    --srr-shadow-button: 0 4px 12px rgba(37, 99, 235, 0.2);
    
    /* 7. TIPOGRAFIA GERAL */
    --srr-font-main: 'Stara', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}