@import url('https://fonts.googleapis.com/css2?family=Archivo:wdth,wght@100,400..900&family=Instrument+Sans:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  --tinta: #21104a;
  --roxo: #43289b;
  --roxo-profundo: #2a1663;
  --pixel: #00c2de;
  --papel: #f8f3ea;
  --amarelo: #ffc632;
  --branco: #ffffff;
  --linha: rgba(33, 16, 74, 0.18);
  --muted: #625a72;
  --pixel-claro: #e2f8fb;
  --amarelo-claro: #fff2bd;
  --font-display: 'Archivo', 'Arial Black', sans-serif;
  --font-body: 'Instrument Sans', Arial, sans-serif;
  --font-utility: 'Space Mono', ui-monospace, monospace;
  --shadow-pixel: 8px 8px 0 var(--pixel);
  --shadow-yellow: 8px 8px 0 var(--amarelo);
}

*, *::before, *::after { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--papel);
  color: var(--tinta);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--amarelo); color: var(--tinta); }
:focus-visible { outline: 3px solid var(--pixel); outline-offset: 4px; }

.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.paper-grid {
  background-image:
    linear-gradient(rgba(33, 16, 74, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 16, 74, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topline { background: var(--roxo-profundo); color: var(--papel); }
.topline .shell {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font: 700 0.66rem/1.4 var(--font-utility);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.topline .shell span:first-child::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--amarelo);
}
.topline .shell span:last-child::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 0.55rem;
  background: var(--pixel);
}

.header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid var(--linha);
  background: rgba(248, 243, 234, 0.94);
  backdrop-filter: blur(16px);
}
.nav { min-height: 76px; display: flex; align-items: center; gap: 2rem; }
.brand { display: inline-flex; width: 104px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.navlinks { display: flex; align-items: center; gap: 1.45rem; margin-left: 1.25rem; }
.navlinks a {
  position: relative;
  padding-block: 0.35rem;
  color: var(--muted);
  font: 700 0.78rem/1 var(--font-utility);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.navlinks a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 3px;
  background: var(--pixel);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.navlinks a:hover::after,
.navlinks a.active::after { transform: scaleX(1); transform-origin: left; }
.navlinks a.active { color: var(--tinta); }
.navactions { display: flex; align-items: center; gap: 0.75rem; margin-left: auto; }
.launch-pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 0.9rem;
  border: 2px solid var(--tinta);
  background: var(--amarelo);
  color: var(--tinta);
  font: 700 0.68rem/1.2 var(--font-utility);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.cart-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0 0.85rem;
  border: 2px solid var(--tinta);
  background: var(--papel);
  font: 700 0.72rem/1 var(--font-utility);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cart-link b {
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--amarelo);
  font-size: 0.68rem;
}
.iconbtn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--tinta);
  background: var(--papel);
  color: var(--tinta);
  cursor: pointer;
  font-size: 1.2rem;
}
.menu { display: none; }
.mobilemenu { display: none; padding: 0 20px 18px; border-top: 1px solid var(--linha); }
.mobilemenu.open { display: grid; gap: 0.85rem; }
.mobilemenu a { font-weight: 700; }

h1, h2, h3 {
  margin: 0;
  color: var(--tinta);
  font-family: var(--font-display);
  font-variation-settings: 'wdth' 100;
  letter-spacing: -0.045em;
}
h1 { font-size: clamp(3.35rem, 7vw, 6.9rem); line-height: 0.9; font-weight: 900; }
h2 { font-size: clamp(2.25rem, 4.8vw, 4.35rem); line-height: 0.96; font-weight: 850; }
h3 { font-size: 1.25rem; line-height: 1.08; font-weight: 800; }
p { color: var(--muted); line-height: 1.62; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--roxo);
  font: 700 0.7rem/1.3 var(--font-utility);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 22px; height: 8px; background: var(--pixel); }
