/* ════════════════════════════════════════════════════════════
   TOKENS
   ════════════════════════════════════════════════════════════ */
:root {
  /* ink layers */
  --ink-0: #050505;
  --ink-1: #0B0B0C;
  --ink-2: #131316;
  --ink-3: #1B1B1F;
  --ink-4: #25252B;

  /* paper / text */
  --bone:   #F4EFE6;
  --bone-2: #BFB8AC;
  --mute:   #6E6962;
  --mute-2: #45413C;

  /* brand accents */
  --amber:   #E8A000;
  --amber-2: #FFB800;
  --amber-3: #C28500;
  --blue:    #4B9CD3;
  --purple:  #8B4CAD;

  /* utility */
  --rule: rgba(244, 239, 230, 0.08);
  --rule-2: rgba(244, 239, 230, 0.04);
  --rule-amber: rgba(232, 160, 0, 0.3);

  /* type */
  --f-display: 'Fraunces', 'Times New Roman', serif;
  --f-body:    'Manrope', system-ui, sans-serif;
  --f-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* timing */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, .05, .36, 1);
}

/* ════════════════════════════════════════════════════════════
   RESET
   ════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: var(--ink-0);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--bone);
  background: var(--ink-0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
img, svg { max-width: 100%; display: block; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--amber); color: var(--ink-0); }

/* ════════════════════════════════════════════════════════════
   GRAIN / NOISE OVERLAY (filme analógico)
   ════════════════════════════════════════════════════════════ */
.grain {
  position: fixed; inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 0.94  0 0 0 0 0.9  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* vinheta sutil nas bordas */
.vignette {
  position: fixed; inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,.55) 100%);
}

/* ════════════════════════════════════════════════════════════
   CUSTOM CURSOR
   ════════════════════════════════════════════════════════════ */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--bone);
  border-radius: 50%;
  transition: width .2s var(--ease), height .2s var(--ease);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid var(--bone);
  border-radius: 50%;
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s var(--ease), border-radius .25s var(--ease);
}
.cursor-ring.is-hover {
  width: 64px; height: 64px;
  border-color: var(--amber-2);
}
.cursor-dot.is-hover { width: 0; height: 0; }
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ════════════════════════════════════════════════════════════
   SECTION COUNTER (sticky vertical)
   ════════════════════════════════════════════════════════════ */
.counter {
  position: fixed;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  z-index: 50;
  writing-mode: vertical-rl;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mute);
  display: flex;
  align-items: center;
  gap: 18px;
}
.counter__num {
  color: var(--amber);
  font-weight: 500;
}
.counter__line {
  width: 1px;
  height: 48px;
  background: var(--rule);
}
@media (max-width: 1024px) { .counter { display: none; } }

/* ════════════════════════════════════════════════════════════
   UTILITIES
   ════════════════════════════════════════════════════════════ */
.shell {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.shell--narrow { max-width: 1100px; }
.section { padding: 140px 0; position: relative; }
.section--tight { padding: 100px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--amber);
}

.technical {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mute);
}

.display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -.02em;
  color: var(--bone);
}
.display em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  color: var(--amber);
}
.display--xxl  { font-size: clamp(64px, 11vw, 168px); }
.display--xl   { font-size: clamp(48px, 7vw, 104px); }
.display--l    { font-size: clamp(40px, 5.5vw, 80px); }
.display--m    { font-size: clamp(28px, 3.5vw, 48px); }

.lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  font-weight: 300;
  color: var(--bone-2);
  max-width: 60ch;
}
.body-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--bone-2);
  font-weight: 400;
}
.body-small {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--mute);
}

.rule { height: 1px; background: var(--rule); width: 100%; }
.rule--amber {
  background: linear-gradient(90deg, transparent 0%, var(--rule-amber) 20%, var(--rule-amber) 80%, transparent 100%);
}

/* button */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px 16px;
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: color .35s var(--ease), background .35s var(--ease);
  cursor: pointer;
  border: 0;
}
.btn svg { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary {
  background: var(--amber);
  color: var(--ink-0);
}
.btn--primary:hover { background: var(--amber-2); }
.btn--ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--rule);
}
.btn--ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}
.btn--link {
  padding: 0;
  background: transparent;
  color: var(--bone);
}
.btn--link::after {
  content: ''; position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 1px;
  background: var(--amber);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .4s var(--ease);
}
.btn--link:hover::after { transform-origin: left; transform: scaleX(1); }

