/* ==========================================================================
   BASE — variáveis, reset e fundamentos tipográficos
   ========================================================================== */

:root {
  --bg: #09090b;
  --card-bg: #121215;
  --card-hover: #18181e;
  --border: #222228;
  --text: #f4f4f6;
  --text-muted: #8e8e98;
  --red: #e63946;
  --green: #2ecc71;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

.anton {
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.5px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.section-title {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: #ffffff;
}

.section-label {
  color: var(--red);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

/* Textura de ruído cinematográfico (canvas fixo, ver js/noise.js) */
#noiseCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  mix-blend-mode: screen;
}
