/* ============================================
   EDITOR BASE - VARIÁVEIS E RESET
   ============================================ */

:root {
    --header-height: 70px;
    --primary: #0ea5e9;
    --primary-50: #f0f9ff;
    --primary-100: #e0f2fe;
    --primary-200: #bae6fd;
    --success: #10b981;
    --success-light: #d1fae5;
    --surface-0: #ffffff;
    --surface-50: #f8fafc;
    --surface-100: #f1f5f9;
    --surface-200: #e2e8f0;
    --surface-300: #cbd5e1;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 0 2px rgba(14,165,233,0.2);
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-full: 9999px;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s ease;
    --transition-slow: 0.35s ease;
    --font-mono: 'Fira Code', 'JetBrains Mono', monospace;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--surface-100);
    color: var(--text-primary);
    line-height: 1.5;
    overflow: hidden;
}

/* Layout Principal */
.editor-workspace-corel {
    display: grid;
    grid-template-columns: 52px 1fr 280px;
    height: calc(100vh - var(--header-height) - 100px);
    background: var(--surface-100);
    overflow: hidden;
    margin-bottom: 100px;
}