/* ════════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 22px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(5,5,5,.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding: 14px 40px;
  border-bottom-color: var(--rule);
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  color: var(--bone);
  transition: opacity .25s var(--ease);
}
.nav__logo:hover { opacity: .85; }
.nav__logo svg {
  height: 44px;
  width: auto;
  display: block;
  transition: height .4s var(--ease);
}
.nav.is-scrolled .nav__logo svg { height: 36px; }
.brand-mark { overflow: visible; }
.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bone-2);
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.nav__link::before {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--amber);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .4s var(--ease);
}
.nav__link:hover { color: var(--bone); }
.nav__link:hover::before { transform-origin: left; transform: scaleX(1); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px 11px;
  background: var(--amber);
  color: var(--ink-0);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: background .25s var(--ease);
}
.nav__cta:hover { background: var(--amber-2); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--bone);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--ink-1);
  transform: translateX(100%);
  transition: transform .5s var(--ease-in-out);
  z-index: 79;
  padding: 100px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-left: 1px solid var(--rule);
}
.nav__drawer.is-open { transform: translateX(0); }
.nav__drawer a {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 400;
  color: var(--bone);
  padding: 12px 0;
  border-bottom: 1px solid var(--rule);
  transition: color .2s var(--ease);
}
.nav__drawer a:hover { color: var(--amber); }

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__backdrop {
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 600px at 90% -10%, rgba(232,160,0,.08), transparent 70%),
    radial-gradient(600px 500px at 10% 110%, rgba(139,76,173,.06), transparent 70%),
    var(--ink-0);
  z-index: -2;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--rule-2) 1px, transparent 1px),
    linear-gradient(to bottom, var(--rule-2) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 90%);
  z-index: -1;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
}
.hero__catalog {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--mute);
}

.hero__title {
  margin-bottom: 48px;
}
.hero__title-line {
  display: block;
  overflow: hidden;
}
.hero__title-line > span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: heroLine .9s var(--ease) forwards;
}
.hero__title-line:nth-child(1) > span { animation-delay: .15s; }
.hero__title-line:nth-child(2) > span { animation-delay: .35s; }
.hero__title-line:nth-child(3) > span { animation-delay: .55s; }

@keyframes heroLine {
  to { transform: translateY(0); opacity: 1; }
}

.hero__title .muted { color: rgba(244,239,230,.16); }
.hero__title .amber { color: var(--amber); }
.hero__title em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 60, "wght" 400;
  color: var(--amber);
}

.hero__subtitle {
  max-width: 540px;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) .8s forwards;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* hero right column — equalizer + stats card */
.hero__side {
  display: flex;
  flex-direction: column;
  gap: 40px;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 1.1s forwards;
}
.hero__eq {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6px;
  height: 120px;
  padding: 0 4px;
}
.hero__eq-bar {
  flex: 1;
  background: linear-gradient(to top, var(--amber-3), var(--amber));
  transform-origin: bottom;
  animation: eqBar 1.8s ease-in-out infinite;
  will-change: transform;
  min-height: 6px;
}
.hero__eq-bar:nth-child(1)  { animation-delay: -.1s; animation-duration: 1.4s; }
.hero__eq-bar:nth-child(2)  { animation-delay: -.3s; animation-duration: 1.7s; }
.hero__eq-bar:nth-child(3)  { animation-delay: -.5s; animation-duration: 1.3s; }
.hero__eq-bar:nth-child(4)  { animation-delay: -.2s; animation-duration: 2.0s; }
.hero__eq-bar:nth-child(5)  { animation-delay: -.7s; animation-duration: 1.6s; background: linear-gradient(to top, rgba(139,76,173,.6), var(--purple)); }
.hero__eq-bar:nth-child(6)  { animation-delay: -.4s; animation-duration: 1.2s; background: linear-gradient(to top, rgba(139,76,173,.6), var(--purple)); }
.hero__eq-bar:nth-child(7)  { animation-delay: -.6s; animation-duration: 1.9s; background: linear-gradient(to top, rgba(139,76,173,.6), var(--purple)); }
.hero__eq-bar:nth-child(8)  { animation-delay: -.15s; animation-duration: 1.5s; background: linear-gradient(to top, rgba(75,156,211,.6), var(--blue)); }
.hero__eq-bar:nth-child(9)  { animation-delay: -.55s; animation-duration: 1.8s; background: linear-gradient(to top, rgba(75,156,211,.6), var(--blue)); }
.hero__eq-bar:nth-child(10) { animation-delay: -.35s; animation-duration: 1.4s; background: linear-gradient(to top, rgba(75,156,211,.6), var(--blue)); }
.hero__eq-bar:nth-child(11) { animation-delay: -.25s; animation-duration: 1.6s; }
.hero__eq-bar:nth-child(12) { animation-delay: -.45s; animation-duration: 1.3s; }

