/* ═══════════════════════════════════════════════════════════════
   AIR JORDAN 1 LOW · DROPS — paleta SNKRS premium
   Auditoria $10k+ · loading · cursor · depth transitions
   ═══════════════════════════════════════════════════════════════ */

:root {
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-cond: "Bebas Neue", Impact, sans-serif;
  --font-body: "Inter", -apple-system, sans-serif;

  --ink: #0A0A0A;
  --ink-soft: #1A1A1A;
  --grey: #2A2A2A;
  --grey-soft: #555555;
  --grey-line: #CFCFCF;

  --paper: #F5F5F2;
  --bone: #E8E4DA;

  --red: #BB1330;
  --red-bright: #E5252A;
  --orange: #FF6900;
}

html {
  scroll-snap-type: y proximity;
  cursor: none;
}

body {
  background: var(--ink);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.005em;
}

@media (hover: none) {
  html { cursor: auto; }
}

/* ═══════════════════════════════════════════════════════════════
   LOADING SCREEN
   ═══════════════════════════════════════════════════════════════ */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__img {
  width: clamp(220px, 30vw, 360px);
  height: auto;
  object-fit: contain;
}

.loader__line {
  width: 200px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.loader__line::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--red-bright);
  animation: loader-fill 1.5s ease-in-out forwards;
}

@keyframes loader-fill {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* ═══════════════════════════════════════════════════════════════
   CURSOR CUSTOM
   ═══════════════════════════════════════════════════════════════ */

.cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 9000;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor__dot,
.cursor__ring {
  position: absolute;
  top: 0; left: 0;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.cursor__dot {
  width: 6px; height: 6px;
  background: #FFFFFF;
  transform: translate(-50%, -50%);
}

.cursor__ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}

.cursor.is-hover .cursor__ring {
  width: 56px; height: 56px;
  border-color: var(--red-bright);
}

@media (hover: none), (max-width: 768px) {
  .cursor { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   INDICADOR LATERAL
   ═══════════════════════════════════════════════════════════════ */

.indicator {
  position: fixed;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  pointer-events: auto;
}

.indicator a {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: none;
}

.indicator a span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  transition: all 0.3s ease;
}

.indicator a.is-active span {
  width: 12px;
  height: 12px;
  background: var(--red-bright);
  border-color: var(--red-bright);
  box-shadow: 0 0 12px rgba(229, 37, 42, 0.6);
}

.indicator a em {
  position: absolute;
  right: 130%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: #FFFFFF;
  background: var(--ink);
  padding: 0.3rem 0.7rem;
  border-radius: 99px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, right 0.25s ease;
}
.indicator a:hover em { opacity: 1; right: 150%; }

.indicator.on-light a span { border-color: rgba(0, 0, 0, 0.4); }
.indicator.on-light a:not(.is-active) em { color: var(--ink); background: var(--paper); }

/* ═══════════════════════════════════════════════════════════════
   NAV FIXA
   ═══════════════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 1.25rem clamp(1.5rem, 4vw, 3rem);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.5s ease, color 0.5s ease;
}

.nav.is-light {
  background: rgba(245, 245, 242, 0.7);
  border-bottom-color: rgba(0, 0, 0, 0.1);
  color: var(--ink);
}

.nav__logo img {
  height: 28px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: invert(1) brightness(2);
  transition: filter 0.4s ease;
}

.nav.is-light .nav__logo img { filter: none; mix-blend-mode: multiply; }

.nav__links {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.nav__links a {
  position: relative;
  padding: 0.4rem 0;
  opacity: 0.75;
  transition: opacity 0.2s ease;
  cursor: none;
}
.nav__links a:hover { opacity: 1; }
.nav__links a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left center; }

/* SNKRS sempre em vermelho (via mask sobre o PNG) */
.nav__snkrs {
  display: inline-block;
  width: 64px;
  height: 22px;
  background: var(--red-bright);
  -webkit-mask: url(../assets/snkrs.png) center / contain no-repeat;
          mask: url(../assets/snkrs.png) center / contain no-repeat;
  transition: background 0.3s ease, transform 0.3s ease;
}
.nav__snkrs:hover { background: #FFFFFF; transform: translateY(-1px); }
.nav__snkrs img { display: none; }

/* ═══════════════════════════════════════════════════════════════
   REVEAL · entrada cinematográfica com depth 3D
   ═══════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: scale(1.06);
  filter: blur(14px);
  transition: opacity 1.1s cubic-bezier(0.2, 0.7, 0.3, 1),
              transform 1.1s cubic-bezier(0.2, 0.7, 0.3, 1),
              filter 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

/* hero não tem reveal (entra direto) — remove via JS, mas já garante visibilidade default */
.hero { opacity: 1; transform: none; filter: none; }

/* ═══════════════════════════════════════════════════════════════
   LETTERBOX cinematográfico
   ═══════════════════════════════════════════════════════════════ */

.letterbox {
  position: absolute;
  left: 0; right: 0;
  height: 0;
  background: var(--ink);
  z-index: 9;
  pointer-events: none;
  transition: height 1s cubic-bezier(0.7, 0, 0.2, 1) 0.2s;
}
.letterbox--top    { top: 0; }
.letterbox--bottom { bottom: 0; }

.spread:not(.is-visible) .letterbox { height: 12%; }
.spread.is-visible .letterbox { height: 0; }

/* ═══════════════════════════════════════════════════════════════
   HERO (a estrela do show)
   ═══════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 30% 60%, #1A1A1A 0%, #0A0A0A 50%, #000000 100%);
  color: #FFFFFF;
  overflow: hidden;
  isolation: isolate;
  padding: 6rem clamp(1.5rem, 4vw, 4rem) 2.5rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1rem;
}

.hero__top {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 3;
}

/* visually hidden h1 pra acessibilidade */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* ─── CENTER ───
   AIR (BG)
   SINCE 1985
   TÊNIS
   JORDAN (BG)
*/
.hero__center {
  position: relative;
  align-self: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* AIR JORDAN — uma linha só, atrás do tênis */
.hero__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 19rem);
  line-height: 0.85;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.07);
  user-select: none;
  pointer-events: none;
  text-align: center;
  white-space: nowrap;
  z-index: 0;
}

/* SINCE 1985 acima do tênis */
.hero__kicker {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 17vw));
  font-family: var(--font-cond);
  font-size: clamp(0.95rem, 1.3vw, 1.3rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  display: block;
  overflow: hidden;
  z-index: 5;
}
.hero__kicker > span {
  display: inline-block;
  color: var(--red-bright);
  transform: translateY(110%);
  animation: kinetic-up 1.2s cubic-bezier(0.2, 0.8, 0.3, 1) forwards 1.6s;
}

