/* ============================================================
   ANDREY GABRIEL — CSS
   Inspirado em greencave.co: espaço generoso, tipografia bold,
   grid visual, animações via GSAP
   ============================================================ */

:root {
  --bg:       #0d0d0d;
  --bg-card:  #141414;
  --bg-hover: #1a1a1a;
  --accent:   #c8f135;
  --white:    #f0f0f0;
  --muted:    #5c5c5c;
  --muted-2:  #909090;
  --border:   rgba(255,255,255,0.07);

  --f-display: 'Syne', sans-serif;
  --f-ui:      'Inter', sans-serif;
  --f-body:    'Inter', sans-serif;

  --nav-h:  68px;
  --max-w:  1320px;
  --gutter: 48px;
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
a       { color: inherit; text-decoration: none; }
img     { display: block; max-width: 100%; }
ul, ol  { list-style: none; }
button  { background: none; border: none; cursor: none; font-family: inherit; }

/* ── Cursor ─────────────────────────────────────────────────── */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
}
.cursor__dot {
  width: 10px; height: 10px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor__ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .4s var(--ease), height .4s var(--ease), border-color .3s;
}
body.is-hovering .cursor__ring {
  width: 64px; height: 64px;
  border-color: rgba(200,241,53,0.6);
}

/* ── Page transition overlay ────────────────────────────────── */
.page-transition {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9990;
  pointer-events: none;
  opacity: 0;
}

/* ── Utilities ──────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 18px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* Word-split animation container */
.word { overflow: hidden; display: inline-block; }
.word__inner { display: inline-block; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid transparent;
  transition: background .22s, color .22s, border-color .22s, transform .2s;
  white-space: nowrap;
  cursor: none;
  position: relative;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--accent);
  color: #0d0d0d;
  border-color: var(--accent);
}
.btn--primary:hover {
  background: transparent;
  color: var(--accent);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.2);
}
.btn--ghost:hover { border-color: rgba(255,255,255,.5); }

.btn--outline {
  background: transparent;
  color: var(--muted-2);
  border-color: var(--border);
}
.btn--outline:hover { color: var(--white); border-color: rgba(255,255,255,.3); }

.btn--sm  { padding: 10px 20px; font-size: 11px; }
.btn--lg  { padding: 17px 36px; font-size: 13px; }

/* ── Tags ───────────────────────────────────────────────────── */
.tag {
  font-family: var(--f-ui);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid currentColor;
  display: inline-flex;
}
.tag--matchday { color: var(--accent); }
.tag--campaign { color: #60a5fa; }
.tag--motion   { color: #f472b6; }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s, backdrop-filter .35s;
}
.nav.is-scrolled {
  background: rgba(13,13,13,.9);
  border-color: var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo {
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: .04em;
  margin-right: auto;
  line-height: 1;
}
.nav__logo-dot { color: var(--accent); }
.nav__links { display: flex; gap: 28px; }
.nav__link {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
  transition: color .2s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .28s var(--ease);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--white);
  transform-origin: center;
  transition: transform .3s, opacity .3s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 36px var(--gutter);
  flex-direction: column;
  gap: 28px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s var(--ease), opacity .25s;
  z-index: 999;
}
.nav__mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav__mobile-link {
  font-family: var(--f-display);
  font-size: 36px;
  letter-spacing: .04em;
  transition: color .2s;
}
.nav__mobile-link:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Grid sutil no fundo */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Glow sutil */
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,241,53,.06) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 80px var(--gutter) 120px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0; /* animado pelo JS */
}
.hero__label {
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__label::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--accent);
}
.hero__location {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero__headline-wrap { overflow: hidden; }
.hero__headline {
  font-family: var(--f-display);
  font-size: clamp(72px, 11vw, 152px);
  line-height: .88;
  letter-spacing: .01em;
  text-transform: uppercase;
}
/* Palavras individuais ficam hidden até JS rodar */
.hero__headline .word__inner { transform: translateY(110%); }

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0; /* animado pelo JS */
}
.hero__desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted-2);
  max-width: 360px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero__scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0; /* animado pelo JS */
}
.hero__scroll-line {
  width: 1px; height: 0;
  background: rgba(255,255,255,.2);
  margin: 0 auto;
  animation: scrollGrow 2s var(--ease) infinite;
}
@keyframes scrollGrow {
  0%   { height: 0; opacity: 0; }
  30%  { opacity: 1; }
  100% { height: 56px; opacity: 0; }
}