@keyframes eqBar {
  0%, 100% { transform: scaleY(.15); }
  50%      { transform: scaleY(1); }
}

.hero__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.hero__stat {
  padding: 24px 18px;
  border-right: 1px solid var(--rule);
}
.hero__stat:last-child { border-right: 0; }
.hero__stat--manifesto { padding: 28px 22px; border-right: 0; }
.hero__stat-manifesto {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -.01em;
  color: var(--bone);
}
.hero__stat-manifesto em {
  font-style: italic;
  color: var(--amber);
  font-variation-settings: "SOFT" 60;
}
.hero__stat-num {
  font-family: var(--f-display);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
  color: var(--bone);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}
.hero__stat-num em {
  font-style: italic;
  color: var(--amber);
  font-variation-settings: "SOFT" 60;
}
.hero__stat-label {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mute);
}

/* hero ticker */
.hero__ticker {
  position: absolute;
  bottom: 32px; left: 40px; right: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mute);
}
.hero__ticker-cluster { display: flex; gap: 32px; }
.hero__ticker-item { display: inline-flex; align-items: center; gap: 8px; }
.hero__ticker-item::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--amber);
  border-radius: 50%;
}
.hero__scroll {
  display: flex; align-items: center; gap: 12px;
  color: var(--bone-2);
}
.hero__scroll-line {
  width: 48px; height: 1px;
  background: var(--bone-2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--amber);
  transform-origin: left;
  transform: scaleX(0);
  animation: scrollIndicator 2.2s ease-in-out infinite;
}
@keyframes scrollIndicator {
  0%   { transform-origin: left;  transform: scaleX(0); }
  50%  { transform-origin: left;  transform: scaleX(1); }
  51%  { transform-origin: right; transform: scaleX(1); }
  100% { transform-origin: right; transform: scaleX(0); }
}

/* ════════════════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════════════════ */
.marquee {
  position: relative;
  overflow: hidden;
  background: var(--ink-1);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
  isolation: isolate;
}
.marquee__track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: marqueeMove 50s linear infinite;
  will-change: transform;
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--bone);
}
.marquee__item em {
  font-style: italic;
  color: var(--amber);
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.marquee__sep {
  width: 8px; height: 8px;
  background: var(--amber);
  transform: rotate(45deg);
  flex-shrink: 0;
}
@keyframes marqueeMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, var(--ink-1), transparent); }
.marquee::after  { right: 0; background: linear-gradient(to left,  var(--ink-1), transparent); }

/* ════════════════════════════════════════════════════════════
   SECTION HEADERS (compartilhado)
   ════════════════════════════════════════════════════════════ */
.section__head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  margin-bottom: 96px;
  align-items: end;
}
.section__index {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--mute);
  text-transform: uppercase;
}
.section__index-num {
  display: block;
  color: var(--amber);
  font-size: 13px;
  margin-bottom: 8px;
}
.section__title {
  margin-top: 24px;
}
.section__title-line {
  display: block;
}

/* ════════════════════════════════════════════════════════════
   SOBRE
   ════════════════════════════════════════════════════════════ */
