/* ═══════════════════════════════════════════════════════════
   CREATEFUL STUDIO · MIXTAPE 2026
   Paleta oficial: branco #DCDBCD · preto #080F0F
   vermelho #AF3431 · azul #3189AF · amarelo #DDA61D
   ═══════════════════════════════════════════════════════════ */

@font-face { font-family: 'Bespoke Sans'; src: url('../fonts/BespokeSans-Extrabold.otf') format('opentype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Bespoke Sans'; src: url('../fonts/BespokeSans-ExtraboldItalic.otf') format('opentype'); font-weight: 800; font-style: italic; font-display: swap; }
@font-face { font-family: 'Bespoke Sans'; src: url('../fonts/BespokeSans-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Satoshi'; src: url('../fonts/Satoshi-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Satoshi'; src: url('../fonts/Satoshi-Italic.otf') format('opentype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Satoshi'; src: url('../fonts/Satoshi-Medium.otf') format('opentype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Satoshi'; src: url('../fonts/Satoshi-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Satoshi'; src: url('../fonts/Satoshi-Black.otf') format('opentype'); font-weight: 900; font-style: normal; font-display: swap; }

:root {
  --branco: #DCDBCD;
  --preto: #080F0F;
  --vermelho: #AF3431;
  --azul: #3189AF;
  --amarelo: #DDA61D;
  --preto-soft: #101817;
  --branco-dim: rgba(220, 219, 205, 0.62);
  --preto-dim: rgba(8, 15, 15, 0.68);
  --display: 'Bespoke Sans', 'Arial Black', sans-serif;
  --body: 'Satoshi', 'Helvetica Neue', sans-serif;
  /* Emil Kowalski: strong ease-out para UI, ease-in-out para movimento on-screen */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --shadow-sticker: 4px 4px 0 var(--preto);
  --container: min(1200px, 92vw);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--body);
  background: var(--preto);
  color: var(--branco);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: var(--amarelo); color: var(--preto); }

.container { width: var(--container); margin-inline: auto; }
section[id] { scroll-margin-top: 5rem; }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--amarelo);
  outline-offset: 3px;
}

/* contador de fita: progresso de scroll */
.tape-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 4px; z-index: 9500;
  background: var(--amarelo); transform-origin: left; transform: scaleX(0);
  pointer-events: none;
}

/* ═══════════ OVERLAYS ═══════════ */
.crt-scanlines {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(8,15,15,0.12) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply; opacity: 0.5;
}
.grain {
  position: fixed; inset: -100px; z-index: 9001; pointer-events: none; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(4) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-30px, 20px); }
  50% { transform: translate(25px, -35px); }
  75% { transform: translate(-15px, -20px); }
  100% { transform: translate(0, 0); }
}