/* ══════════════════════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════════════════════ */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  background: var(--bg-card);
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee__item {
  font-family: var(--f-ui);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  transition: color .2s;
}
.marquee__item:hover { color: var(--white); }
.marquee__dot { color: var(--accent); font-size: 8px; }

/* ══════════════════════════════════════════════════════════════
   WORKS — grid de projetos
══════════════════════════════════════════════════════════════ */
.works {
  padding: 120px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}

.works__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.works__header-left { display: flex; flex-direction: column; gap: 16px; }
.works__header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.works__title {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: .9;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.works__title .word__inner { transform: translateY(110%); }

.works__filters { display: flex; gap: 4px; }
.filter-btn {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 7px 14px;
  border: 1px solid transparent;
  transition: all .2s;
}
.filter-btn:hover, .filter-btn.is-active {
  color: var(--accent);
  border-color: rgba(200,241,53,.2);
}

/* Grid masonry-style: 2 cols, alguns wide */
.works__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.work-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.work-card--wide {
  grid-column: 1 / -1;
}
.work-card.is-hidden { display: none; }

.work-card__link {
  display: block;
  position: relative;
  overflow: hidden;
}

.work-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.work-card--wide .work-card__media {
  aspect-ratio: 21/9;
}

.work-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .75s var(--ease), filter .5s;
  filter: brightness(.85) grayscale(10%);
}
.work-card:hover .work-card__img {
  transform: scale(1.06);
  filter: brightness(1) grayscale(0%);
}

.work-card__placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #161616 0%, #1e1e1e 100%);
  position: relative;
}
.work-card__placeholder::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(200,241,53,.04) 100%);
}

.work-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(13,13,13,.95) 0%,
    rgba(13,13,13,.2)  60%,
    transparent        100%);
  transition: opacity .4s;
}
.work-card:hover .work-card__overlay {
  background: linear-gradient(to top,
    rgba(13,13,13,.98) 0%,
    rgba(13,13,13,.35) 60%,
    transparent        100%);
}

.work-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.work-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(4px);
  opacity: .8;
  transition: opacity .3s, transform .3s;
}
.work-card:hover .work-card__meta { opacity: 1; transform: translateY(0); }

.work-card__year {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--muted-2);
}

.work-card__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.work-card__title {
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 36px);
  line-height: .95;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: color .25s;
}
.work-card:hover .work-card__title { color: var(--accent); }

.work-card__arrow {
  color: var(--accent);
  opacity: 0;
  transform: translate(-6px, 6px) rotate(0deg);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  flex-shrink: 0;
}
.work-card:hover .work-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.work-card__client {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Clip-path reveal (JS adiciona) */
.work-card .clip-reveal {
  clip-path: inset(100% 0 0 0);
  transition: clip-path .9s var(--ease);
}
.work-card.is-visible .clip-reveal {
  clip-path: inset(0% 0 0 0);
}

/* ══════════════════════════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════════════════════════ */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
  padding: 64px var(--gutter);
}
.stats-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  flex-wrap: wrap;
}
.stats-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.stats-strip__num {
  font-family: var(--f-display);
  font-size: clamp(52px, 7vw, 80px);
  line-height: 1;
  color: var(--white);
  display: inline-block;
}
.stats-strip__suffix {
  font-family: var(--f-display);
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-left: 2px;
}
.stats-strip__label {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.stats-strip__divider {
  width: 1px;
  height: 64px;
  background: var(--border);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════ */
.about {
  padding: 120px var(--gutter);
  border-bottom: 1px solid var(--border);
}
.about__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about__left { display: flex; flex-direction: column; gap: 32px; }

.about__name {
  font-family: var(--f-display);
  font-size: clamp(64px, 9vw, 120px);
  line-height: .88;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.about__name .word__inner { transform: translateY(110%); }

.about__bio {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
  max-width: 440px;
}
.about__cta { margin-top: 8px; }

.about__right { display: flex; flex-direction: column; gap: 40px; padding-top: 16px; }

/* Photo */
.about__photo { position: relative; }
.about__photo-inner {
  aspect-ratio: 4/5;
  max-width: 340px;
  overflow: hidden;
  border: 1px solid var(--border);
  clip-path: inset(100% 0 0 0);
  transition: clip-path 1s var(--ease);
  position: relative;
}
.about__photo-inner::before {
  content: '';
  position: absolute;
  top: 14px; left: 14px;
  width: 28px; height: 28px;
  border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
  z-index: 2;
}
.about__photo.is-visible .about__photo-inner {
  clip-path: inset(0% 0 0 0);
}
.about__photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--bg-hover), var(--bg));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 96px;
  color: rgba(255,255,255,.04);
  letter-spacing: .1em;
}
.about__photo-inner img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: filter .5s;
}
.about__photo-inner:hover img { filter: grayscale(0%); }