@keyframes kinetic-up {
  0%   { transform: translateY(110%); }
  100% { transform: translateY(0); }
}

@keyframes fade-in {
  0%   { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ─── SHOE CYCLE — loop infinito 15 frames ─── */

.hero__shoe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(320px, 44vw, 680px);
  aspect-ratio: 1 / 1;
  isolation: isolate;
  z-index: 3;
}

.hero__cycle {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__cycle img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.85) rotate(-8deg);
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55)) drop-shadow(0 60px 80px rgba(0,0,0,0.35)) blur(10px);
  animation: hero-shoe-cycle 24s ease-in-out infinite;
  will-change: opacity, transform, filter;
}

/* 15 imagens, cada uma 1.6s ativo, total 24s */
.hero__cycle img:nth-child(1)  { animation-delay: 0s;     }
.hero__cycle img:nth-child(2)  { animation-delay: 1.6s;   }
.hero__cycle img:nth-child(3)  { animation-delay: 3.2s;   }
.hero__cycle img:nth-child(4)  { animation-delay: 4.8s;   }
.hero__cycle img:nth-child(5)  { animation-delay: 6.4s;   }
.hero__cycle img:nth-child(6)  { animation-delay: 8s;     }
.hero__cycle img:nth-child(7)  { animation-delay: 9.6s;   }
.hero__cycle img:nth-child(8)  { animation-delay: 11.2s;  }
.hero__cycle img:nth-child(9)  { animation-delay: 12.8s;  }
.hero__cycle img:nth-child(10) { animation-delay: 14.4s;  }
.hero__cycle img:nth-child(11) { animation-delay: 16s;    }
.hero__cycle img:nth-child(12) { animation-delay: 17.6s;  }
.hero__cycle img:nth-child(13) { animation-delay: 19.2s;  }
.hero__cycle img:nth-child(14) { animation-delay: 20.8s;  }
.hero__cycle img:nth-child(15) { animation-delay: 22.4s;  }

