/* ============================================================
   TEMPLO DA CALISTENIA — Sistema visual
   Editorial esportivo · monocromático + acento volt
   ============================================================ */

:root {
  --ink:        #060606;
  --ink-2:      #0b0b0c;
  --surface:    #101012;
  --surface-2:  #17171a;
  --paper:      #f4f3ef;
  --muted:      rgba(244, 243, 239, 0.56);
  --faint:      rgba(244, 243, 239, 0.34);
  --line:       rgba(244, 243, 239, 0.12);
  --line-2:     rgba(244, 243, 239, 0.22);
  --volt:       #ffffff;                    /* acento — branco puro */
  --volt-dim:   rgba(255, 255, 255, 0.14);
  --volt-ink:   #060606;

  --display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --sans:    "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --shell: min(1280px, calc(100vw - 48px));
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 420;
  line-height: 1.5;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }

/* ---- Tipografia base ---- */
.display {
  font-family: var(--display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.018em;
  line-height: 0.86;
  text-wrap: balance;
}

.mono {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---- Selection ---- */
::selection { background: var(--volt); color: var(--volt-ink); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(24px, calc((100vw - 1280px) / 2 + 24px));
  border-bottom: 1px solid transparent;
  transition: background 300ms var(--ease), border-color 300ms var(--ease), padding 300ms var(--ease);
}

.nav.is-scrolled {
  background: rgba(6, 6, 6, 0.72);
  backdrop-filter: blur(20px) saturate(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.1);
  border-bottom-color: var(--line);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.brand__mark {
  width: 34px; height: 34px;
  object-fit: contain;
  flex: none;
}
.brand__name { display: grid; line-height: 1; gap: 3px; }
.brand__name b {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.96rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand__name span {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.34em;
  color: var(--faint);
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__links a {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  transition: color 200ms var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--volt);
  transition: width 240ms var(--ease);
}
.nav__links a:hover { color: var(--paper); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  border-radius: 2px;
  background: var(--volt);
  color: var(--volt-ink);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.nav__cta::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--volt-ink);
  animation: pulse 2.4s ease-in-out infinite;
}
.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px var(--volt);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  isolation: isolate;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(0.82) contrast(1.06) brightness(0.66);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(6,6,6,0.10) 0%, rgba(6,6,6,0.55) 60%, var(--ink) 100%),
    linear-gradient(180deg, rgba(6,6,6,0.55) 0%, rgba(6,6,6,0.10) 30%, rgba(6,6,6,0.20) 60%, var(--ink) 100%);
}

/* HUD técnico nos cantos */
.hero__hud {
  position: absolute;
  inset: 96px max(24px, calc((100vw - 1280px) / 2 + 24px)) 0;
  z-index: 2;
  pointer-events: none;
  display: none;
}
@media (min-width: 860px) { .hero__hud { display: block; } }
.hud__corner {
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--line-2);
}
.hud__corner--tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hud__corner--tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hud__tag {
  position: absolute;
  color: var(--faint);
}
.hud__tag--tl { top: -4px; left: 34px; }
.hud__tag--tr { top: -4px; right: 34px; text-align: right; }