/* Skills */
.about__skills { display: flex; flex-direction: column; gap: 18px; }
.skill__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.skill__label {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.skill__val {
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--white);
}
.skill__track {
  height: 2px;
  background: rgba(255,255,255,.07);
  position: relative;
  overflow: visible;
}
.skill__fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  position: relative;
  transition: width 1.1s var(--ease);
}
.skill__fill::after {
  content: '';
  position: absolute;
  right: -1px; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* Brands */
.about__brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.brand-chip {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
  border: 1px solid var(--border);
  padding: 6px 14px;
  transition: color .2s, border-color .2s;
}
.brand-chip:hover { color: var(--accent); border-color: rgba(200,241,53,.25); }

/* ══════════════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════════════ */
.cta-section {
  padding: 140px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(200,241,53,.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.cta-section .eyebrow { margin-bottom: -16px; }

.cta-section__title {
  font-family: var(--f-display);
  font-size: clamp(56px, 9vw, 128px);
  line-height: .88;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.cta-section__title .word__inner { transform: translateY(110%); }

.cta-section__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.cta-section__info {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--f-ui);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--muted);
}
.cta-section__link { transition: color .2s; }
.cta-section__link:hover { color: var(--accent); }
.cta-section__sep { color: var(--muted); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px var(--gutter);
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}
.footer__logo {
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: .04em;
}
.footer__logo span { color: var(--accent); }
.footer__tagline {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.footer__links, .footer__social { display: flex; gap: 20px; }
.footer__links a, .footer__social a {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .2s;
}
.footer__links a:hover, .footer__social a:hover { color: var(--accent); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════
   CASE STUDY (single-projeto.php)
══════════════════════════════════════════════════════════════ */
.case__hero {
  position: relative;
  height: 80vh; min-height: 520px;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.case__hero-img, .case__hero-placeholder {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.case__hero-placeholder { background: var(--bg-hover); }
.case__hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,.96) 0%, rgba(13,13,13,.2) 55%, transparent 100%);
}
.case__hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
  padding: 48px var(--gutter);
}
.case__breadcrumb {
  font-family: var(--f-ui); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
  display: flex; gap: 10px; margin-bottom: 14px;
}
.case__breadcrumb a:hover { color: var(--accent); }
.case__meta-top { display: flex; gap: 12px; align-items: center; margin-bottom: 10px; }
.case__year { font-family: var(--f-ui); font-size: 10px; letter-spacing: .1em; color: var(--muted); }
.case__title {
  font-family: var(--f-display);
  font-size: clamp(36px, 6vw, 80px);
  line-height: .9; letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.case__client { font-family: var(--f-ui); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.case__body { max-width: var(--max-w); margin: 0 auto; padding: 80px var(--gutter); }
.case__info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  margin-bottom: 72px; padding-bottom: 72px; border-bottom: 1px solid var(--border);
}
.case__context-text { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.6); margin-top: 14px; }
.case__context-text p { margin-bottom: 14px; }
.case__role-list { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.case__role-list li {
  font-family: var(--f-ui); font-size: 12px; letter-spacing: .06em;
  color: rgba(255,255,255,.6); padding-left: 18px; position: relative;
}
.case__role-list li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 1px; background: var(--accent);
}
.case__results { margin-bottom: 72px; padding-bottom: 72px; border-bottom: 1px solid var(--border); }
.case__results > .eyebrow { margin-bottom: 28px; display: block; }
.case__results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.case__result-item { padding: 32px; background: var(--bg-card); display: flex; flex-direction: column; gap: 8px; }
.case__result-num { font-family: var(--f-display); font-size: clamp(36px,4.5vw,56px); line-height: 1; color: var(--accent); }
.case__result-label { font-family: var(--f-ui); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.case__gallery { margin-bottom: 72px; }
.case__gallery > .eyebrow { margin-bottom: 20px; display: block; }
.case__gallery-img { width: 100%; height: auto; border: 1px solid var(--border); }
.case__nav { border-top: 1px solid var(--border); background: var(--bg-card); }
.case__nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 28px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.case__nav-back {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--f-ui); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); transition: color .2s;
}
.case__nav-back:hover { color: var(--accent); }
.case__nav-siblings { display: flex; gap: 40px; }
.case__nav-link { display: flex; flex-direction: column; gap: 4px; transition: color .2s; }
.case__nav-link:hover { color: var(--accent); }
.case__nav-dir { font-family: var(--f-ui); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.case__nav-title { font-family: var(--f-display); font-size: 18px; letter-spacing: .04em; text-transform: uppercase; }
.case__nav-link--next { text-align: right; }

/* ══════════════════════════════════════════════════════════════
   PROJ GALLERY — grade dentro do case study
══════════════════════════════════════════════════════════════ */
.proj-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.proj-gallery__item {
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
}
.proj-gallery__item--wide {
  grid-column: 1 / -1;
  aspect-ratio: 21/9;
}
.proj-gallery__btn {
  width: 100%; height: 100%;
  background: none; border: none;
  padding: 0; cursor: zoom-in;
  display: block; position: relative;
}
.proj-gallery__img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease), filter .4s;
  filter: grayscale(10%);
}
.proj-gallery__item:hover .proj-gallery__img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.proj-gallery__hover {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.38);
  color: var(--accent);
  opacity: 0;
  transition: opacity .3s;
}
.proj-gallery__item:hover .proj-gallery__hover { opacity: 1; }

