/* ==========================================================================
   FLUXAR — BASE.CSS
   Fundação visual do sistema (variáveis, reset, tipografia)
   ========================================================================== */

:root {
    /* Cores primárias */
    --fx-primary: #00d4ea;
    --fx-secondary: #5a00cc;
    --fx-accent: #ff00e5;
    
    /* Background */
    --fx-bg: #0a0a0f;
    --fx-bg-card: rgba(20, 20, 35, 0.6);
    
    /* Texto */
    --fx-text: #ffffff;
    --fx-text-dim: #a0a0b0;
    
    /* Espaçamentos */
    --fx-space-xs: 8px;
    --fx-space-sm: 16px;
    --fx-space-md: 24px;
    --fx-space-lg: 32px;
    --fx-space-xl: 48px;
    
    /* Tipografia */
    --fx-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    
    /* Transições */
    --fx-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fx-font-sans);
    background: var(--fx-bg);
    color: var(--fx-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Tipografia base */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
    color: var(--fx-text);
}

p {
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
}
