/* Sigma Trust — global redesign theme ("Agenda Econômica").
   Applies the new visual identity across the whole site by remapping the CSS
   variables the pages already use: gold accent (was orange), Playfair Display
   serif, Inter sans, IBM Plex Mono, and a warm cream page background.
   Loaded last on every page so these overrides win. Greens/reds are left to
   each page (protects the Live Desk terminal palette). */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@300;400;500;600&display=swap');

:root{
  /* accent — gold replaces the orange used site-wide */
  --accent:#F5A400;
  --accent-soft:#fdf1d4;
  --bloomberg:#F5A400;
  --bloomberg-soft:#f7b733;
  --ac:#F5A400;

  /* typography */
  --serif:'Playfair Display',Georgia,serif;
  --sans:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --mono:'IBM Plex Mono',ui-monospace,Menlo,Consolas,monospace;
}

/* warm cream page background (was white / light-gray gradient) */
body{ background:#faf9f5; }

::selection{ background:#F5A400; color:#050505; }

/* catch the few places the old orange is hard-coded rather than via a var */
a[style*="ff6a00"]{ color:#F5A400 !important; }

/* ---- consistent dark navigation across all themed (old-markup) pages ---- */
.nav{background:#050505 !important;border-bottom:1px solid #2A2D31 !important;}
.logo{color:#fff !important;}
.logo .sigma{color:#F5A400 !important;}
.logo small{color:rgba(255,255,255,.6) !important;border-left-color:rgba(255,255,255,.3) !important;}
.nav-links a{color:rgba(255,255,255,.84) !important;}
.nav-links a:hover{color:#F5A400 !important;}
.nav-cta{background:#F5A400 !important;color:#050505 !important;border-radius:4px;}
.nav-cta:hover{background:#C98700 !important;}
.menu-btn span{background:#fff !important;}
.drawer{background:#050505 !important;}
.drawer ul li{border-bottom-color:#2A2D31 !important;}
.drawer ul li a{color:#fff !important;}
.drawer ul li a:hover{color:#F5A400 !important;}
.drawer-meta,.drawer ul li a .num,.drawer-regions h4,.drawer-cta .secondary{color:#8A8D91 !important;}
.drawer-regions h4{border-top-color:#2A2D31 !important;}
.drawer-cta{border-top-color:#2A2D31 !important;}
.drawer-cta .primary{background:#F5A400 !important;color:#050505 !important;}

/* ---- unify the top bar with the redesign: gold index numbers, arrow, wordmark ---- */
.nav{background:#050505 !important;}
.nav-links li:nth-child(1) a::after{content:"\2192 01";}
.nav-links li:nth-child(2) a::after{content:"\2192 02";}
.nav-links li:nth-child(3) a::after{content:"\2192 03";}
.nav-links li:nth-child(4) a::after{content:"\2192 04";}
.nav-links a::after{font-family:'IBM Plex Mono',ui-monospace,monospace;font-size:11px;color:#F5A400 !important;margin-left:7px;letter-spacing:.04em;font-weight:500;}
.nav-cta::after{content:" \2192";margin-left:2px;font-weight:600;}
.logo span:not(.sigma){font-family:'Playfair Display',Georgia,serif;text-transform:uppercase;letter-spacing:.06em;font-weight:700;}