.section { padding: 96px 0; }
.sectionhead {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 34px;
}
.sectionhead h2 { margin-top: 0.65rem; max-width: 14ch; }
.text-link {
  color: var(--roxo);
  font: 700 0.76rem/1.4 var(--font-utility);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.text-link::after { content: ' →'; color: var(--pixel); }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 1.2rem;
  border: 2px solid var(--tinta);
  cursor: pointer;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translate(-2px, -2px); }
.button.primary { background: var(--roxo-profundo); color: var(--papel); box-shadow: 5px 5px 0 var(--pixel); }
.button.primary:hover { box-shadow: 8px 8px 0 var(--pixel); }
.button.yellow { background: var(--amarelo); color: var(--tinta); box-shadow: 5px 5px 0 var(--tinta); }
.button.yellow:hover { box-shadow: 8px 8px 0 var(--tinta); }
.button.outline { background: var(--papel); color: var(--tinta); }
.button.outline:hover { background: var(--amarelo-claro); }
.button.wide { width: 100%; margin-top: 1rem; }

.hero { position: relative; overflow: hidden; border-bottom: 2px solid var(--tinta); }
.hero-grid {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: start;
  gap: clamp(3rem, 7vw, 7rem);
  padding-block: 64px 80px;
}
.hero-copy { position: relative; z-index: 2; padding-top: clamp(0.75rem, 2vw, 2.2rem); }
.hero h1 { max-width: 8.5ch; margin-top: 1.15rem; }
.hero h1 .pixel-word { position: relative; color: var(--roxo); }
.hero h1 .pixel-word::after {
  content: '';
  position: absolute;
  width: 0.14em;
  height: 0.14em;
  right: -0.13em;
  top: 0.06em;
  background: var(--pixel);
}
.hero-copy > p { max-width: 570px; margin: 1.45rem 0 0; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 1.8rem; }
.brand-equation {
  width: max-content;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2.3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--linha);
  font: 700 0.68rem/1.4 var(--font-utility);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand-equation b { padding: 0.3rem 0.48rem; border: 1px solid var(--tinta); }
.brand-equation b:first-child { background: var(--amarelo); }
.brand-equation b:nth-of-type(2) { background: var(--pixel); }
.hero-visual { position: relative; margin: 0; }
.hero-frame {
  position: relative;
  border: 2px solid var(--tinta);
  background: var(--papel);
  box-shadow: 18px 18px 0 var(--amarelo);
}
.hero-frame img { width: 100%; height: clamp(470px, 34vw, 540px); object-fit: cover; }
.hero-frame figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-top: 2px solid var(--tinta);
  color: var(--tinta);
  font: 700 0.63rem/1.4 var(--font-utility);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.figure-code { color: var(--roxo); }
.shape-pair {
  position: absolute;
  top: -24px;
  right: -22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 2px solid var(--tinta);
  background: var(--roxo-profundo);
}
.shape-pair .circle { width: 26px; height: 26px; border-radius: 50%; background: var(--amarelo); }
.shape-pair .square { width: 24px; height: 24px; background: var(--pixel); }

.strip { overflow: hidden; background: var(--roxo-profundo); color: var(--papel); }
.stripin {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 4vw, 3.5rem);
  padding: 0.8rem 1rem;
  font: 700 0.72rem/1.5 var(--font-utility);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.stripin span { display: inline-flex; align-items: center; gap: 0.75rem; }
.stripin span:nth-child(odd)::before { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--amarelo); }
.stripin span:nth-child(even)::before { content: ''; width: 10px; height: 10px; background: var(--pixel); }

