/* ============================================
   FIT FLAG — Design System Base
   Cores, fontes e reset global
   ============================================ */

/* --- Fonts --- */
@font-face {
    font-family: 'Lugrasimo';
    src: url('../fonts/Lugrasimo-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Lufga — adicionar quando disponivel
@font-face {
    font-family: 'Lufga';
    src: url('../fonts/Lufga-Thin.woff2') format('woff2');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Lufga';
    src: url('../fonts/Lufga-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
*/

/* --- Design Tokens --- */
:root {
    /* Cores */
    --color-green: #2ECC40;
    --color-yellow: #F5C518;
    --color-red: #ED1C24;
    --color-white: #FFFFFF;
    --color-bg: #0a0a0a;
    --color-bg-card: #151515;
    --color-border: #262626;
    --color-text: #f5f5f5;
    --color-text-muted: #999999;

    /* Fontes */
    --font-heading: 'Lufga', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Lufga', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-accent: 'Lugrasimo', cursive;

    /* Espacamento */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 60px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;

    /* Max Width */
    --max-width: 420px;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    min-height: 100vh;
    line-height: 1.5;
}

a {
    color: var(--color-green);
    text-decoration: none;
}

a:hover {
    opacity: 0.85;
}

img {
    max-width: 100%;
    display: block;
}

/* --- Utilidades --- */
.text-green { color: var(--color-green); }
.text-yellow { color: var(--color-yellow); }
.text-red { color: var(--color-red); }
.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }

.accent { font-family: var(--font-accent); }
