/* 
  BOSYN Holding Institutional - Theme Tokens
  Follows: Diretriz Geral Master BOSYN
  Author: Antigravity AI
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Roboto+Mono:wght@400;500;700&display=swap');

:root {
    /* --- Colors --- */
    --bg-offwhite: #F6F5F3;
    --text-charcoal: #22262A;
    --accent-neon: #00F0FF;
    --black-logo: #0B0C0D;

    /* --- Typography --- */
    /* Titles 'Poppins' (SemiBold) */
    --font-family-title: 'Poppins', sans-serif;
    --font-weight-title: 600;

    /* Body 'Source Sans 3' */
    --font-family-body: 'Source Sans 3', sans-serif;
    --font-weight-body-regular: 400;
    --font-weight-body-bold: 700;

    /* Data 'Roboto Mono' */
    --font-family-data: 'Roboto Mono', monospace;
    --font-weight-data: 500;

    /* --- Golden Rule --- */
    /* border-radius de 4px em todos os elementos clicáveis */
    --radius-interactive: 4px;
    
    /* 0% de gradientes */
    --bg-gradient-none: none;
    --border-gradient-none: none;

    /* --- Spacing Scale (Base 8px) --- */
    --space-unit: 8px;
    --space-xs: 4px;   /* 0.5x */
    --space-sm: 8px;   /* 1x */
    --space-md: 16px;  /* 2x */
    --space-lg: 24px;  /* 3x */
    --space-xl: 32px;  /* 4x */
    --space-2xl: 48px; /* 6x */
    --space-3xl: 64px; /* 8x */
    --space-4xl: 80px; /* 10x */
}

/* Global clickable elements reset according to Golden Rule */
button, 
.button, 
a.btn, 
input[type="submit"], 
input[type="button"],
select,
textarea,
input:not([type="checkbox"]):not([type="radio"]) {
    border-radius: var(--radius-interactive);
    background-image: var(--bg-gradient-none) !important;
}