/* ══════════════════════════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0;
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  visibility: hidden;
  pointer-events: none;
}
.lightbox.is-open {
  visibility: visible;
  pointer-events: auto;
}
.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(5,5,5,.93);
  opacity: 0;
  transition: opacity .35s;
  cursor: zoom-out;
}
.lightbox.is-open .lightbox__backdrop { opacity: 1; }
.lightbox__inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 20px;
  max-width: calc(100vw - 80px);
  max-height: 100vh;
}
.lightbox__img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
  border: 1px solid var(--border);
  opacity: 0;
  transform: scale(.96);
  transition: opacity .3s .05s, transform .35s var(--ease);
}
.lightbox.is-open .lightbox__img {
  opacity: 1;
  transform: scale(1);
}
.lightbox__close {
  position: fixed; top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, color .2s;
  z-index: 2;
}
.lightbox__close:hover { background: var(--accent); color: var(--bg); }
.lightbox__nav {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 48px; height: 48px;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.lightbox__nav:hover { background: var(--accent); color: var(--bg); }
.lightbox__nav:disabled { opacity: .25; pointer-events: none; }
.lightbox__counter {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--f-ui); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════
   GRAIN OVERLAY — subtle film noise (fixed, full-page)
══════════════════════════════════════════════════════════════ */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 7000;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ══════════════════════════════════════════════════════════════
   CINEMATIC HERO
══════════════════════════════════════════════════════════════ */
.cine-hero {
  position: relative;
  height: 100svh; min-height: 620px;
  display: flex; flex-direction: column;
  justify-content: flex-end; align-items: flex-start;
  overflow: hidden;
  background: #030304;
}