.hero__content {
  position: relative;
  z-index: 2;
  align-self: end;
  width: var(--shell);
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: clamp(26px, 5vh, 56px);
}
.hero__content > * { max-width: min(680px, 92%); }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--volt);
  margin-bottom: 22px;
}
.hero__eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--volt);
}
.hero__title {
  font-size: clamp(2.6rem, 7vw, 6rem);
  margin-bottom: 22px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span {
  display: block;
  animation: heroLine 0.95s var(--ease) both;
}
.hero__title .line:nth-child(1) > span { animation-delay: 0.08s; }
.hero__title .line:nth-child(2) > span { animation-delay: 0.18s; }
@keyframes heroLine {
  from { transform: translateY(102%); }
  to   { transform: translateY(0); }
}

.hero__slogan {
  display: flex;
  align-items: baseline;
  gap: 16px;
  max-width: 640px;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.05rem, 2.1vw, 1.5rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.hero__slogan i {
  font-style: normal;
  color: var(--volt);
}
.hero__slogan .strike {
  position: relative;
  color: var(--muted);
  white-space: nowrap;
}
.hero__slogan .strike::after {
  content: "";
  position: absolute; left: -2px; right: -2px; top: 52%;
  height: 2px;
  background: var(--muted);
}

.hero__bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  background: rgba(6, 6, 6, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero__bar-inner {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero__chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 4px;
  color: var(--muted);
  border-left: 1px solid var(--line);
  transition: color 240ms var(--ease);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero__chip:first-child { border-left: 0; }
.hero__chip b { color: var(--paper); font-weight: 600; }
.hero__chip:hover { color: var(--paper); }
.hero__chip-idx { color: var(--volt); font-weight: 700; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 92px;
  transform: translateX(-50%);
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--faint);
}
.scroll-cue .mono { color: var(--faint); }
.scroll-cue .track {
  width: 1px; height: 38px;
  background: var(--line-2);
  overflow: hidden;
  position: relative;
}
.scroll-cue .track::after {
  content: "";
  position: absolute; top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--volt);
  animation: drop 1.8s var(--ease) infinite;
}
@keyframes drop {
  0% { top: -55%; } 100% { top: 105%; }
}
@media (max-width: 860px) { .scroll-cue { display: none; } }

/* ============================================================
   ESTRUTURA DE SEÇÃO
   ============================================================ */
.section {
  width: var(--shell);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 156px) 0;
}
.section--tight { padding-top: clamp(40px, 6vw, 80px); }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--volt);
  margin-bottom: 26px;
}
.tag::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--volt);
  transform: rotate(45deg);
}
.tag .idx { color: var(--faint); }

.heading {
  font-size: clamp(2.4rem, 6.4vw, 6rem);
  margin-bottom: 18px;
}
.lead {
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.55;
}
.lead strong { color: var(--paper); font-weight: 600; }

/* ============================================================
   MANIFESTO (Corpo · Mente · Espírito)
   ============================================================ */
.manifesto {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifesto__inner {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.manifesto__cell {
  position: relative;
  padding: clamp(40px, 7vw, 96px) 24px;
  border-left: 1px solid var(--line);
  display: grid;
  gap: 14px;
  align-content: center;
  text-align: center;
  overflow: hidden;
}
.manifesto__cell:first-child { border-left: 0; }
.manifesto__cell .num { color: var(--faint); }
.manifesto__cell h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.9;
  transition: color 300ms var(--ease);
}
.manifesto__cell p {
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 26ch;
  margin: 0 auto;
}
.manifesto__cell::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--volt);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms var(--ease);
}
.manifesto__cell:hover::before { transform: scaleX(1); }
.manifesto__cell:hover h3 { color: var(--volt); }

/* ============================================================
   HISTÓRIA
   ============================================================ */
.story__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 48px;
}
.story__head .lead { margin-top: 14px; }

.story__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-auto-rows: minmax(0, auto);
  gap: 16px;
}
.frame {
  position: relative;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}
.frame img, .frame > video {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}
.frame__label {
  position: absolute;
  left: 14px; bottom: 14px;
  z-index: 2;
  color: var(--paper);
  background: rgba(6,6,6,0.55);
  backdrop-filter: blur(8px);
  padding: 7px 11px;
  border: 1px solid var(--line-2);
}
.story__video { grid-row: span 2; min-height: 460px; }
.story__video video { aspect-ratio: auto; }
.story__sound {
  position: absolute;
  right: 14px; bottom: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(6,6,6,0.55);
  backdrop-filter: blur(8px);
  color: var(--paper);
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.story__sound:hover { background: var(--paper); color: var(--ink); }
.story__sound-ico {
  position: relative;
  width: 12px; height: 10px;
  border-left: 4px solid currentColor;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
}
.story__sound-ico::after {
  content: "";
  position: absolute;
  left: -4px; top: -3px;
  width: 4px; height: 10px;
  background: currentColor;
}
.story__sound-ico::before {
  content: "";
  position: absolute;
  right: -7px; top: 0px;
  width: 5px; height: 10px;
  border: 1.5px solid currentColor;
  border-left: 0;
  border-radius: 0 6px 6px 0;
  opacity: 0.9;
}
.story__sound:not(.is-on)::after {
  content: "";
  position: absolute;
  left: 9px; top: 50%;
  width: 24px; height: 1.5px;
  background: currentColor;
  transform: translateY(-50%) rotate(-42deg);
}
.story__flag { min-height: 280px; }
.story__flag img { object-position: center 36%; }
.story__quote {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, var(--surface) 0%, var(--ink-2) 100%);
  padding: clamp(26px, 3vw, 40px);
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 280px;
}
.story__quote q {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  quotes: none;
}
.story__quote q b { color: var(--volt); font-weight: 800; }
.story__quote cite { font-style: normal; color: var(--faint); font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; }