/* ═══════════ PRELOADER ═══════════ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--preto);
  display: grid; place-items: center;
}
.preloader-inner { text-align: center; width: min(420px, 80vw); }
.preloader-logo { width: 130px; margin: 0 auto 2.2rem; }
.preloader-bar {
  height: 26px; border: 3px solid var(--branco); padding: 4px;
  background: var(--preto);
}
.preloader-bar-fill {
  height: 100%; width: 0%;
  background: repeating-linear-gradient(90deg, var(--amarelo) 0 14px, transparent 14px 18px);
}
.preloader-text {
  margin-top: 1rem; font-size: 0.8rem; letter-spacing: 0.22em;
  font-weight: 700; color: var(--branco-dim);
  display: flex; justify-content: space-between;
}

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 8000;
  display: flex; align-items: center; gap: 2rem;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  background: linear-gradient(rgba(8,15,15,0.92), rgba(8,15,15,0.75) 70%, transparent);
  transition: transform 0.45s var(--ease-out);
}
.nav.nav-hidden { transform: translateY(-110%); }
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav-links a {
  text-decoration: none; font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  position: relative; padding: 0.2rem 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 3px; width: 0;
  background: var(--amarelo); transition: width 0.3s var(--ease-out);
}
.nav-links a:hover::after { width: 100%; }
.nav-burger { display: none; }

.mobile-menu {
  position: fixed; inset: 0; z-index: 7900; background: var(--preto);
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 2rem; font-size: 1.4rem; font-weight: 900; text-transform: uppercase;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { text-decoration: none; }

/* ═══════════ BOTÕES ═══════════ */
.btn {
  display: inline-block; font-family: var(--body); font-weight: 900;
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; padding: 0.85rem 1.6rem; border: 3px solid var(--preto);
  cursor: pointer;
  /* release: 200ms ease-out · press: 90ms (assimétrico) */
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s;
}
.btn:active { transition-duration: 0.09s; }
.btn-yellow {
  background: var(--amarelo); color: var(--preto);
  box-shadow: var(--shadow-sticker);
}
.btn-yellow:active { transform: translate(2px, 2px) scale(0.97); box-shadow: 1px 1px 0 var(--preto); }
.btn-nav {
  background: var(--amarelo); color: var(--preto);
  border-color: var(--branco); box-shadow: 3px 3px 0 rgba(220,219,205,0.85);
  font-size: 0.72rem; padding: 0.6rem 1.1rem;
}
.btn-ghost {
  border-color: var(--branco); color: var(--branco); background: transparent;
}
.btn-ghost:active { transform: scale(0.97); }
.btn-ghost-light { border-color: var(--branco); color: var(--branco); background: transparent; box-shadow: 4px 4px 0 rgba(220,219,205,0.3); }
.btn-ghost-light:active { transform: scale(0.97); }
@media (hover: hover) {
  .btn-yellow:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--preto); }
  .btn-nav:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 rgba(220,219,205,0.85); }
  .btn-ghost:hover { background: var(--branco); color: var(--preto); }
  .btn-ghost-light:hover { background: var(--branco); color: var(--preto); }
}
.btn-big { font-size: 0.95rem; padding: 1.05rem 2rem; }
.btn-huge { font-size: clamp(1rem, 2.4vw, 1.4rem); padding: 1.3rem clamp(1.8rem, 4vw, 3.2rem); }

/* ═══════════ TAGS / LABELS ═══════════ */
.section-tag {
  font-size: 0.78rem; font-weight: 900; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--preto);
  display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.6rem;
}
.section-tag::after { content: ''; flex: 0 0 60px; height: 3px; background: currentColor; }
.section-tag-light { color: var(--branco); }
.tag-num {
  background: var(--preto); color: var(--branco);
  padding: 0.15rem 0.5rem; font-size: 0.72rem;
}
.section-tag-light .tag-num { background: var(--branco); color: var(--preto); }

.tape-label {
  display: inline-block; background: var(--branco); color: var(--preto);
  font-weight: 900; font-size: 0.72rem; letter-spacing: 0.24em;
  padding: 0.45rem 0.9rem; text-transform: uppercase;
  border: 2px solid var(--preto); box-shadow: 3px 3px 0 rgba(8,15,15,0.5);
  transform: rotate(-1.2deg);
}
.tape-label-red { background: var(--vermelho); color: var(--branco); }

/* ═══════════ HERO ═══════════ */
.hero {
  min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; position: relative; overflow: hidden;
  padding-top: 5rem;
  background:
    radial-gradient(ellipse 90% 60% at 50% 118%, rgba(49,137,175,0.28), transparent 60%),
    radial-gradient(ellipse 45% 32% at 82% 8%, rgba(175,52,49,0.16), transparent 70%),
    var(--preto);
}
.hero-stage { width: var(--container); margin-inline: auto; text-align: center; position: relative; z-index: 2; padding-bottom: clamp(2rem, 4vh, 3.5rem); }
.hero-kicker { margin-bottom: 2.2rem; }
.hero-kicker .tape-label { background: var(--amarelo); transform: rotate(1.4deg); }

.hero-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(3rem, 11.5vw, 9.8rem);
  line-height: 0.92; text-transform: uppercase; letter-spacing: -0.015em;
  color: var(--branco);
}
.hero-line { display: block; overflow: hidden; padding-bottom: 0.16em; margin-bottom: -0.09em; }
.hero-line-mid { display: flex; align-items: center; justify-content: center; gap: clamp(0.8rem, 3vw, 2rem); }
.hw { display: inline-block; }
.hw-italic { font-style: italic; color: var(--azul); font-size: 0.62em; }
.hw-outline {
  color: transparent;
  -webkit-text-stroke: 3px var(--amarelo);
  text-stroke: 3px var(--amarelo);
}
.hero-bolt { width: clamp(46px, 6.5vw, 96px); height: auto; filter: drop-shadow(4px 6px 0 rgba(175,52,49,0.55)); }

