/* ═══════════════════════════════════════════════════════
   BASE — Resets, typography, backgrounds
═══════════════════════════════════════════════════════ */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}

/* KMM Default */
body {
  background:var(--bg);color:var(--t);font-family:var(--ff);overflow-x:hidden;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* Theme Bate Estaca overrides */
body.theme-be {
  color:var(--white);
  font-family:var(--fb);
  min-height:100vh;
  position:relative;
  z-index:0;
  background-image: none;
}

body.theme-be .site-bg {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: -1;
  pointer-events: none;
  background-color: #04101e;
  background-image: url('../bg/fundo-desktop.webp');
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: top center;
}

@media (max-width: 640px) {
  body.theme-be .site-bg {
    background-image: url('../bg/fundo-mobile.webp');
    background-size: cover;
    background-position: top center;
  }
}