.story__narrative {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.note {
  border: 1px solid var(--line);
  background: var(--ink-2);
  padding: clamp(24px, 2.6vw, 34px);
  display: grid;
  gap: 12px;
  align-content: start;
}
.note__k { color: var(--volt); }
.note p { color: var(--muted); font-size: 1rem; line-height: 1.6; }
.note p strong { color: var(--paper); font-weight: 600; }

/* ============================================================
   PRODUTOS
   ============================================================ */
.products__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 44px;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.product {
  position: relative;
  grid-column: span 2;
  min-height: 440px;
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid;
  align-content: end;
  isolation: isolate;
  background: var(--surface);
  cursor: pointer;
}
.product[hidden] { display: none !important; }
.product:focus-visible { outline: 2px solid var(--paper); outline-offset: 3px; }
.product:hover { border-color: var(--line-2); }
.product--wide { grid-column: span 3; min-height: 380px; }
.product__media {
  position: absolute; inset: 0;
  z-index: -3;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 600ms var(--ease);
  filter: saturate(0.9) brightness(0.78);
}
.product__preview {
  position: absolute; inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 450ms var(--ease);
  pointer-events: none;
}
.product.is-previewing .product__preview { opacity: 1; }
.product__media--map {
  object-fit: cover;
  filter: grayscale(1) contrast(1.04) brightness(0.82);
}
.product:hover .product__media--map { filter: grayscale(1) contrast(1.06) brightness(0.86); transform: none; }
.product::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(6,6,6,0.05) 0%, rgba(6,6,6,0.35) 45%, rgba(6,6,6,0.92) 100%);
}
.product:hover .product__media { transform: scale(1.05); filter: saturate(1) brightness(0.82); }

.product__top {
  position: absolute;
  top: 16px; left: 16px; right: 16px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product__type {
  color: var(--volt);
  background: rgba(6,6,6,0.5);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
}
.product__idx { color: var(--faint); font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; }

.product__body { padding: 22px; display: grid; gap: 6px; }

/* indicador de play / assistir */
.product__play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product__play .ico {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  background: rgba(244,243,239,0.06);
  transition: background 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
}
.product__play .ico::before {
  content: "";
  width: 0; height: 0;
  margin-left: 2px;
  border-left: 8px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.product:hover .product__play .ico { background: var(--paper); color: var(--ink); transform: scale(1.05); }
.product__body h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.1vw, 1.95rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.98;
}
.product__body p { color: var(--muted); font-size: 0.92rem; max-width: 34ch; }

.product__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.btn-watch, .btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 15px;
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
}
.btn-watch {
  background: rgba(244,243,239,0.06);
  border: 1px solid var(--line-2);
  color: var(--paper);
}
.btn-watch:hover { background: var(--paper); color: var(--ink); }
.btn-watch::before {
  content: "";
  width: 0; height: 0;
  border-left: 7px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.btn-wa {
  background: var(--volt);
  border: 1px solid var(--volt);
  color: var(--volt-ink);
}
.btn-wa:hover { transform: translateY(-1px); box-shadow: 0 10px 22px -10px var(--volt); }

/* card destaque — banner largura total */
.product--featured {
  grid-column: 1 / -1;
  background:
    radial-gradient(120% 160% at 100% 50%, var(--surface-2) 0%, var(--ink-2) 60%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(28px, 4vw, 44px);
  min-height: 0;
}
.product--featured::after { display: none; }
.product--featured img {
  width: clamp(112px, 16vw, 210px);
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--line-2);
  opacity: 0.95;
}
.product--featured .featured__copy { display: grid; gap: 8px; }
.product--featured h3 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  text-transform: uppercase; line-height: 0.94; letter-spacing: -0.01em;
}
.product--featured p { color: var(--muted); font-size: 0.96rem; max-width: 46ch; }
.product--featured .link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--paper);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 4px;
  transition: gap 220ms var(--ease), border-color 220ms var(--ease);
}
.product--featured .link-arrow:hover { gap: 16px; border-color: var(--volt); }
.product--featured .link-arrow span:last-child { color: var(--volt); }

