/* ============================================================
   DESIGN SYSTEM TOKENS - Hub Academia (Manta Black Slate)
   ============================================================ */
:root {
    /* Core Palette - Dark Matte Scale */
    --bg-main: #050505;      /* Deep Black */
    --bg-secondary: #0a0a0a; /* Matte Black Surface */
    --bg-tertiary: #121212;  /* Dark Slate Content */

    /* Surfaces */
    --surface: #0a0a0a;
    --surface-hover: #121212;
    --card-bg: #0a0a0a;
    --modal-bg: #0a0a0a;

    /* Accents - Trustworthy Blue & Purple */
    --primary: #3b82f6;      /* Blue 500 */
    --primary-hover: #2563eb; /* Blue 600 */
    --primary-light: #60a5fa; /* Blue 400 */
    --accent-purple: #8b5cf6; /* Royal Purple */

    /* Text */
    --text-main: #f8fafc;      /* Slate 50 */
    --text-secondary: #cbd5e1; /* Slate 300 */
    --text-muted: #94a3b8;    /* Slate 400 */
    --text-inverse: #ffffff;

    /* Borders - Unified Subtle Glow */
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(59, 130, 246, 0.3);
    --border-glow: rgba(59, 130, 246, 0.2);

    /* Functional Colors */
    --danger: #ef4444;
    --danger-hover: #dc2626;
    --warning: #f59e0b;
    --success: #10b981;
    --info: #0ea5e9;

    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 rgba(10, 10, 10, 0.8);
    --shadow-md: 0 4px 6px -1px rgba(10, 10, 10, 0.8), 0 2px 4px -2px rgba(10, 10, 10, 0.8);
    --shadow-lg: 0 10px 15px -3px rgba(10, 10, 10, 0.8), 0 4px 6px -4px rgba(10, 10, 10, 0.8);
    --shadow-xl: 0 20px 25px -5px rgba(10, 10, 10, 0.8), 0 8px 10px -6px rgba(10, 10, 10, 0.8);

    /* Typography */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;

    /* Spacing & Padding Variables */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2.5rem;
    --spacing-xl: 4rem;

    /* Radius Variables */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;

    /* Compatibility Aliases */
    --border: var(--border-color);
    --surface-alt: var(--bg-secondary);
    --accent: var(--primary);
    --accent-bright: var(--primary-light);
    --accent-hover: var(--primary-hover);
    --accent-dark: rgba(59, 130, 246, 0.1);

    /* Layout Config */
    --page-padding-x: 1rem;
    --max-width: 1440px;
}

/* 📱 Webkit Touch Highlight Reset - Aplicado Globalmente */
* {
    -webkit-tap-highlight-color: transparent !important;
}
