/* ====================================
   CSS VARIABLES - PROPTECH THEME
   ==================================== */

:root {
    /* PROPTECH THEME - Minimalista Verde */
    --primary: #7EB495;
    --primary-dark: #60967A;
    --primary-light: #9ECDB1;
    --primary-hover: #60967A;

    --bg: #F8FAF9;
    --bg-light: #FFFFFF;
    --bg-dark: #F8FAF9;
    --bg-card: #FFFFFF;

    --border: #E0E8E4;
    --border-light: #E0E8E4;

    --text: #333333;
    --text-secondary: #555555;
    --text-muted: #777777;

    --success: #7EB495;
    --error: #B91C1C;
    --warning: #f39c12;

    --logo-text: 'NEURO SEARCH';

    /* Overlay gradient - none for white theme */
    --overlay-gradient: none;

    /* Scrollbar colors */
    --scrollbar-track: #F8FAF9;
    --scrollbar-thumb: #7EB495;
    --scrollbar-thumb-hover: #60967A;

    /* Shadows */
    --shadow: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-hover: 0 4px 8px rgba(126, 180, 149, 0.3);
}

/* Transitions */
:root {
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Spacing */
:root {
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;
}

/* Border radius */
:root {
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-pill: 50px;
}

/* Shadows */
:root {
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.4);
}