.product--store {
  background:
    radial-gradient(120% 160% at 0% 50%, var(--surface-2) 0%, var(--ink-2) 60%);
}
.product--store img {
  filter: saturate(0.95) brightness(0.92);
  object-position: 44% 58%;
}

.product--app { cursor: default; }
.product--app .product__media {
  object-fit: contain;
  padding: clamp(56px, 8vw, 104px);
  background:
    radial-gradient(circle at 70% 20%, rgba(244,243,239,0.13), transparent 36%),
    linear-gradient(135deg, #050505 0%, #17171a 100%);
  filter: none;
  opacity: 0.86;
}
.product--app:hover .product__media {
  filter: none;
  transform: scale(1.025);
}
.product--app::after {
  background: linear-gradient(180deg, rgba(6,6,6,0.12) 0%, rgba(6,6,6,0.34) 46%, rgba(6,6,6,0.94) 100%);
}
.product__media--residence { object-position: center 34%; }
.product--workshop .product__media {
  object-position: center 68%;
}

.btn-link::before {
  width: 0;
  height: 0;
  margin-left: 0;
  border-left-width: 7px;
}

/* ============================================================
   METODOLOGIA
   ============================================================ */
.method {
  border-top: 1px solid var(--line);
}
.method__inner {
  width: var(--shell);
  margin: 0 auto;
  padding: 96px 0 104px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.method__statement {
  position: static;
}
.method__title {
  margin-top: 18px;
  color: var(--paper);
  font-size: 7.25rem;
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 100%;
}
.method__title::after {
  content: "";
  display: block;
  width: min(220px, 52vw);
  height: 4px;
  margin-top: 22px;
  background: var(--volt);
}
.method__copy {
  display: grid;
  gap: 16px;
  max-width: 880px;
  padding-left: 28px;
  border-left: 4px solid var(--volt);
}
.method__copy p {
  color: var(--muted);
  max-width: 78ch;
  font-size: 1.08rem;
  line-height: 1.72;
}
.method__copy p:first-child {
  color: var(--paper);
  font-size: 1.32rem;
  line-height: 1.42;
  font-weight: 700;
}
.method__copy .method__close {
  margin-top: 4px;
  color: var(--paper);
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.42;
}

/* ============================================================
   RESULTADOS
   ============================================================ */
.results__head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 40px;
}
.results__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}
.results__rail::-webkit-scrollbar { height: 6px; }
.results__rail::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 99px; }
.result {
  position: relative;
  scroll-snap-align: start;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--surface);
}
.result img { width: 100%; height: 100%; object-fit: contain; }

/* ============================================================
   COMUNIDADE / EQUIPE
   ============================================================ */
.community {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.community__media {
  position: relative;
  height: clamp(420px, 64vh, 720px);
  overflow: hidden;
}
.community__media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) brightness(0.62); }
.community__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,6,0.5) 0%, rgba(6,6,6,0.2) 40%, rgba(6,6,6,0.85) 100%);
}
.community__overlay {
  position: absolute; inset: 0;
  z-index: 2;
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  align-content: end;
  padding-bottom: clamp(34px, 5vw, 64px);
}
.community__overlay .heading { margin-bottom: 12px; }
.community__overlay .lead { color: rgba(244,243,239,0.78); }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta {
  width: var(--shell);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 170px) 0;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 30px;
}
.cta__mark { width: 64px; opacity: 0.9; }
.cta__title { font-size: clamp(2.8rem, 9vw, 8rem); }
.cta__title em { font-style: normal; color: var(--volt); }
.cta__sub { color: var(--muted); max-width: 40ch; font-size: 1.05rem; }
.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 58px;
  padding: 0 34px;
  border-radius: 2px;
  background: var(--volt);
  color: var(--volt-ink);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.cta__btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -16px var(--volt); }
