/* ==========================================================================
   Design System Tokens - RTJ Advocacia
   ========================================================================== */

:root {
    /* ==========================================================================
       COLORS
       ========================================================================== */

    /* Neutrals - Deep Dark Theme */
    --color-bg-base: #000000; /* Pure Black */
    --color-bg-surface: #0a0a0a; /* Elevated Cards */
    --color-bg-surface-hover: #141414;

    /* Text */
    --color-text-primary: #c7c7c7; /* Main Text */
    --color-text-secondary: #977b50; /* Secondary Text */
    --color-text-muted: #666666;

    /* Accents - Golden Yellow */
    --color-accent-primary: #ffc517; /* Golden Yellow */
    --color-accent-hover: #ffd447;
    --color-accent-dark: #cc9e12;

    /* Borders & Dividers */
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-hover: rgba(255, 255, 255, 0.2);

    /* Status Colors */
    --color-success: #71d083;
    --color-error: #ff949d;

    /* ==========================================================================
       TYPOGRAPHY
       ========================================================================== */

    /* Font Families */
    /* Primary: Montserrat para um visual padrão e moderno aos títulos */
    --font-heading: 'Montserrat', sans-serif;
    
    /* Secondary: Montserrat para o corpo do texto */
    --font-body: 'Montserrat', sans-serif;

    /* Fluid Typographic Scale (Mobile First to Desktop) */
    /* Clamp: clamp(MIN, VAL + BASE, MAX) */
    --text-hero: clamp(2.5rem, 5vw + 1rem, 5.5rem);
    --text-h1: clamp(2rem, 3.5vw + 1rem, 4rem);
    --text-h2: clamp(1.75rem, 2.5vw + 1rem, 3rem);
    --text-h3: clamp(1.5rem, 1.8vw + 0.8rem, 2rem);
    --text-h4: clamp(1.25rem, 1.2vw + 0.8rem, 1.5rem);
    
    --text-large: clamp(1.125rem, 1vw + 0.5rem, 1.25rem);
    --text-base: clamp(1rem, 0.8vw + 0.5rem, 1.125rem);
    --text-small: 0.875rem;

    /* Font Weights */
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-bold: 600;
    --weight-black: 900;

    /* ==========================================================================
       SPACING & LAYOUT
       ========================================================================== */

    /* Layout Spacing */
    --section-padding-y: clamp(4rem, 8vw, 8rem);
    --section-padding-x: clamp(1.5rem, 4vw, 4rem);
    
    /* Container Width */
    --container-max-width: 1280px;

    /* Component Spacing */
    --space-4: 0.25rem;
    --space-8: 0.5rem;
    --space-12: 0.75rem;
    --space-16: 1rem;
    --space-24: 1.5rem;
    --space-32: 2rem;
    --space-48: 3rem;
    --space-64: 4rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* ==========================================================================
       MOTION & INTERACTION
       ========================================================================== */

    /* Easing Functions (Cinematic and Smooth) */
    /* Taken from site3.css for ultra-premium feel */
    --ease-expo: cubic-bezier(.87, 0, .13, 1);
    --ease-out: cubic-bezier(.16, 1, .3, 1);
    
    /* Durations */
    --duration-fast: 200ms;
    --duration-base: 400ms;
    --duration-slow: 800ms;
    --duration-xslow: 1200ms;

    /* ==========================================================================
       SHADOWS
       ========================================================================== */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.2);
}