.sobre { background: var(--ink-0); }
.sobre__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 96px;
  align-items: start;
}
.sobre__left .eyebrow { margin-bottom: 32px; }
.sobre__quote {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.15;
  font-weight: 400;
  color: var(--bone);
  margin-bottom: 56px;
  letter-spacing: -.015em;
}
.sobre__quote em {
  font-style: italic;
  color: var(--amber);
  font-variation-settings: "SOFT" 60, "opsz" 144, "wght" 400;
}
.sobre__author {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 64px;
}
.sobre__author::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--mute);
}

.sobre__data {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
}
.sobre__data-cell {
  background: var(--ink-0);
  padding: 24px 0;
}
.sobre__data-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 8px;
}
.sobre__data-value {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--bone);
}

.sobre__right {
  padding-top: 12px;
}
.sobre__right p { margin-bottom: 28px; }
.sobre__right p:last-of-type { margin-bottom: 40px; }

.sobre__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.sobre__badge {
  padding: 8px 14px;
  border: 1px solid var(--rule);
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--bone-2);
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.sobre__badge:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* ════════════════════════════════════════════════════════════
   PILARES
   ════════════════════════════════════════════════════════════ */
.pilares { background: var(--ink-1); position: relative; }
.pilares::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--rule);
}
.pilares__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pilar {
  background: var(--ink-2);
  padding: 48px 36px 36px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule);
  transition: transform .55s var(--ease), border-color .55s var(--ease), background .55s var(--ease);
  min-height: 460px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.pilar:hover {
  transform: translateY(-12px);
  background: var(--ink-3);
}
.pilar--blue:hover   { border-color: rgba(75,156,211,.4); }
.pilar--purple:hover { border-color: rgba(139,76,173,.4); }
.pilar--amber:hover  { border-color: rgba(232,160,0,.4); }

.pilar__corner {
  position: absolute;
  top: 0; left: 0;
  width: 32px; height: 32px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}
.pilar--blue   .pilar__corner { color: var(--blue); }
.pilar--purple .pilar__corner { color: var(--purple); }
.pilar--amber  .pilar__corner { color: var(--amber); }

.pilar__index {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--mute);
  margin-bottom: 64px;
}
.pilar__index span {
  color: currentColor;
}
.pilar--blue   .pilar__index span { color: var(--blue); }
.pilar--purple .pilar__index span { color: var(--purple); }
.pilar--amber  .pilar__index span { color: var(--amber); }

.pilar__name {
  font-family: var(--f-display);
  font-size: clamp(48px, 5.5vw, 72px);
  line-height: 0.95;
  font-weight: 400;
  color: var(--bone);
  margin-bottom: 8px;
  letter-spacing: -.02em;
  transition: color .55s var(--ease);
}
.pilar__name em {
  font-style: italic;
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.pilar--blue:hover   .pilar__name { color: var(--blue); }
.pilar--purple:hover .pilar__name { color: var(--purple); }
.pilar--amber:hover  .pilar__name { color: var(--amber); }

.pilar__tagline {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 32px;
}
.pilar__text {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--bone-2);
  flex-grow: 1;
  margin-bottom: 32px;
}
.pilar__wave {
  width: 100%;
  height: 36px;
  opacity: .4;
  transition: opacity .55s var(--ease);
}
.pilar:hover .pilar__wave { opacity: 1; }

/* ════════════════════════════════════════════════════════════
   SERVIÇOS
   ════════════════════════════════════════════════════════════ */
.servicos { background: var(--ink-0); position: relative; }
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--rule);
}
.servico {
  padding: 56px 48px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background .35s var(--ease);
  cursor: default;
}
.servico:nth-child(2n)        { border-right: 0; }
.servico:nth-last-child(-n+2) { border-bottom: 0; }
.servico:hover { background: var(--ink-1); }

.servico__num {
  font-family: var(--f-display);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  color: var(--mute-2);
  margin-bottom: 32px;
  letter-spacing: -.02em;
  transition: color .35s var(--ease);
}
.servico:hover .servico__num { color: var(--amber); }
.servico__name {
  font-family: var(--f-display);
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.1;
  font-weight: 400;
  color: var(--bone);
  margin-bottom: 16px;
  letter-spacing: -.015em;
}
.servico__name em {
  font-style: italic;
  color: var(--amber);
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.servico__desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--bone-2);
  margin-bottom: 28px;
  max-width: 48ch;
}
.servico__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}
.servico__keywords li {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mute);
  padding: 6px 10px;
  border: 1px solid var(--rule);
}