.hero-sub {
  max-width: 60ch; margin: 2.2rem auto 0; color: var(--branco-dim);
  font-size: clamp(1rem, 1.5vw, 1.18rem); font-weight: 500;
}
.hero-ctas { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; margin-top: 2.4rem; }
.hero-note {
  margin-top: 1.6rem; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.24em; color: var(--vermelho); text-transform: uppercase;
}
.hero-note { animation: rec-blink 1.6s steps(2) infinite; }
@keyframes rec-blink { 50% { opacity: 0.45; } }

.hero-marquee { margin-top: auto; padding-block: 1.1rem; border-top: 3px solid var(--branco); border-bottom: 3px solid var(--branco); background: var(--vermelho); }

/* ═══════════ MARQUEES ═══════════ */
.marquee { overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; will-change: transform; backface-visibility: hidden; }
.marquee-track > span {
  display: inline-flex; align-items: center;
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.1rem, 2.4vw, 1.8rem); letter-spacing: 0.06em;
  padding-right: 0.5em; color: var(--branco);
}
.mq-bolt { font-style: normal; color: var(--amarelo); padding-inline: 0.55em; font-size: 0.8em; }

/* ═══════════ MANIFESTO ═══════════ */
.manifesto { background: var(--branco); color: var(--preto); padding: clamp(5rem, 11vw, 9rem) 0; position: relative; }
.manifesto-title {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.4rem, 7vw, 6rem); line-height: 0.95; letter-spacing: -0.01em;
  margin-bottom: 2.8rem;
}
.mline { display: block; }
.mline-red { color: var(--vermelho); }
.manifesto-title em { font-style: italic; color: var(--azul); }
.manifesto-body {
  font-size: clamp(1.25rem, 2.4vw, 1.9rem); font-weight: 700; line-height: 1.45;
  max-width: 32ch;
}
.manifesto-body .w { opacity: 0.14; transition: opacity 0.3s linear; }
.manifesto-body .w.on { opacity: 1; }
.manifesto-visual { margin-top: 3.5rem; display: flex; justify-content: flex-end; }
.manifesto-img { position: relative; width: min(640px, 100%); transform: rotate(1.2deg); }
.manifesto-img img { border: 4px solid var(--preto); box-shadow: 10px 10px 0 var(--preto); }
.manifesto-img figcaption { position: absolute; left: -1.2rem; bottom: 1.6rem; }

