/* Design tokens e resets mínimos */
:root{
  --black:#000000;
  --deep:#263d29;
  --light:#e9e8e4;
  --muted:#959989;
  --green:#416f40;
  --ink:#0e1d14;
  --radius:12px;
  --radius-lg:14px;
  --shadow:0 12px 24px -18px rgba(0,0,0,.35);
  --border:#d8d7d3;
  --border-dark:#28362f;
}
*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth;scroll-padding-top:80px}
body{margin:0;color:#1a1a1a;background:#fff;font:500 16px/1.55 'Montserrat',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}

/* Garantir que Montserrat seja aplicada em todos os elementos */
*, *::before, *::after {
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Garantir que elementos específicos usem Montserrat */
h1, h2, h3, h4, h5, h6,
p, span, div, a, button, input, textarea, select,
label, li, td, th, caption,
.btn, .nav__links a, .brand__name,
.hero__text h1, .hero__text p, .hero__actions,
.about-title h1, .about-section h2, .about-section p,
.page-banking .hero-title, .page-banking .hero-sub,
.page-empresas .hero-title, .page-empresas .hero-sub {
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
}