.cta__btn svg { width: 18px; height: 18px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
}
.footer__inner {
  width: var(--shell);
  margin: 0 auto;
  padding: 48px 0 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { width: 40px; height: 40px; object-fit: contain; }
.footer__brand div b { font-family: var(--display); font-weight: 800; text-transform: uppercase; letter-spacing: 0.03em; display: block; }
.footer__brand div span { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em; color: var(--faint); text-transform: uppercase; }
.footer__links { display: flex; gap: 22px; }
.footer__links a {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); transition: color 200ms var(--ease);
}
.footer__links a:hover { color: var(--volt); }
.footer__legal {
  width: var(--shell);
  margin: 0 auto;
  padding: 18px 0 36px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--faint);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   MODAL DE VÍDEO
   ============================================================ */
.video-modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(3,3,3,0.9);
  backdrop-filter: blur(8px);
}
.video-modal.is-open { display: grid; }
.video-modal__stage {
  position: relative;
  width: min(960px, 100%);
}
.video-modal__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2px 12px;
  color: var(--faint);
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
}
.video-modal video {
  width: 100%;
  max-height: 72svh;
  border: 1px solid var(--line-2);
  background: #000;
}
.video-modal__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--ink-2);
}
.video-modal__cta p {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.video-modal__cta a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 22px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 2px;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 200ms var(--ease);
}
.video-modal__cta a:hover { transform: translateY(-1px); }
.video-modal__cta a svg { width: 16px; height: 16px; }
.video-modal__fallback {
  display: none;
  padding: 40px 24px;
  border: 1px solid var(--line-2);
  text-align: center;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.8rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
.video-modal__close {
  width: 44px; height: 44px;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--paper);
  font-size: 1.4rem;
  line-height: 1;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.video-modal__close:hover { background: var(--volt); color: var(--volt-ink); border-color: var(--volt); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }

/* progress lateral */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--volt);
  z-index: 70;
  transition: width 120ms linear;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1080px) {
  .products__grid { grid-template-columns: repeat(4, 1fr); }
  .product, .product--wide { grid-column: span 2; }
  .method__inner { padding: 84px 0 92px; }
  .method__title { font-size: 5.9rem; }
}

@media (max-width: 860px) {
  :root { --shell: calc(100vw - 36px); }
  .nav__links { display: none; }
  .brand__name span { display: none; }

  .hero__bar-inner { grid-template-columns: repeat(2, 1fr); }
  .hero__chip:nth-child(3) { border-left: 0; }
  .hero__chip { border-top: 1px solid var(--line); }
  .hero__chip:nth-child(-n+2) { border-top: 0; }

  .manifesto__inner { grid-template-columns: 1fr; }
  .manifesto__cell { border-left: 0; border-top: 1px solid var(--line); }
  .manifesto__cell:first-child { border-top: 0; }

  .story__head, .products__head, .results__head { grid-template-columns: 1fr; }
  .story__grid { grid-template-columns: 1fr; }
  .story__video { grid-row: auto; min-height: 320px; }
  .story__narrative { grid-template-columns: 1fr; }

  .products__grid { grid-template-columns: 1fr; }
  .product, .product--wide { grid-column: auto; min-height: 360px; }
  .product--featured { grid-column: auto; grid-template-columns: 1fr; justify-items: start; text-align: left; gap: 18px; }
  .product--featured .link-arrow { justify-self: start; }

  .method__inner { grid-template-columns: 1fr; gap: 32px; padding: 76px 0 84px; }
  .method__statement { position: static; }
  .method__title { font-size: 4.4rem; }
  .method__copy { padding-left: 20px; }
  .method__copy p { font-size: 1rem; }
  .method__copy p:first-child { font-size: 1.16rem; }
  .method__copy .method__close { font-size: 1.1rem; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__legal { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero__bar-inner { grid-template-columns: 1fr; }
  .hero__chip { border-left: 0; border-top: 1px solid var(--line); }
  .hero__chip:first-child { border-top: 0; }
  .product__actions { width: 100%; }
  .btn-watch, .btn-wa { flex: 1; justify-content: center; }
  .method__inner { padding: 64px 0 72px; }
  .method__title { font-size: 2.65rem; line-height: 0.94; }
  .method__title::after { width: 160px; height: 3px; margin-top: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__title .line > span { transform: none; }
  html { scroll-behavior: auto; }
}