/* ═══════════ ERROS · WIN95 ═══════════ */
.erros {
  background:
    radial-gradient(ellipse 70% 50% at 15% 0%, rgba(49,137,175,0.5), transparent 65%),
    linear-gradient(165deg, #1a5b75, var(--azul) 55%, #23708f);
  color: var(--branco); padding: clamp(5rem, 11vw, 9rem) 0;
  position: relative; overflow: hidden;
}
.erros::before {
  content: ''; position: absolute; inset: 0; opacity: 0.14; pointer-events: none;
  background-image: radial-gradient(rgba(220,219,205,0.7) 1px, transparent 1.4px);
  background-size: 26px 26px;
}
.erros-title {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 5rem); line-height: 0.98; margin-bottom: 3.4rem;
  text-shadow: 4px 4px 0 rgba(8,15,15,0.35);
}
.erros-desktop {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.4rem, 3vw, 2.4rem); position: relative; z-index: 2;
}
.win95 {
  background: #d8d5c8; color: var(--preto);
  border: 2px solid var(--preto);
  box-shadow: inset 2px 2px 0 #fdfcf5, inset -2px -2px 0 #8b897e, 8px 8px 0 rgba(8,15,15,0.45);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.25s var(--ease-out);
}
@media (hover: hover) { .win95:hover { transform: rotate(0deg) translateY(-4px); } }
.win95-bar {
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(90deg, var(--preto), #26403f);
  color: var(--branco); padding: 0.42rem 0.7rem;
}
.win95-title { font-size: 0.72rem; font-weight: 900; letter-spacing: 0.12em; }
.win95-btns { display: flex; gap: 0.3rem; }
.win95-btns i {
  font-style: normal; width: 18px; height: 18px; font-size: 0.62rem;
  display: grid; place-items: center;
  background: #d8d5c8; color: var(--preto);
  border: 1px solid var(--preto);
  box-shadow: inset 1px 1px 0 #fdfcf5;
}
.win95-x { background: var(--vermelho) !important; color: var(--branco) !important; }
.win95-body { display: flex; gap: 1rem; padding: 1.3rem 1.2rem 0.9rem; align-items: flex-start; }
.win95-icon {
  flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--amarelo); border: 2px solid var(--preto); font-size: 1.5rem;
  border-radius: 50%; box-shadow: 2px 2px 0 rgba(8,15,15,0.5);
}
.win95-body p { font-size: 0.98rem; font-weight: 500; line-height: 1.5; }
.win95-actions { display: flex; gap: 0.8rem; padding: 0.6rem 1.2rem 1.2rem; justify-content: flex-end; }
.win95-btn {
  font-family: var(--body); font-size: 0.78rem; font-weight: 700; cursor: pointer;
  background: #d8d5c8; border: 2px solid var(--preto); padding: 0.42rem 1.1rem;
  box-shadow: inset 1px 1px 0 #fdfcf5, 2px 2px 0 rgba(8,15,15,0.5);
  text-decoration: none; color: var(--preto);
}
.win95-btn:active { box-shadow: inset 1px 1px 0 #8b897e; transform: translate(1px, 1px); }
.win95-btn-primary { background: var(--amarelo); font-weight: 900; }
.win95.shake { animation: win-shake 0.4s linear; }
@keyframes win-shake {
  0%, 100% { transform: rotate(var(--rot)) translateX(0); }
  25% { transform: rotate(var(--rot)) translateX(-7px); }
  50% { transform: rotate(var(--rot)) translateX(6px); }
  75% { transform: rotate(var(--rot)) translateX(-4px); }
}
.erros-note {
  margin-top: 3rem; font-size: clamp(1.05rem, 1.8vw, 1.35rem); font-weight: 500;
  max-width: 52ch; position: relative; z-index: 2;
}

/* ═══════════ TRACKLIST ═══════════ */
.tracklist { background: var(--branco); color: var(--preto); padding: clamp(5rem, 11vw, 9rem) 0; }
.tracklist-title {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.4rem, 6.5vw, 5.6rem); line-height: 0.95;
}
.tracklist-title em { font-style: italic; color: var(--vermelho); }
.tracklist-intro { margin-top: 1.4rem; font-size: 1.15rem; font-weight: 500; max-width: 46ch; color: var(--preto-dim); }

/* cassette */
.cassette { margin: 3.5rem auto 4rem; display: flex; justify-content: center; }
.cassette-shell {
  width: min(560px, 100%); background: var(--preto); color: var(--branco);
  border: 4px solid var(--preto); padding: 1.2rem 1.4rem;
  box-shadow: 10px 10px 0 rgba(8,15,15,0.2);
  transform: rotate(-1deg);
}
.cassette-label {
  display: block; background: var(--amarelo); color: var(--preto);
  font-weight: 900; font-size: 0.8rem; letter-spacing: 0.2em; text-align: center;
  padding: 0.5rem; border: 2px solid var(--preto); margin-bottom: 0.9rem;
  text-transform: uppercase;
}
.cassette-window {
  display: flex; align-items: center; justify-content: space-between;
  background: #131c1b; border: 2px solid rgba(220,219,205,0.35);
  padding: 0.8rem 1.6rem; gap: 1rem;
}
.cassette-wheel {
  width: 58px; height: 58px; border-radius: 50%;
  border: 4px solid var(--branco); display: grid; place-items: center;
  flex: 0 0 auto;
}
.cassette-wheel i {
  width: 26px; height: 26px; border-radius: 50%;
  background: repeating-conic-gradient(var(--branco) 0 20deg, transparent 20deg 60deg);
}
.cassette-tape { flex: 1; height: 10px; background: repeating-linear-gradient(90deg, var(--vermelho) 0 30px, var(--azul) 30px 60px, var(--amarelo) 60px 90px); }
.cassette-side { display: block; margin-top: 0.8rem; font-size: 0.68rem; letter-spacing: 0.3em; color: var(--branco-dim); text-align: center; font-weight: 700; }