/* Video background */
.cine-hero__vid-wrap {
  position: absolute; inset: 0;
  overflow: hidden; z-index: 0;
}
.cine-hero__vid {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(.2) contrast(1.1) saturate(.5);
}

/* Atmosphere overlays */
.cine-hero__atm { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

/* Dramatic stadium lights from top */
.cine-hero__light {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 68% -5%,  rgba(255,190,60,.13) 0%, transparent 55%),
    radial-gradient(ellipse 25% 45% at 28% -8%,  rgba(180,215,255,.07) 0%, transparent 50%),
    radial-gradient(ellipse 15% 30% at 85% 10%,  rgba(255,210,80,.06) 0%, transparent 40%);
}

/* Heavy bottom fog — text emerges from darkness */
.cine-hero__fog {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(3,3,4,1) 0%, rgba(3,3,4,.75) 20%, rgba(3,3,4,.2) 55%, transparent 100%),
    linear-gradient(to bottom, rgba(3,3,4,.7) 0%, transparent 22%);
}

/* Strong radial + edge vignette */
.cine-hero__vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 50%, transparent 15%, rgba(3,3,4,.92) 100%),
    linear-gradient(to right, rgba(3,3,4,.6) 0%, transparent 30%, transparent 70%, rgba(3,3,4,.45) 100%);
}

