/*
 * Identidad visual, tomada de public/images/logo/logo-ac.svg.
 *
 * Vive aquí y no en resources/sass/ porque Vite solo compila
 * resources/js/app.js: el SCSS del proyecto no entra al bundle y sus
 * variables nunca llegarían al navegador.
 */
:root {
    --brand-primary: #ff4600;
    --brand-primary-dark: #d63a00;
    --brand-primary-soft: #fff1ec;
    --brand-dark: #323232;
    --brand-dark-soft: #4a4a4a;

    --brand-surface: #ffffff;
    --brand-bg: #f8fafc;
    --brand-border: #e2e8f0;
    --brand-muted: #64748b;

    /* Estados */
    --brand-success: #16a34a;
    --brand-warning: #f59e0b;
    --brand-danger: #dc2626;
    --brand-info: #0ea5e9;

    --brand-radius: 12px;
    --brand-shadow: 0 1px 3px rgba(15, 23, 42, .08), 0 1px 2px rgba(15, 23, 42, .04);
    --brand-shadow-lg: 0 10px 25px rgba(15, 23, 42, .08);
}