@keyframes hero-shoe-cycle {
  0%   { opacity: 0; transform: scale(0.85) rotate(-8deg) translateY(20px); filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55)) blur(14px); }
  3%   { opacity: 1; transform: scale(1) rotate(0deg) translateY(0); filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55)) blur(0); }
  5%   { opacity: 1; transform: scale(1) rotate(0deg) translateY(0); filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55)) blur(0); }
  6.5% { opacity: 0; transform: scale(1.08) rotate(8deg) translateY(-20px); filter: drop-shadow(0 30px 50px rgba(0,0,0,0.55)) blur(14px); }
  100% { opacity: 0; transform: scale(0.85) rotate(-8deg); filter: blur(14px); }
}

.hero__shoe-glow {
  position: absolute;
  bottom: -2%;
  left: 12%; right: 12%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(229, 37, 42, 0.45) 0%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.1); }
}


/* ─── BOTTOM ─── */

.hero__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fade-in 0.9s ease forwards;
  animation-delay: 2.8s;
}

.hero__stats {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero__stats > span {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.hero__stats strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  line-height: 1;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
  cursor: none;
}
.hero__cta:hover { color: var(--red-bright); }
.hero__cta svg {
  width: 14px;
  height: 22px;
  animation: bounce-down 2.4s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* ═══════════════════════════════════════════════════════════════
   MANIFESTO — com Jordan no BG
   ═══════════════════════════════════════════════════════════════ */

.manifesto {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background: #000;
  color: #FFFFFF;
  padding: clamp(3rem, 8vh, 6rem) clamp(1.5rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  overflow: hidden;
  isolation: isolate;
}

.manifesto__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.manifesto__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  filter: grayscale(1) contrast(1.18) brightness(0.85);
  opacity: 0.42;
  transform: scale(1.1);
  animation: manifesto-zoom 18s ease-out forwards;
}

@keyframes manifesto-zoom {
  0%   { transform: scale(1.18); }
  100% { transform: scale(1.0); }
}

.manifesto__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, #000 0%, transparent 22%, transparent 78%, #000 100%),
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.manifesto__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    repeating-radial-gradient(circle at 0 0, rgba(255,255,255,0.6) 0, transparent 1px, transparent 2px);
  mix-blend-mode: overlay;
}

.manifesto__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 1100px;
}

.manifesto__cite {
  font-family: var(--font-cond);
  font-size: 1.05rem;
  letter-spacing: 0.4em;
  color: var(--red-bright);
  text-transform: uppercase;
}

.manifesto__big {
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 11rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  max-width: 18ch;
}
.manifesto__big em { color: rgba(255,255,255,0.5); font-style: normal; }

.manifesto__highlight {
  position: relative;
  color: var(--red-bright);
  display: inline-block;
}
.manifesto__highlight::after {
  content: "";
  position: absolute;
  left: -4px; right: -4px;
  bottom: 0.05em;
  height: 0.15em;
  background: var(--red-bright);
  z-index: -1;
  opacity: 0.35;
}