/* Film frame corners */
.cine-corner {
  position: absolute; z-index: 4;
  width: 22px; height: 22px;
  opacity: .35;
}
.cine-corner--tl { top: 28px;  left: 28px;  border-top: 1px solid #fff; border-left: 1px solid #fff; }
.cine-corner--tr { top: 28px;  right: 28px; border-top: 1px solid #fff; border-right: 1px solid #fff; }
.cine-corner--bl { bottom: 28px; left: 28px;  border-bottom: 1px solid #fff; border-left: 1px solid #fff; }
.cine-corner--br { bottom: 28px; right: 28px; border-bottom: 1px solid #fff; border-right: 1px solid #fff; }

/* Minimal top bar */
.cine-hero__topbar {
  position: absolute; top: 32px;
  left: calc(var(--gutter) + 0px); right: calc(var(--gutter) + 0px);
  z-index: 3;
  display: flex; justify-content: space-between;
  font-family: var(--f-ui); font-size: 9px;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.22);
  opacity: 0; /* GSAP */
}

/* Side labels — film frame feel */
.cine-hero__side {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column;
  gap: 10px; align-items: center;
  font-family: var(--f-ui);
  font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(240,240,236,.25);
  writing-mode: vertical-rl;
  z-index: 2;
}
.cine-hero__side--l { left: 28px; }
.cine-hero__side--r { right: 28px; transform: translateY(-50%) rotate(180deg); }

/* Content — bottom left, minimal */
.cine-hero__content {
  position: relative; z-index: 2;
  padding: 0 var(--gutter) 80px;
  width: 100%;
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 10px;
}

/* Thin accent rule that animates width */
.cine-hero__rule {
  width: 0; height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
  margin-bottom: 6px;
}

.cine-hero__title { line-height: 1; }

.cine-word {
  font-family: var(--f-display);
  font-size: clamp(44px, 6.5vw, 96px);
  font-weight: 500;
  line-height: 1; letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
  display: block;
  opacity: 0; /* GSAP */
}

/* Role — subtle, below name */
.cine-hero__role {
  font-family: var(--f-ui);
  font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  opacity: 0; /* GSAP */
}

/* Scroll cue — bottom right */
.cine-hero__scroll {
  position: absolute; bottom: 40px; right: var(--gutter);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; /* GSAP */
}
.cine-hero__scroll-bar {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(200,241,53,.6));
  animation: scrollBarPulse 2s ease-in-out infinite;
}
@keyframes scrollBarPulse {
  0%,100% { opacity: .4; transform: scaleY(1); }
  50%      { opacity: 1;  transform: scaleY(.7); }
}
.cine-hero__scroll-label {
  font-family: var(--f-ui); font-size: 8px; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(240,240,236,.3);
  writing-mode: vertical-rl;
}

/* ══════════════════════════════════════════════════════════════
   CINE TICKER
══════════════════════════════════════════════════════════════ */
.cine-ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
  padding: 14px 0;
  background: rgba(255,255,255,.015);
}
.cine-ticker__track {
  display: flex; width: max-content;
  animation: cineTicker 30s linear infinite;
}
.cine-ticker__item {
  font-family: var(--f-ui);
  font-size: 9px; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(240,240,236,.3);
  white-space: nowrap; padding: 0 8px;
}
.cine-ticker__dot { color: var(--accent); margin: 0 4px; }
@keyframes cineTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ══════════════════════════════════════════════════════════════
   PROJECT SCENES
══════════════════════════════════════════════════════════════ */
.proj-scenes-wrap { position: relative; }

.proj-scenes__filters {
  position: sticky; top: var(--nav-h); z-index: 100;
  padding: 16px var(--gutter) 0;
  display: flex; gap: 8px;
  background: linear-gradient(to bottom, var(--bg) 50%, transparent);
  pointer-events: none;
}
.proj-scenes__filters .filter-btn { pointer-events: auto; }

/* Each scene */
.proj-scene {
  position: relative;
  min-height: 82vh;
  display: grid;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.proj-scene.scene--a { grid-template-columns: 58fr 42fr; }
.proj-scene.scene--b { grid-template-columns: 42fr 58fr; }
.proj-scene.scene--b .proj-scene__visual { order: 2; }
.proj-scene.scene--b .proj-scene__info   { order: 1; }

/* Ghost number */
.proj-scene__num {
  position: absolute;
  font-family: var(--f-display);
  font-size: clamp(140px, 22vw, 320px);
  line-height: 1; letter-spacing: -.03em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none; user-select: none;
  z-index: 0;
}

/* Image column */
.proj-scene__visual {
  position: relative; overflow: hidden; display: block;
  cursor: pointer;
}
.proj-scene__img-wrap {
  position: absolute;
  inset: -8%; /* breathing room for parallax */
}
.proj-scene__img, .proj-scene__img-ph {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: brightness(.78) contrast(1.08);
  transition: filter .8s var(--ease), transform .8s var(--ease);
}
.proj-scene__img-ph { background: #0a0a0d; }
.proj-scene__visual:hover .proj-scene__img {
  filter: brightness(.92) contrast(1.08);
}

/* Fog gradient from image into background (scene--a: fade right, scene--b: fade left) */
.proj-scene__fog {
  position: absolute; inset: 0; pointer-events: none;
}
.scene--a .proj-scene__fog { background: linear-gradient(to right, transparent 55%, var(--bg) 100%); }
.scene--b .proj-scene__fog { background: linear-gradient(to left,  transparent 55%, var(--bg) 100%); }

/* Info column */
.proj-scene__info {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  justify-content: center; gap: 18px;
  padding: 64px var(--gutter);
}
.scene--b .proj-scene__info { padding-right: 48px; }

.proj-scene__meta { display: flex; gap: 12px; align-items: center; }
.proj-scene__year {
  font-family: var(--f-ui); font-size: 10px;
  letter-spacing: .1em; color: var(--muted);
}
.proj-scene__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 56px);
  line-height: .9; letter-spacing: .02em;
  text-transform: uppercase;
}
.proj-scene__client {
  font-family: var(--f-ui); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-2);
}
.proj-scene__link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-ui); font-size: 10px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin-top: 10px;
  transition: gap .35s var(--ease);
  cursor: default;
}
a.proj-scene__visual:focus-visible { outline: 2px solid var(--accent); }

/* The whole card is the link via the visual anchor */
.proj-scene { cursor: default; }
.proj-scene .proj-scene__visual { cursor: pointer; }
.proj-scene:hover .proj-scene__link { gap: 16px; }