/* ════════════════════════════════════════════════════════════
   PORTFÓLIO
   ════════════════════════════════════════════════════════════ */
.portfolio { background: var(--ink-1); }
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 24px;
}
.portfolio__item {
  position: relative;
  background: var(--ink-2);
  overflow: hidden;
  border: 1px solid var(--rule);
  transition: border-color .4s var(--ease);
  cursor: pointer;
}
.portfolio__item:hover { border-color: rgba(232,160,0,.4); }

.portfolio__item--lead { grid-column: span 4; grid-row: span 2; }
.portfolio__item--tall { grid-column: span 2; grid-row: span 2; }
.portfolio__item--wide { grid-column: span 3; grid-row: span 1; }
.portfolio__item--sm   { grid-column: span 3; grid-row: span 1; }

.portfolio__placeholder {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(232,160,0,.04), transparent 60%),
    var(--ink-2);
}
.portfolio__placeholder-icon {
  width: 56px; height: 56px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .4;
  transition: opacity .4s var(--ease), border-color .4s var(--ease);
}
.portfolio__item:hover .portfolio__placeholder-icon {
  opacity: 1;
  border-color: var(--amber);
}
.portfolio__placeholder-icon svg { width: 24px; height: 24px; }

.portfolio__caption {
  position: absolute;
  left: 24px; bottom: 24px;
  right: 24px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.portfolio__caption-left {}
.portfolio__cat {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.portfolio__cat::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--amber);
}
.portfolio__name {
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--bone);
  max-width: 24ch;
  letter-spacing: -.01em;
}
.portfolio__item--lead .portfolio__name { font-size: 36px; max-width: 18ch; }
.portfolio__meta {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mute);
  text-align: right;
}

.portfolio__cta {
  margin-top: 96px;
  padding: 64px 32px;
  text-align: center;
  border-top: 1px solid var(--rule);
}
.portfolio__cta-title {
  font-family: var(--f-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--bone);
  margin-bottom: 16px;
}
.portfolio__cta-text {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--bone-2);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ════════════════════════════════════════════════════════════
   PROCESSO (timeline vertical)
   ════════════════════════════════════════════════════════════ */
.processo { background: var(--ink-0); position: relative; overflow: hidden; }
.processo__timeline {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  padding-left: 100px;
}
.processo__timeline::before {
  content: '';
  position: absolute;
  top: 12px; bottom: 12px;
  left: 56px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--rule-amber) 10%, var(--rule-amber) 90%, transparent);
}
.processo__step {
  position: relative;
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
}
.processo__step:last-child { border-bottom: 0; }
.processo__step-num {
  position: absolute;
  left: -100px;
  top: 48px;
  width: 80px;
}
.processo__step-num-text {
  font-family: var(--f-display);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ink-3);
  -webkit-text-stroke: 1px var(--amber);
}
.processo__step-dot {
  position: absolute;
  left: -44px;
  top: 70px;
  width: 11px; height: 11px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--ink-0), 0 0 0 6px rgba(232,160,0,.3);
}
.processo__step-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.processo__step-title {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--bone);
  margin-bottom: 16px;
  letter-spacing: -.015em;
}
.processo__step-title em {
  font-style: italic;
  color: var(--amber);
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.processo__step-text {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--bone-2);
  max-width: 56ch;
}

/* ════════════════════════════════════════════════════════════
   CONTATO
   ════════════════════════════════════════════════════════════ */