.sides { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(2rem, 5vw, 4.5rem); }
.side-title {
  font-family: var(--display); font-weight: 800; font-size: 1.3rem;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 1.6rem;
  display: flex; align-items: center; gap: 0.9rem;
}
.side-badge {
  font-size: 0.72rem; letter-spacing: 0.18em; padding: 0.3rem 0.7rem;
  border: 2px solid var(--preto); box-shadow: 3px 3px 0 var(--preto);
  font-family: var(--body); font-weight: 900;
}
.side-badge-red { background: var(--vermelho); color: var(--branco); }
.side-badge-blue { background: var(--azul); color: var(--branco); }
.side-badge-yellow { background: var(--amarelo); color: var(--preto); }

.tracks { list-style: none; }
.track {
  display: flex; gap: 1.3rem; align-items: baseline;
  padding: 1.35rem 0.6rem; border-top: 2px solid var(--preto);
  transition: background 0.2s var(--ease-out);
  cursor: default;
}
.tracks .track:last-child { border-bottom: 2px solid var(--preto); }
/* só transform + opacity: o conteúdo desliza, o layout não mexe */
.track > * { transition: transform 0.22s var(--ease-out); }
@media (hover: hover) {
  .track:hover { background: rgba(8,15,15,0.05); }
  .track:hover > * { transform: translateX(10px); }
  .track:hover .track-time { transform: translateX(-4px); }
}
.track-num { font-family: var(--display); font-weight: 800; font-size: 1.5rem; flex: 0 0 2.4rem; }
.track-info h4 {
  font-family: var(--display); font-weight: 800; font-size: 1.25rem;
  text-transform: uppercase; letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap;
}
.track-free {
  font-family: var(--body); font-size: 0.62rem; font-weight: 900;
  background: var(--vermelho); color: var(--branco); letter-spacing: 0.18em;
  padding: 0.22rem 0.55rem; transform: rotate(-2deg);
}
.track-info p { margin-top: 0.35rem; font-size: 0.95rem; color: var(--preto-dim); max-width: 44ch; }
.track-time { margin-left: auto; font-weight: 900; font-size: 0.8rem; letter-spacing: 0.14em; color: var(--preto-dim); flex: 0 0 auto; }

.bonus { margin-top: 4rem; }
.bonus-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.2rem; }
.bonus-track {
  border: 3px solid var(--preto); padding: 1.4rem 1.3rem;
  background: var(--branco); box-shadow: 5px 5px 0 var(--preto);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
@media (hover: hover) { .bonus-track:hover { transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--preto); } }
.bonus-track h4 { font-family: var(--display); font-weight: 800; text-transform: uppercase; font-size: 1.05rem; margin-bottom: 0.5rem; }
.bonus-track p { font-size: 0.9rem; color: var(--preto-dim); }

.tracklist-rule { margin-top: 3.4rem; font-size: 1.1rem; font-weight: 700; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; }

/* ═══════════ TRABALHO ═══════════ */
.trabalho { background: var(--preto); padding: clamp(5rem, 11vw, 9rem) 0 clamp(4rem, 8vw, 7rem); }
.trabalho-title {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.4rem, 6.5vw, 5.6rem); line-height: 0.95;
}
.trabalho-title em { font-style: italic; color: var(--amarelo); }
.trabalho-intro { margin-top: 1.4rem; color: var(--branco-dim); font-size: 1.1rem; max-width: 50ch; }

.clients-marquee {
  margin: 3.4rem 0; padding-block: 1.8rem;
  border-top: 3px solid var(--branco); border-bottom: 3px solid var(--branco);
}
.client-logos { display: inline-flex; align-items: center; gap: clamp(3rem, 6vw, 5.5rem); padding-right: clamp(3rem, 6vw, 5.5rem); }
.client-logos img { height: 46px; width: auto; filter: brightness(0) invert(0.92) sepia(0.08); opacity: 0.85; transition: opacity 0.2s; }
.client-logos img:hover { opacity: 1; }