.manifesto__lede {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  max-width: 56ch;
  border-left: 2px solid var(--red-bright);
  padding-left: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   SPREAD · sistema base + sticky scroll-driven
   ═══════════════════════════════════════════════════════════════ */

.spread {
  position: relative;
  width: 100vw;
  height: 350vh;
  overflow: visible;
  isolation: isolate;
}

.spread__sticky {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 5rem clamp(1.5rem, 4vw, 4rem) 2rem;
}

.spread--white .spread__sticky { background: var(--paper); color: var(--ink); }
.spread--grey  .spread__sticky { background: linear-gradient(180deg, #2A2A2A 0%, #1F1F1F 100%); color: #F5F5F2; }
.spread--red   .spread__sticky { background: linear-gradient(160deg, #BB1330 0%, #8B0E22 100%); color: #FFFFFF; }

/* tipografia gigante de fundo */
.spread__title-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(14rem, 38vw, 38rem);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

.spread--white .spread__title-bg {
  color: transparent;
  -webkit-text-stroke: 2px rgba(10, 10, 10, 0.12);
}
.spread--grey .spread__title-bg { color: rgba(255, 255, 255, 0.06); }
.spread--red .spread__title-bg  { color: rgba(255, 255, 255, 0.12); }

.spread__side-label {
  position: absolute;
  top: 50%;
  left: clamp(1rem, 2.5vw, 2rem);
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--font-cond);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  z-index: 5;
  opacity: 0.85;
}

.spread__side-num {
  font-family: var(--font-display);
  font-size: 1.6em;
  letter-spacing: -0.01em;
}

.spread__page {
  position: absolute;
  bottom: 1.5rem;
  right: clamp(1.5rem, 4vw, 4rem);
  font-family: var(--font-display);
  font-size: 1.6rem;
  z-index: 5;
  opacity: 0.5;
}

.spread__pills {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 5;
  flex-wrap: wrap;
  justify-content: center;
}
.spread__pills li {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 99px;
  border: 1px solid currentColor;
  opacity: 0.7;
}
.spread--white .spread__pills li { border-color: rgba(0,0,0,0.25); color: var(--ink); }

/* ═══════════════════════════════════════════════════════════════
   SHOE · scroll-driven crossfade entre 5 fotos
   ═══════════════════════════════════════════════════════════════ */

.shoe {
  position: relative;
  width: clamp(280px, 52vw, 720px);
  aspect-ratio: 1 / 1;
  z-index: 4;
}

.shoe__stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.shoe__stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.94) rotate(-3deg);
  filter: drop-shadow(0 30px 30px rgba(0,0,0,0.25)) drop-shadow(0 60px 60px rgba(0,0,0,0.18)) blur(8px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1),
              filter 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform, filter;
}

.shoe__stack img.is-active {
  opacity: 1;
  transform: scale(1) rotate(0deg);
  filter: drop-shadow(0 30px 30px rgba(0,0,0,0.25)) drop-shadow(0 60px 60px rgba(0,0,0,0.18)) blur(0);
}

/* progress wrap posicionado ACIMA da tipografia gigante (WHITE/GREY/RED) */
.spread__progress-wrap {
  position: absolute;
  top: clamp(7rem, 18vh, 10rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 6;
  width: clamp(220px, 32vw, 380px);
}

.shoe__counter {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.25em;
  opacity: 0.65;
}

.shoe__progress {
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 99px;
  overflow: hidden;
}
.shoe__progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.spread--grey .shoe__progress { background: rgba(255,255,255,0.18); }
.spread--red  .shoe__progress { background: rgba(255,255,255,0.22); }

/* ═══════════════════════════════════════════════════════════════
   INFO CARD
   ═══════════════════════════════════════════════════════════════ */

/* ─── glassmorphism: vidro fosco com blur + saturate + borda highlight ─── */
.info-card {
  position: absolute;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: clamp(5rem, 12vh, 8rem);
  width: clamp(220px, 24vw, 320px);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.6rem 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 2px solid currentColor;
  border-radius: 6px;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.spread--white .info-card {
  background: rgba(255, 255, 255, 0.45);
  border-color: rgba(0, 0, 0, 0.06);
  border-left-color: var(--ink);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.spread--grey .info-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.spread--red .info-card {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.22);
}

.info-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.info-card__sub {
  font-family: var(--font-cond);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

.info-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  padding: 0.7rem 0;
  margin-top: 0.3rem;
  opacity: 0.85;
}
.info-card__list li { display: flex; justify-content: space-between; gap: 1rem; }
.info-card__list strong {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
}

.info-card__quote {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════════════
   DROP
   ═══════════════════════════════════════════════════════════════ */

.drop {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  background: #000;
  color: #FFFFFF;
  padding: clamp(4rem, 10vh, 8rem) clamp(1.5rem, 4vw, 4rem);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drop__bg-mark {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drop__bg-mark img { width: 60vw; height: auto; filter: invert(1); }

.drop__content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.drop__kicker {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--red-bright);
}

.drop__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 1rem 0 1.5rem;
}

.drop__lede {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  max-width: 38ch;
  margin-bottom: 2rem;
}

.drop__schedule {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--font-display);
}

.drop__schedule li {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  transition: padding 0.3s ease, color 0.3s ease;
  cursor: none;
}
.drop__schedule li:hover { padding-left: 1rem; color: var(--red-bright); }
.drop__schedule li:first-child { border-top: 1px solid rgba(255, 255, 255, 0.15); }

.drop__date { color: rgba(255, 255, 255, 0.55); font-size: 0.7em; }
.drop__line { flex: 1; height: 1px; background: rgba(255, 255, 255, 0.18); }
.drop__name { color: #FFFFFF; }

.drop__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  padding: 1rem 1.6rem;
  background: var(--red-bright);
  color: #FFFFFF;
  font-family: var(--font-cond);
  font-size: 1.05rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-radius: 99px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  align-self: flex-start;
  width: fit-content;
  cursor: none;
}
.drop__cta:hover { transform: translateX(6px); background: #FFFFFF; color: var(--ink); }
.drop__cta svg { width: 22px; height: 14px; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
  position: relative;
  width: 100vw;
  min-height: 60vh;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.55);
  padding: 3rem clamp(1.5rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3rem;
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__big {
  font-family: var(--font-display);
  font-size: clamp(5rem, 18vw, 18rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .hero__shoe { width: 60vw; }
  .hero__bg-text { font-size: clamp(4rem, 14vw, 8rem); }
  .hero__kicker { transform: translate(-50%, calc(-50% - 22vw)); }
}

@media (max-width: 900px) {
  html { cursor: auto; }
  .cursor, .indicator { display: none; }

  .nav { padding: 0.8rem 1rem; }
  .nav__links { gap: 1rem; font-size: 0.65rem; }
  .nav__logo img { height: 22px; }
  .nav__snkrs img { height: 18px; }

  .hero { padding: 5rem 1.5rem 2rem; }
  .hero__top { font-size: 0.6rem; gap: 0.5rem; flex-wrap: wrap; justify-content: flex-end; }
  .hero__shoe { width: 70vw; }
  .hero__bg-text { font-size: clamp(3.2rem, 16vw, 6rem); }
  .hero__kicker { transform: translate(-50%, calc(-50% - 28vw)); font-size: 0.7rem; }

  .hero__stats { gap: 1rem; font-size: 0.6rem; }
  .hero__stats strong { font-size: 1.1rem; }

  .manifesto { padding: 3rem 1.5rem; }
  .manifesto__big { font-size: clamp(2.4rem, 12vw, 4.5rem); }

  .spread { height: 300vh; }
  .spread__sticky {
    padding: 5rem 1rem 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  .spread__title-bg { font-size: clamp(8rem, 30vw, 14rem); }
  .spread__side-label { font-size: 0.85rem; left: 0.5rem; }

  .shoe { width: 75vw; }

  .info-card {
    position: static;
    width: calc(100% - 2rem);
    margin-top: -4vh;
    padding: 1rem 1.1rem;
  }

  /* pills em UMA linha só abaixo do info-card */
  .spread__pills {
    position: static;
    transform: none;
    margin: 0.4rem auto 0;
    gap: 0.35rem;
    flex-wrap: nowrap;
    justify-content: center;
    max-width: 100%;
  }
  .spread__pills li {
    font-size: 0.55rem;
    padding: 0.3rem 0.55rem;
    letter-spacing: 0.14em;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .drop__content { grid-template-columns: 1fr; }
  .drop__title { font-size: clamp(3rem, 13vw, 5rem); }
  .drop__schedule li { font-size: 1.6rem; }

  .footer__big { font-size: clamp(3rem, 18vw, 6rem); }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}