.contato { background: var(--ink-1); position: relative; }
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
.contato__title {
  font-family: var(--f-display);
  font-size: clamp(56px, 7vw, 104px);
  line-height: .95;
  font-weight: 400;
  color: var(--bone);
  margin-bottom: 32px;
  letter-spacing: -.02em;
}
.contato__title em {
  font-style: italic;
  color: var(--amber);
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.contato__lede {
  margin-bottom: 56px;
  max-width: 50ch;
}
.contato__channels {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.contato__channel {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: padding-left .35s var(--ease);
}
.contato__channel--link { cursor: pointer; }
.contato__channel--link::before {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 0; height: 1px;
  background: var(--amber);
  transition: width .5s var(--ease);
}
.contato__channel--link:hover { padding-left: 16px; }
.contato__channel--link:hover::before { width: 100%; }
.contato__channel-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rule);
  flex-shrink: 0;
  transition: border-color .35s var(--ease);
}
.contato__channel--link:hover .contato__channel-icon {
  border-color: var(--amber);
}
.contato__channel-icon svg { width: 18px; height: 18px; }
.contato__channel-content { flex: 1; }
.contato__channel-label {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 4px;
}
.contato__channel-value {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--bone);
  letter-spacing: -.01em;
}
.contato__channel-arrow {
  font-family: var(--f-mono);
  color: var(--mute);
  font-size: 18px;
  transition: color .35s var(--ease), transform .35s var(--ease);
}
.contato__channel--link:hover .contato__channel-arrow {
  color: var(--amber);
  transform: rotate(-45deg);
}

/* form */
.contato__form {
  background: var(--ink-2);
  padding: 56px 48px;
  border: 1px solid var(--rule);
  position: relative;
}
.contato__form-title {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 32px;
}
.field {
  position: relative;
  margin-bottom: 20px;
}
.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field__input {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 22px 0 12px;
  color: var(--bone);
  font-size: 15px;
  font-weight: 400;
  outline: none;
  transition: border-color .25s var(--ease);
}
.field__input:focus { border-color: var(--amber); }
.field__label {
  position: absolute;
  top: 22px;
  left: 0;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mute);
  pointer-events: none;
  transition: transform .35s var(--ease), color .35s var(--ease);
  transform-origin: left top;
}
.field__input:focus + .field__label,
.field__input:not(:placeholder-shown) + .field__label {
  transform: translateY(-22px) scale(.85);
  color: var(--amber);
}
.field__input::placeholder { color: transparent; }
textarea.field__input {
  resize: vertical;
  min-height: 100px;
}
select.field__input {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 24px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1L6 6L11 1' stroke='%23E8A000' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
}
select.field__input option {
  background: var(--ink-2);
  color: var(--bone);
}
.form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
}
.form__note {
  margin-top: 16px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mute);
  text-align: center;
}

/* CF7 overrides para combinar com o design */
.contato__form .wpcf7-form-control-wrap { display: block; }
.contato__form .wpcf7 input[type=text],
.contato__form .wpcf7 input[type=email],
.contato__form .wpcf7 input[type=tel],
.contato__form .wpcf7 textarea,
.contato__form .wpcf7 select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 22px 0 12px;
  color: var(--bone);
  font-size: 15px;
  font-family: var(--f-body);
  outline: none;
  transition: border-color .25s var(--ease);
}
.contato__form .wpcf7 input:focus,
.contato__form .wpcf7 textarea:focus,
.contato__form .wpcf7 select:focus { border-color: var(--amber); }
.contato__form .wpcf7 .wpcf7-submit {
  width: 100%;
  margin-top: 24px;
  padding: 18px 28px 16px;
  background: var(--amber);
  color: var(--ink-0);
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: background .35s var(--ease);
}
.contato__form .wpcf7 .wpcf7-submit:hover { background: var(--amber-2); }
.contato__form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 12px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contato__form .wpcf7-not-valid-tip {
  color: var(--amber);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink-0);
  border-top: 1px solid var(--rule);
  padding: 96px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer__manifesto {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.05;
  font-weight: 400;
  color: var(--bone);
  margin-bottom: 88px;
  letter-spacing: -.02em;
  max-width: 22ch;
}
.footer__manifesto em {
  font-style: italic;
  color: var(--amber);
  font-variation-settings: "SOFT" 60, "opsz" 144;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule);
}
.footer__brand {}
.footer__brand-logo {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--bone);
  transition: opacity .25s var(--ease);
}
.footer__brand-logo:hover { opacity: .85; }
.footer__brand-logo svg {
  height: 56px;
  width: auto;
  display: block;
}
.footer__brand-desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--bone-2);
  margin-bottom: 32px;
  max-width: 36ch;
}
.footer__social {
  display: flex;
  gap: 8px;
}
.footer__social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.footer__social-link:hover {
  border-color: var(--amber);
  background: rgba(232,160,0,.08);
}
.footer__social-link svg { width: 16px; height: 16px; opacity: .7; }
.footer__social-link:hover svg { opacity: 1; }

