/* ============================================================
   VELTRO WMS — Variables & Reset
   Variáveis globais, reset e estilos base
   ============================================================ */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis globais */
:root {
    --primary: #0ea5e9;
    --primary-hover: #0284c7;
    --primary-rgb: 14, 165, 233;

    --background: #f8fafc;
    --card-bg: #ffffff;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;

    --warning: #f97316;
    --danger: #ef4444;
    --success: #22c55e;
    --accent: #1e293b;
    --blue: #5a8fa8;

    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --surface: #ffffff;
    --surface-alt: #f8fafc;
    --surface-hover: #f1f5f9;
    --radius: 8px;
    --radius-sm: 4px;
    --radius-lg: 12px;
}

/* Base */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: var(--background);
    color: var(--text);
}

/* Utilitários */
.muted {
    color: var(--muted);
    font-size: 12px;
}

.footer {
    margin-top: 24px;
    padding: 16px 0 8px;
    text-align: center;
    font-size: 13px;
    color: var(--muted);
}