/* ══════════════════════════════════════════════════════════════
   ABOUT SCENE
══════════════════════════════════════════════════════════════ */
.about-scene {
  padding: 120px var(--gutter);
  border-top: 1px solid var(--border);
}
.about-scene__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.about-scene__left { display: flex; flex-direction: column; gap: 32px; }
.about-scene__name {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 500;
  line-height: .95; letter-spacing: .05em;
  text-transform: uppercase;
}
.about-scene__name .word__inner { transform: translateY(110%); }
.about-scene__bio {
  font-size: 15px; line-height: 1.8;
  color: rgba(255,255,255,.55);
}
.about-scene__brands { display: flex; flex-direction: column; }
.about-scene__brand-list { display: flex; flex-wrap: wrap; gap: 8px; }

.about-scene__right { display: flex; flex-direction: column; gap: 40px; }
.about-scene__photo-wrap {
  position: relative;
  max-width: 340px;
}
.about-scene__photo-glow {
  position: absolute;
  width: 200px; height: 200px;
  bottom: -40px; right: -40px;
  background: radial-gradient(circle, rgba(200,241,53,.12) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════
   CTA SCENE
══════════════════════════════════════════════════════════════ */
.cta-scene {
  position: relative; overflow: hidden;
  padding: 140px var(--gutter);
  text-align: center;
  border-top: 1px solid var(--border);
}
.cta-scene__glow {
  position: absolute;
  width: 800px; height: 800px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(200,241,53,.06) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.cta-scene__inner {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center; gap: 40px;
}
.cta-scene .eyebrow { margin-bottom: -16px; }
.cta-scene__title {
  font-family: var(--f-display);
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 500;
  line-height: .95; letter-spacing: .04em;
  text-transform: uppercase;
}
.cta-scene__title .word__inner { transform: translateY(110%); }
.cta-scene__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.cta-scene__info {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; justify-content: center;
  font-family: var(--f-ui); font-size: 11px;
  letter-spacing: .1em; color: var(--muted);
}
.cta-scene__link { transition: color .2s; }
.cta-scene__link:hover { color: var(--accent); }

/* ══════════════════════════════════════════════════════════════
   JS REVEAL state inicial (GSAP preenche)
══════════════════════════════════════════════════════════════ */
.js-reveal { opacity: 0; transform: translateY(32px); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */

/* ── Touch: desabilita cursor customizado ─────────────────── */
@media (pointer: coarse) {
  body, .btn        { cursor: auto; }
  button, a, .btn   { cursor: pointer; }
  .cursor, .cursor__ring { display: none !important; }
  /* Desativa efeito hover transform nos botões (não tem mouse) */
  .btn:hover { transform: none; }
}

/* ── Tablet ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --gutter: 32px; }

  .about__inner    { grid-template-columns: 1fr; }
  .works__grid     { grid-template-columns: 1fr; }
  .work-card--wide { grid-column: auto; }

  .about-scene__inner { gap: 48px; }
  .proj-scene__title  { font-size: clamp(24px, 3vw, 52px); }
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --nav-h: 58px; --gutter: 20px; }

  /* Nav */
  .nav__links, .nav__inner > .btn { display: none; }
  .nav__burger  { display: flex; }
  .nav__mobile  { display: flex; }

  /* Hero */
  .cine-hero__side { display: none; }
  .cine-hero__topbar {
    font-size: 8px;
    letter-spacing: .12em;
  }
  .cine-hero__content { padding-bottom: 72px; }
  .cine-word {
    font-size: clamp(32px, 9.5vw, 64px);
    white-space: normal;
    line-height: 1.08;
  }
  .cine-hero__role { font-size: 9px; letter-spacing: .18em; }
  .cine-hero__scroll { bottom: 24px; }
  .cine-hero__scroll-bar { height: 40px; }

  /* Filtros — scroll horizontal sem barra */
  .proj-scenes__filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 12px;
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }
  .proj-scenes__filters::-webkit-scrollbar { display: none; }
  .filter-btn { flex-shrink: 0; }

  /* Project Scenes */
  .proj-scene.scene--a,
  .proj-scene.scene--b { grid-template-columns: 1fr; min-height: auto; }
  .proj-scene.scene--b .proj-scene__visual { order: 0; }
  .proj-scene.scene--b .proj-scene__info   { order: 1; }
  .proj-scene__visual { height: 64vw; min-height: 240px; position: relative; }
  .proj-scene__img-wrap { position: absolute; inset: 0; }
  .scene--a .proj-scene__fog,
  .scene--b .proj-scene__fog {
    background: linear-gradient(to bottom, transparent 50%, var(--bg) 95%);
  }
  .proj-scene__info { padding: 28px var(--gutter) 36px; gap: 12px; }
  .scene--b .proj-scene__info { padding-right: var(--gutter); }
  .proj-scene__title { font-size: clamp(22px, 6.5vw, 44px); }
  .proj-scene__num   { font-size: clamp(90px, 28vw, 200px); }

  /* Stats strip — 2×2 grid */
  .stats-strip { padding: 56px var(--gutter); }
  .stats-strip__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 16px;
    justify-items: center;
  }
  .stats-strip__divider { display: none; }
  .stats-strip__item    { text-align: center; }
  .stats-strip__num     { font-size: clamp(44px, 12vw, 72px); }
  .stats-strip__suffix  { font-size: 28px; }

  /* About */
  .about-scene { padding: 72px var(--gutter); }
  .about-scene__inner  { grid-template-columns: 1fr; gap: 48px; }
  .about-scene__name   { font-size: clamp(40px, 10vw, 72px); }
  .about-scene__right  { align-items: center; }
  .about-scene__photo-wrap { max-width: 260px; margin: 0 auto; }
  .about__photo-inner  { max-width: 100%; }
  .about__skills       { width: 100%; }
  .about-scene__brands { width: 100%; }

  /* CTA Scene */
  .cta-scene { padding: 80px var(--gutter); }
  .cta-scene__inner { gap: 28px; }
  .cta-scene__title {
    font-size: clamp(38px, 10vw, 80px);
    line-height: .95;
  }
  .cta-scene__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 340px;
  }
  .cta-scene__actions .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-scene__info { font-size: 10px; gap: 10px; }

  /* Galeria / case */
  .case__info-grid    { grid-template-columns: 1fr; }
  .case__results-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .proj-gallery       { grid-template-columns: 1fr; }
  .proj-gallery__item--wide { grid-column: auto; aspect-ratio: 16/10; }

  /* Lightbox */
  .lightbox__inner  { gap: 8px; max-width: 100vw; padding: 0 8px; }
  .lightbox__img    { max-width: 96vw; max-height: 80vh; }
  .lightbox__nav    { width: 36px; height: 36px; flex-shrink: 0; }

  /* Legacy */
  .hero__headline  { font-size: clamp(56px, 14vw, 80px); }
  .hero__bottom    { flex-direction: column; align-items: flex-start; }
  .works__header   { flex-direction: column; align-items: flex-start; }
  .works__header-right { flex-direction: column; align-items: flex-start; }
}