.universes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.universe {
  min-height: 470px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  border: 2px solid var(--tinta);
  color: var(--papel);
}
.universe img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 420ms ease; }
.universe::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 22%, rgba(33, 16, 74, 0.9)); }
.universe:hover img { transform: scale(1.035); }
.universe-copy { position: relative; z-index: 1; display: grid; gap: 0.65rem; padding: 2rem; }
.universe-code {
  width: max-content;
  padding: 0.35rem 0.55rem;
  border: 1px solid currentColor;
  font: 700 0.68rem/1 var(--font-utility);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.universe h3 { color: var(--papel); font-size: clamp(2.2rem, 5vw, 4.2rem); }
.universe p { max-width: 42ch; margin: 0; color: rgba(248, 243, 234, 0.82); }
.universe-paper { box-shadow: var(--shadow-yellow); }
.universe-tech { box-shadow: var(--shadow-pixel); }

.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 12px;
  border: 1px solid var(--linha);
  background: rgba(255, 255, 255, 0.72);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.product:hover { transform: translateY(-5px); border-color: var(--tinta); box-shadow: 7px 7px 0 var(--amarelo); }
.product-image { aspect-ratio: 1; overflow: hidden; display: grid; place-items: center; border: 1px solid var(--linha); background: var(--pixel-claro); }
.product-image img { width: 100%; height: 100%; padding: 0.75rem; object-fit: contain; background: var(--branco); }
.product-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.75rem;
  background-image:
    linear-gradient(rgba(33, 16, 74, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 16, 74, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  color: var(--tinta);
  text-align: center;
}
.product-placeholder b {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid var(--tinta);
  background: var(--amarelo);
  box-shadow: 6px 6px 0 var(--pixel);
  font: 900 1.25rem/1 var(--font-display);
}
.product-placeholder small { font: 700 0.62rem/1.45 var(--font-utility); letter-spacing: 0.08em; text-transform: uppercase; }
.product-taxonomy { display: flex; flex-wrap: wrap; gap: 0.42rem; margin-top: 12px; }
.tag, .brand-tag {
  width: max-content;
  padding: 0.3rem 0.5rem;
  font: 700 0.61rem/1 var(--font-utility);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag { border: 1px solid rgba(0, 114, 130, 0.35); background: var(--pixel-claro); color: #006a79; }
.brand-tag { border: 1px solid rgba(67, 40, 155, 0.25); background: #eeeafa; color: var(--roxo); }
.product h3 { margin-top: 0.75rem; font-size: 1.03rem; letter-spacing: -0.025em; }
.product-subcategory { margin: 0.35rem 0 0; font-size: 0.77rem; }
.stock {
  min-width: 0;
  display: grid;
  gap: 0.25rem;
  margin-top: auto;
  padding-top: 0.9rem;
}
.stock span {
  color: var(--muted);
  font: 700 0.61rem/1.3 var(--font-utility);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.stock strong { color: var(--tinta); font: 800 1rem/1.2 var(--font-display); }
.price { min-width: 0; display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.45rem; margin-top: auto; padding-top: 0.9rem; color: var(--tinta); font-weight: 800; }
.price strong { min-width: 0; overflow-wrap: break-word; font: 800 1.25rem/1 var(--font-display); }
.price del { color: #887f92; font-size: 0.78rem; }
.product .button { min-height: 42px; margin-top: 0.8rem; font-size: 0.8rem; }

.history-band { overflow: hidden; background: var(--roxo-profundo); color: var(--papel); }
.history-grid { display: grid; grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr); align-items: stretch; }
.history-photo { position: relative; min-height: 660px; border-right: 2px solid var(--papel); }
.history-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.history-photo figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--papel);
  background: rgba(42, 22, 99, 0.88);
  color: var(--papel);
  font: 700 0.67rem/1.45 var(--font-utility);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.history-copy { display: grid; align-content: center; padding: clamp(3rem, 7vw, 7rem); }
.history-copy .eyebrow { color: var(--pixel); }
.history-copy h2 { max-width: 10ch; margin-top: 1rem; color: var(--papel); }
.history-copy p { max-width: 56ch; color: rgba(248, 243, 234, 0.75); font-size: 1.05rem; }
.history-points { display: grid; gap: 0; margin-top: 1.4rem; border-top: 1px solid rgba(248, 243, 234, 0.25); }
.history-points span { padding: 0.85rem 0; border-bottom: 1px solid rgba(248, 243, 234, 0.25); font-weight: 700; }
.history-points span::before { content: ''; display: inline-block; width: 10px; height: 10px; margin-right: 0.75rem; }
.history-points span:nth-child(odd)::before { border-radius: 50%; background: var(--amarelo); }
.history-points span:nth-child(even)::before { background: var(--pixel); }

.closing { display: grid; grid-template-columns: 0.9fr 1.1fr; min-height: 420px; border: 2px solid var(--tinta); background: var(--amarelo); }
.closing-copy { display: grid; align-content: center; padding: clamp(2rem, 5vw, 4.5rem); }
.closing-copy h2 { max-width: 11ch; }
.closing-copy p { max-width: 42ch; color: rgba(33, 16, 74, 0.75); }
.closing-image { min-height: 360px; border-left: 2px solid var(--tinta); }
.closing-image img { width: 100%; height: 100%; object-fit: cover; }

.footer { padding: 64px 0 26px; background: var(--roxo-profundo); color: var(--papel); }
.footergrid { display: grid; grid-template-columns: minmax(260px, 2fr) repeat(2, 1fr); gap: 3rem; }
.footer .brand { width: 132px; }
.footer p, .footer a { color: rgba(248, 243, 234, 0.68); }
.footer p { max-width: 36ch; }
.footer h3 { margin-bottom: 1rem; color: var(--papel); font-size: 1rem; letter-spacing: -0.015em; }
.footer a { display: block; width: max-content; margin-top: 0.7rem; }
.footer a:hover { color: var(--pixel); }
.subfooter {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid rgba(248, 243, 234, 0.2);
  color: rgba(248, 243, 234, 0.55);
  font: 700 0.62rem/1.5 var(--font-utility);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pagehero { padding: 74px 0 56px; border-bottom: 2px solid var(--tinta); }
.pagehero h1 { max-width: 12ch; margin-top: 0.8rem; }
.pagehero p { max-width: 610px; margin-bottom: 0; }
.pagehero .accent { color: var(--roxo); }
.crumb { margin-bottom: 1rem; color: var(--roxo); font: 700 0.68rem/1.4 var(--font-utility); letter-spacing: 0.08em; text-transform: uppercase; }
.catalog { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 36px; }
.filters { align-self: start; padding: 1.25rem; border: 2px solid var(--tinta); background: rgba(255, 255, 255, 0.65); box-shadow: 7px 7px 0 var(--pixel); }
.filters h3 { margin-bottom: 1rem; }
.filter { padding: 1rem 0; border-top: 1px solid var(--linha); }
.filter label { display: flex; justify-content: space-between; gap: 0.6rem; margin: 0.58rem 0; color: var(--muted); font-size: 0.86rem; }
.filter small { color: #8d8495; }
.filter input { accent-color: var(--roxo); }
.search input, .field input {
  width: 100%;
  min-height: 44px;
  padding: 0 0.75rem;
  border: 1px solid var(--linha);
  border-radius: 0;
  background: var(--papel);
  color: var(--tinta);
}
.search input:focus, .field input:focus { border-color: var(--roxo); outline: 3px solid rgba(0, 194, 222, 0.26); }
.clear-filters { width: 100%; padding: 0.7rem; border: 2px solid var(--tinta); background: var(--papel); color: var(--roxo); cursor: pointer; font: 700 0.7rem/1 var(--font-utility); text-transform: uppercase; }
.catalog-note { margin: 1.15rem 0 0; padding-top: 1rem; border-top: 1px solid var(--linha); font-size: 0.76rem; }
.active-filters { min-height: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: -0.2rem 0 1.15rem; }
.filter-chip { padding: 0.4rem 0.6rem; border: 1px solid var(--roxo); background: #eeeafa; color: var(--roxo); cursor: pointer; font: 700 0.68rem/1 var(--font-utility); }
.empty-catalog { grid-column: 1 / -1; padding: 3rem 1rem; border: 2px dashed var(--linha); text-align: center; }
.catalog .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr); gap: 60px; padding: 70px 0 92px; }
.detail-image { aspect-ratio: 1; overflow: hidden; border: 2px solid var(--tinta); background: var(--pixel-claro); box-shadow: 12px 12px 0 var(--amarelo); }
.detail-image img { width: 100%; height: 100%; padding: clamp(1rem, 3vw, 2.5rem); object-fit: contain; background: var(--branco); }
.detail h1 { margin-top: 0.7rem; font-size: clamp(2.6rem, 5vw, 4.8rem); }
.detail .price strong { font-size: 2rem; }
.availability { color: #006a79; font-size: 0.82rem; font-weight: 800; }
.launch-badge {
  width: max-content;
  max-width: 100%;
  margin-top: 1.4rem;
  padding: 0.55rem 0.75rem;
  border: 2px solid var(--tinta);
  background: var(--amarelo);
  font: 700 0.7rem/1.3 var(--font-utility);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.bullets { padding: 0; list-style: none; }
.bullets li { margin: 0.7rem 0; color: var(--muted); }
.bullets li::before { content: ''; display: inline-block; width: 10px; height: 10px; margin-right: 0.65rem; background: var(--pixel); }
.quantity { display: flex; align-items: center; gap: 0.5rem; margin: 1.6rem 0; }
.quantity button { width: 40px; height: 40px; border: 2px solid var(--tinta); background: var(--papel); color: var(--tinta); cursor: pointer; font-size: 1.15rem; }
.quantity output { width: 30px; text-align: center; font-weight: 800; }

.twocol { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr); gap: 36px; padding: 60px 0 92px; }
.card { padding: 1.4rem; border: 2px solid var(--tinta); background: rgba(255, 255, 255, 0.72); }
.cartitem { display: grid; grid-template-columns: 96px minmax(0, 1fr) auto; align-items: center; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--linha); }
.cartitem img { width: 96px; aspect-ratio: 1; border: 1px solid var(--linha); object-fit: cover; }
.cartitem p { margin: 0.2rem 0; font-size: 0.86rem; }
.summary { position: sticky; top: 104px; align-self: start; box-shadow: 8px 8px 0 var(--pixel); }
.summary h2 { font-size: 1.75rem; }
.sumrow { display: flex; justify-content: space-between; gap: 1rem; padding: 0.75rem 0; color: var(--muted); }
.sumrow.total { margin-top: 0.7rem; padding-top: 1rem; border-top: 2px solid var(--tinta); color: var(--tinta); font: 800 1.3rem/1.2 var(--font-display); }
.formgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { display: grid; gap: 0.45rem; margin: 0.8rem 0; color: var(--muted); font-size: 0.83rem; font-weight: 700; }
.span2 { grid-column: span 2; }
.steps { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.step { padding: 0.48rem 0.65rem; border: 1px solid var(--linha); background: var(--papel); color: var(--muted); font: 700 0.69rem/1 var(--font-utility); }
.step.active { border-color: var(--roxo); background: var(--roxo); color: var(--papel); }
.success {
  max-width: 780px;
  margin: 76px auto 92px;
  padding: clamp(2.25rem, 7vw, 5rem);
  border: 2px solid var(--tinta);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 12px 12px 0 var(--amarelo);
  text-align: center;
}
.successmark { width: 76px; height: 76px; display: grid; place-items: center; margin: 0 auto 1.5rem; background: var(--pixel); color: var(--tinta); font-size: 2.3rem; font-weight: 900; }
.success .eyebrow { justify-content: center; }
.success h1 { margin-top: 0.8rem; font-size: clamp(2.8rem, 6vw, 5.3rem); }
.orderbox { display: flex; justify-content: space-between; gap: 1rem; margin: 1.7rem 0; padding: 1rem; border: 1px solid var(--linha); background: var(--pixel-claro); text-align: left; }
.orderbox b { color: var(--tinta); }
.launch-gate {
  min-height: calc(100vh - 174px);
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 1.25rem;
  padding: 72px 0;
  text-align: center;
}
.launch-gate > img { width: 92px; height: 92px; }
.launch-gate h1 { max-width: 9ch; }
.launch-gate p { max-width: 650px; margin: 0; font-size: 1.05rem; }
.launch-gate .hero-actions { justify-content: center; margin-top: 0.4rem; }

@media (max-width: 940px) {
  .navlinks { display: none; }
  .menu { display: grid; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-block: 64px 78px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { max-width: 720px; width: 100%; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .history-grid { grid-template-columns: 1fr; }
  .history-photo { min-height: 540px; border-right: 0; border-bottom: 2px solid var(--papel); }
  .closing { grid-template-columns: 1fr; }
  .closing-image { border-top: 2px solid var(--tinta); border-left: 0; }
  .catalog { grid-template-columns: 1fr; }
  .filters { box-shadow: 5px 5px 0 var(--pixel); }
  .detail, .twocol { grid-template-columns: 1fr; }
  .summary { position: static; }
  .footergrid { grid-template-columns: 1fr 1fr; }
  .footergrid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .shell { width: min(100% - 28px, 1180px); }
  .topline .shell { justify-content: center; text-align: center; }
  .topline .shell span:last-child { display: none; }
  .nav { min-height: 68px; gap: 0.75rem; }
  .brand { width: 86px; }
  .cart-link { min-height: 38px; padding-inline: 0.55rem; }
  .launch-pill { min-height: 38px; padding-inline: 0.55rem; font-size: 0.57rem; letter-spacing: 0.04em; }
  .cart-link span { display: none; }
  .iconbtn { width: 38px; height: 38px; }
  h1 { font-size: clamp(3.1rem, 17vw, 5rem); }
  h2 { font-size: clamp(2.1rem, 12vw, 3.4rem); }
  .hero-grid { gap: 3.5rem; padding-top: 52px; }
  .hero-copy { padding-top: 0; }
  .hero-frame img { height: clamp(340px, 100vw, 440px); }
  .hero-copy > p { font-size: 1rem; }
  .hero-frame { box-shadow: 10px 10px 0 var(--amarelo); }
  .shape-pair { right: -6px; }
  .stripin { justify-content: flex-start; overflow-x: auto; }
  .section { padding: 68px 0; }
  .sectionhead { align-items: flex-start; flex-direction: column; margin-bottom: 26px; }
  .universes { grid-template-columns: 1fr; gap: 28px; }
  .universe { min-height: 390px; }
  .universe-paper, .universe-tech { box-shadow: 7px 7px 0 var(--amarelo); }
  .universe-tech { box-shadow: 7px 7px 0 var(--pixel); }
  .product-grid, .catalog .product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .product { padding: 8px; }
  .product h3 { font-size: 0.88rem; }
  .product .price strong { font-size: 1rem; line-height: 1.15; }
  .product .button { min-height: 38px; padding-inline: 0.35rem; font-size: 0.7rem; }
  .product-taxonomy { gap: 0.25rem; }
  .brand-tag { display: none; }
  .history-photo { min-height: 480px; }
  .history-copy { padding: 3.5rem 1.4rem; }
  .closing-copy { padding: 2.5rem 1.4rem; }
  .footergrid { grid-template-columns: 1fr; }
  .footergrid > :first-child { grid-column: auto; }
  .subfooter { flex-direction: column; }
  .pagehero { padding: 56px 0 44px; }
  .cartitem { grid-template-columns: 72px minmax(0, 1fr); }
  .cartitem img { width: 72px; }
  .cartitem > strong { grid-column: 2; }
  .formgrid { grid-template-columns: 1fr; }
  .span2 { grid-column: auto; }
  .orderbox { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