.cases { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(1.6rem, 3.5vw, 2.8rem); margin-top: 1rem; }
.case {
  position: relative; text-decoration: none; transform: rotate(var(--rot, 0deg));
  transition: transform 0.3s var(--ease-out);
  border: 4px solid var(--branco); box-shadow: 8px 8px 0 rgba(220,219,205,0.22);
  overflow: hidden;
}
@media (hover: hover) { .case:hover { transform: rotate(0deg) scale(1.02); } }
.case img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.case-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(8,15,15,0.92) 45%);
  padding: 2.4rem 1.1rem 1rem; display: flex; justify-content: space-between; align-items: baseline; gap: 0.6rem;
}
.case-label b { font-size: 0.8rem; letter-spacing: 0.14em; font-weight: 900; }
.case-label i { font-style: normal; font-size: 0.7rem; color: var(--amarelo); font-weight: 700; letter-spacing: 0.08em; white-space: nowrap; }
.trabalho-cta { margin-top: 3rem; text-align: center; }

/* ═══════════ PROCESSO ═══════════ */
.processo { background: var(--amarelo); color: var(--preto); padding: clamp(5rem, 11vw, 9rem) 0; }
.processo .section-tag { color: var(--preto); }
.processo-title {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 5rem); line-height: 0.96; margin-bottom: 3.4rem;
}
.processo-title em { font-style: italic; color: var(--vermelho); }
.steps { list-style: none; display: grid; gap: 0; }
.step {
  border-top: 3px solid var(--preto); padding: 1.8rem 0.4rem;
  display: grid; grid-template-columns: minmax(200px, 320px) 1fr; gap: 0.6rem 2.5rem; align-items: center;
}
.steps .step:last-child { border-bottom: 3px solid var(--preto); }
.step-bar { grid-column: 1 / -1; height: 14px; border: 2px solid var(--preto); padding: 2px; margin-bottom: 0.7rem; background: rgba(220,219,205,0.4); }
.step-bar span { display: block; height: 100%; width: var(--fill, 0%); background: repeating-linear-gradient(90deg, var(--preto) 0 10px, transparent 10px 13px); transform-origin: left; }
.step h3 {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.15rem, 2vw, 1.5rem); display: flex; gap: 0.9rem; align-items: baseline;
}
.step-num { font-size: 0.85em; color: var(--vermelho); }
.step p { font-size: 0.98rem; font-weight: 500; max-width: 58ch; }

/* ═══════════ EQUIPA ═══════════ */
.equipa { background: var(--branco); color: var(--preto); padding: clamp(5rem, 11vw, 9rem) 0; }
.equipa-title {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.4rem, 6.5vw, 5.6rem); line-height: 0.95; margin-bottom: 3rem;
}
.equipa-title em { font-style: italic; color: var(--azul); }
.equipa-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.equipa-photo { position: relative; transform: rotate(var(--rot, 0deg)); }
.equipa-photo img { border: 4px solid var(--preto); box-shadow: 10px 10px 0 var(--preto); }
.equipa-photo figcaption { position: absolute; right: -0.8rem; top: 1.6rem; }
.equipa-copy p { font-size: 1.1rem; font-weight: 500; margin-bottom: 1.2rem; max-width: 56ch; }
.socios { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; margin-top: 2.2rem; }
.socio {
  background: #fdfcf5; border: 3px solid var(--preto); padding: 0.9rem 0.9rem 1.2rem;
  box-shadow: 6px 6px 0 var(--preto); transform: rotate(var(--rot, 0deg));
  transition: transform 0.25s var(--ease-out);
}
@media (hover: hover) { .socio:hover { transform: rotate(0deg) translateY(-4px); } }
.socio img { aspect-ratio: 1; object-fit: cover; border: 2px solid var(--preto); margin-bottom: 0.9rem; filter: saturate(0.92); }
.socio h3 { font-family: var(--display); font-weight: 800; font-size: 1.15rem; text-transform: uppercase; }
.socio-role { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--vermelho); margin-top: 0.2rem; }
.socio-links { margin-top: 0.6rem; font-size: 0.85rem; font-weight: 700; }
.socio-links a { color: var(--azul); }