/* ── Mobile pequeno ───────────────────────────────────────── */
@media (max-width: 480px) {
  :root { --gutter: 16px; }

  /* Hero */
  .cine-word { font-size: clamp(28px, 9vw, 48px); }
  .cine-hero__content { padding-bottom: 56px; }
  .cine-hero__topbar  { display: none; } /* muito apertado */
  .cine-corner { display: none; }        /* limpa bordas no mobile */

  /* Scenes */
  .proj-scene__visual { height: 72vw; }
  .proj-scene__title  { font-size: clamp(20px, 6vw, 36px); }
  .proj-scene__info   { padding: 24px var(--gutter) 32px; }

  /* Stats */
  .stats-strip__num    { font-size: clamp(40px, 11vw, 64px); }
  .stats-strip__suffix { font-size: 24px; }

  /* About */
  .about-scene { padding: 56px var(--gutter); }
  .about-scene__photo-wrap { max-width: 220px; }

  /* CTA */
  .cta-scene { padding: 64px var(--gutter); }
  .cta-scene__title { font-size: clamp(32px, 9vw, 60px); }

  /* Case */
  .case__results-grid { grid-template-columns: 1fr; }
  .hero__cta, .cta-section__actions { flex-direction: column; align-items: flex-start; }
  .hero__headline { font-size: 13vw; }
}