.footer__col-title {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 14.5px;
  color: var(--bone-2);
  transition: color .2s var(--ease), padding-left .25s var(--ease);
  display: inline-block;
}
.footer__links a:hover {
  color: var(--amber);
  padding-left: 6px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__copy {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mute);
}
.footer__pillars {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer__pillars span:nth-child(1) { color: var(--amber); }
.footer__pillars span:nth-child(3) { color: var(--purple); }
.footer__pillars span:nth-child(5) { color: var(--blue); }
.footer__pillars span:nth-child(2),
.footer__pillars span:nth-child(4) { color: var(--mute-2); }

/* ════════════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ════════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wppPulse 2.5s ease-out infinite;
}
@keyframes wppPulse {
  0%   { transform: scale(1);   opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; position: relative; z-index: 1; }
@media (max-width: 1024px) {
  .whatsapp-float { bottom: 24px; right: 24px; }
}

/* ════════════════════════════════════════════════════════════
   REVEAL ON SCROLL
   ════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: .12s; }
.reveal--delay-2 { transition-delay: .24s; }
.reveal--delay-3 { transition-delay: .36s; }
.reveal--delay-4 { transition-delay: .48s; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .shell { padding: 0 32px; }
  .nav { padding: 18px 32px; }
  .hero__ticker { left: 32px; right: 32px; }
}
@media (max-width: 1024px) {
  .section { padding: 100px 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero__side { max-width: 480px; }
  .sobre__grid { grid-template-columns: 1fr; gap: 64px; }
  .pilares__grid { grid-template-columns: 1fr; }
  .pilar { min-height: auto; }
  .section__head { grid-template-columns: 1fr; gap: 24px; }
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
  .portfolio__item--lead { grid-column: span 2; grid-row: span 2; }
  .portfolio__item--tall { grid-column: span 1; grid-row: span 2; }
  .portfolio__item--wide,
  .portfolio__item--sm   { grid-column: span 1; grid-row: span 1; }
  .contato__grid { grid-template-columns: 1fr; gap: 64px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .shell { padding: 0 20px; }
  .nav { padding: 14px 20px; }
  .nav.is-scrolled { padding: 10px 20px; }
  .nav__menu { display: none; }
  .nav__hamburger { display: flex; }
  .section { padding: 80px 0; }
  .hero { padding: 110px 0 100px; }
  .hero__ticker {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 56px;
    left: 0; right: 0;
  }
  .hero__ticker-cluster { flex-wrap: wrap; gap: 16px; }
  .servicos__grid { grid-template-columns: 1fr; }
  .servico {
    padding: 40px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }
  .servico:nth-last-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .servico:last-child { border-bottom: 0; }
  .portfolio__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .portfolio__item--lead, .portfolio__item--tall,
  .portfolio__item--wide, .portfolio__item--sm {
    grid-column: span 1; grid-row: span 1;
  }
  .processo__timeline { padding-left: 56px; }
  .processo__timeline::before { left: 28px; }
  .processo__step-num { left: -56px; }
  .processo__step-num-text { font-size: 48px; }
  .processo__step-dot { left: -28px; top: 60px; transform: translateX(-50%); }
  .contato__form { padding: 40px 24px; }
  .field--row { grid-template-columns: 1fr; }
  .footer { padding: 72px 0 28px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .marquee__item { font-size: 24px; gap: 18px; }
  .marquee__track { gap: 56px; }
}
@media (max-width: 480px) {
  .section__head { margin-bottom: 56px; }
  .sobre__data { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stat { border-right: 0; border-bottom: 1px solid var(--rule); }
  .hero__stat:last-child { border-bottom: 0; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee__track { animation: none; }
  .hero__eq-bar { animation: none; transform: scaleY(.6); }
  .reveal { opacity: 1; transform: none; }
}