/* ═══════════ FIT ═══════════ */
.fit { background: var(--preto); padding: clamp(5rem, 11vw, 9rem) 0; }
.fit-title {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 5rem); line-height: 0.96; margin-bottom: 3.2rem;
}
.fit-title em { font-style: italic; color: var(--amarelo); }
.fit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(1.6rem, 3.5vw, 2.8rem); }
.fit-panel { border: 3px solid var(--branco); padding: 2.2rem 1.9rem; }
.fit-yes { background: rgba(49,137,175,0.14); box-shadow: 8px 8px 0 var(--azul); }
.fit-no { background: rgba(175,52,49,0.12); box-shadow: 8px 8px 0 var(--vermelho); }
.fit-panel h3 {
  font-family: var(--display); font-weight: 800; font-size: 1.2rem;
  letter-spacing: 0.05em; display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.4rem;
}
.fit-icon {
  width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto;
  background: var(--azul); border: 2px solid var(--branco); font-size: 1.1rem; font-family: var(--body);
}
.fit-icon-x { background: var(--vermelho); }
.fit-panel ul { list-style: none; display: grid; gap: 0.85rem; }
.fit-panel li { padding-left: 1.4rem; position: relative; font-weight: 500; color: var(--branco-dim); }
.fit-panel li::before { content: '▸'; position: absolute; left: 0; color: var(--amarelo); }
.fit-no li::before { color: var(--vermelho); }
.fit-panel .btn { margin-top: 1.8rem; }
.fit-gameover { margin-top: 1.9rem; font-size: 0.8rem; font-weight: 900; letter-spacing: 0.26em; color: var(--vermelho); text-transform: uppercase; }

/* ═══════════ ARCADE CTA ═══════════ */
.arcade {
  background:
    radial-gradient(ellipse 75% 65% at 50% 115%, rgba(221,166,29,0.22), transparent 65%),
    radial-gradient(ellipse 55% 40% at 12% -5%, rgba(175,52,49,0.25), transparent 70%),
    var(--preto);
  padding: clamp(6rem, 13vw, 11rem) 0;
  text-align: center; position: relative; overflow: hidden;
}
.arcade-insert {
  font-size: 0.95rem; font-weight: 900; letter-spacing: 0.5em;
  color: var(--amarelo); margin-bottom: 2rem;
  animation: rec-blink 1.1s steps(2) infinite;
}
.arcade-title {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.6rem, 8vw, 7rem); line-height: 0.95;
}
.arcade-title em { font-style: italic; color: var(--amarelo); }
.arcade-sub { max-width: 54ch; margin: 2rem auto 2.8rem; color: var(--branco-dim); font-size: 1.12rem; font-weight: 500; }
.arcade-note { margin-top: 1.6rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--branco-dim); }

/* ═══════════ FOOTER ═══════════ */
.footer { background: var(--preto); border-top: 3px solid var(--branco); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem; padding: clamp(3rem, 6vw, 4.5rem) 0;
}
.footer-logo { width: 120px; }
.footer-tagline { margin-top: 1.2rem; font-weight: 700; font-style: italic; color: var(--branco-dim); }
.footer-col h4 {
  font-family: var(--display); font-weight: 800; text-transform: uppercase;
  font-size: 0.9rem; letter-spacing: 0.14em; margin-bottom: 1rem; color: var(--amarelo);
}
.footer-col p { margin-bottom: 0.5rem; font-size: 0.95rem; }
.footer-col a { text-decoration: none; color: var(--branco-dim); transition: color 0.2s; }
.footer-col a:hover { color: var(--amarelo); }
.footer-bottom {
  width: var(--container); margin-inline: auto;
  border-top: 1px solid rgba(220,219,205,0.2);
  padding: 1.4rem 0 2rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.8rem; color: var(--branco-dim);
}
.footer-eject { letter-spacing: 0.3em; font-weight: 900; }

/* ═══════════ REVEALS (JS hooks) ═══════════ */
.rv { opacity: 0; transform: translateY(46px); }
.rv-on { opacity: 1; transform: none; transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 900px) {
  .equipa-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .step { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 760px) {
  .nav-links, .btn-nav { display: none; }
  .nav-burger {
    display: flex; flex-direction: column; gap: 5px; margin-left: auto;
    background: none; border: none; cursor: pointer; padding: 6px; z-index: 8100;
  }
  .nav-burger span { width: 26px; height: 3px; background: var(--branco); transition: transform 0.3s, opacity 0.3s; }
  .nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .socios { grid-template-columns: 1fr; }
  .manifesto-visual { justify-content: center; }
  .hero-title { font-size: clamp(2.6rem, 13vw, 4.6rem); }
  .hw-outline { -webkit-text-stroke: 2px var(--amarelo); text-stroke: 2px var(--amarelo); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .cases { grid-template-columns: 1fr; }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .rv { opacity: 1; transform: none; }
  .grain { display: none; }
}
