/* ============================================================
   R2 ENTRETENIMENTOS — design system (dark / cinematográfico)
   ============================================================ */

:root {
  --bg: #0A0A0A;
  --bg-2: #111111;
  --surface: #1A1A1A;
  --white: #FFFFFF;
  --silver: #CFD4DA;                          /* prata/aço — cor-assinatura (acento) */
  --silver-soft: rgba(207, 212, 218, .12);
  --silver-glow: rgba(207, 212, 218, .30);
  --metal: linear-gradient(180deg, #FFFFFF 0%, #E4E6EA 38%, #9AA0A8 72%, #F2F3F5 100%); /* texto cromado */
  --metal-btn: linear-gradient(180deg, #F4F6F8 0%, #CDD2D8 52%, #A9AFB7 100%);          /* botão escovado */
  --muted: #9A9A9A;
  --border: rgba(255, 255, 255, .08);

  --maxw: 1200px;
  --radius: 14px;
  --ease-cine: cubic-bezier(.16, 1, .3, 1);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
.container-narrow { max-width: 820px; }

/* ---------- tipografia base ---------- */
.kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: .01em;
  text-transform: uppercase;
  /* branco com degradê de cinza — metálico */
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub {
  color: var(--muted);
  max-width: 620px;
  margin-top: 16px;
  font-size: 1.05rem;
}
/* acento metálico — degradê branco→cinza (efeito cromado) */
.metal {
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: .98rem;
  padding: 15px 30px;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--metal-btn);
  color: #0A0A0A;
  box-shadow: 0 6px 28px -8px var(--silver-glow), inset 0 1px 0 rgba(255,255,255,.6);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -8px var(--silver-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .25);
}
.btn-ghost:hover { border-color: var(--silver); color: var(--silver); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset: 16px 0 auto 0;
  z-index: 100;
  transition: top .3s var(--ease);
}
.site-header.scrolled { top: 8px; }
/* barra flutuante arredondada: moldura prata (header-bar) + miolo escuro (header-inner) */
.header-bar {
  width: min(calc(100% - 40px), 1240px);
  margin-inline: auto;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(255,255,255,.22), rgba(255,255,255,.05) 40%, rgba(255,255,255,.14));
  padding: 1px;
  transition: background .3s var(--ease);
}
.header-inner {
  border-radius: 17px;
  background: rgba(14, 14, 14, .72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 24px;
  height: 70px;
  padding: 0 14px 0 26px;
}
.scrolled .header-inner { background: rgba(12, 12, 12, .9); }
.brand { display: flex; align-items: center; }
.brand-logo { height: 48px; width: auto; display: block; }
.brand-mark {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: .04em;
  color: var(--white);
  line-height: 1;
}
.brand-sub {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 30px; margin-inline: auto; }
.nav-links a {
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
  transition: color .2s;
}
.nav-links a:hover { color: #FFFFFF; }

/* ícone Instagram no header (bolinha pequena, perto do Contato) */
.nav-ig {
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 50%;
  color: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.16);
  transition: color .2s, border-color .2s, background .2s;
}
.nav-ig:hover { color: #FFFFFF; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.06); }
.nav-ig svg { width: 19px; height: 19px; }

/* CTA arredondado "Fale conosco" */
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 50px;
  background: var(--metal-btn);
  color: #0A0A0A;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .01em;
  padding: 13px 22px;
  white-space: nowrap;
  transition: filter .25s var(--ease);
}
.header-cta:hover { filter: brightness(1.08); }
.header-cta svg { width: 17px; height: 17px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 2px; background: var(--white);
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   DOBRA 1 — HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  /* grade pra casar com o tema prata/escuro e garantir leitura do texto */
  filter: saturate(.62) contrast(1.05) brightness(.7);
  transform-origin: center;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(72% 56% at 50% 40%, rgba(10,10,10,.5), transparent 72%),
    linear-gradient(180deg, rgba(10,10,10,.5) 0%, rgba(10,10,10,.4) 40%, rgba(10,10,10,.74) 74%, var(--bg) 100%);
}
/* cena de feixes de luz (holofotes) — cores R2 prata/branco frio */
.hero-scene { position: absolute; inset: 0; z-index: 2; overflow: hidden; pointer-events: none; }
.hero-floor {
  position: absolute; left: 50%; bottom: -8%;
  width: 150%; height: 56%;
  transform: translateX(-50%) scale(1);
  background: radial-gradient(ellipse at center bottom, var(--silver-glow), transparent 62%);
  filter: blur(44px);
  opacity: .85;
  animation: floorGlow 7s ease-in-out infinite;
}
.hero-beams { position: absolute; inset: 0; }
.light-beam {
  position: absolute; bottom: 0;
  height: 56vh;
  background: linear-gradient(to top,
    rgba(220,226,233,0) 0%,
    rgba(220,226,233,.45) 38%,
    rgba(255,255,255,.85) 72%,
    rgba(220,226,233,0) 100%);
  filter: blur(.6px);
  opacity: 0;
  will-change: transform, opacity;
  animation-name: beamRise, beamFade;
  animation-timing-function: ease-out, ease-in-out;
  animation-iteration-count: infinite, infinite;
}
@keyframes beamRise {
  0% { transform: translateY(65%); }
  100% { transform: translateY(-65%); }
}
@keyframes beamFade {
  0%, 100% { opacity: 0; }
  12%, 68% { opacity: .68; }
}
@keyframes floorGlow {
  0%, 100% { transform: translateX(-50%) scale(.94); opacity: .62; }
  50% { transform: translateX(-50%) scale(1.08); opacity: .92; }
}
.hero-content {
  position: relative; z-index: 3;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 96px;
}
/* spotlight de palco atrás do slogan — transforma o preto morto em luz */
.hero-content::before {
  content: "";
  position: absolute;
  left: 50%; top: 44%;
  width: min(940px, 96vw); height: min(700px, 74vh);
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(207,212,218,.19), rgba(207,212,218,.06) 44%, transparent 72%);
  z-index: -1; pointer-events: none;
}
/* pill (referência) */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: center;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.9);
  margin-bottom: 24px;
}
.hero-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--silver);
  box-shadow: 0 0 10px var(--silver-glow);
}
.hero-eyebrow {
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  font-weight: 500;
  letter-spacing: .01em;
  color: rgba(255,255,255,.72);
  margin-bottom: 14px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 8.6vw, 4.2rem);
  line-height: 1;
  letter-spacing: .015em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-inline: auto;
  /* metálico cromado + profundidade via drop-shadow (text-shadow não rende em texto clipado) */
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 30px rgba(0,0,0,.55));
}
/* efeito cascade reveal na headline (letra por letra rola no hover) */
.hero-title--cascade {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: var(--white);
  filter: none;
}
.cascade { display: inline; cursor: default; }
.cas-word { display: inline-flex; white-space: nowrap; vertical-align: top; }
.cas-char {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 1em;
  line-height: 1;
  vertical-align: top;
}
.cas-face {
  display: block;
  will-change: transform;
  transition: transform .32s cubic-bezier(.7,0,.2,1);
  transition-delay: calc(var(--i) * 22ms);
  background: var(--metal);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.cas-face--b {
  position: absolute; inset: 0;
  transform: translateY(100%);
  /* face revelada: prata bem claro pra dar o "flash" no destaque */
  background: linear-gradient(180deg, #FFFFFF 0%, #EDEFF2 60%, #C9CDD3 100%);
  -webkit-background-clip: text; background-clip: text;
}
.cascade:hover .cas-face--a { transform: translateY(-100%); }
.cascade:hover .cas-face--b { transform: translateY(0); }

.hero-sub {
  color: rgba(255, 255, 255, .82);
  font-size: clamp(.98rem, 1.3vw, 1.1rem);
  max-width: 520px;
  margin: 24px auto 36px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* faixa de cards chanfrados na base do hero (referência) */
.hero-strip {
  position: relative; z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 36px;
}
.hcard {
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  padding: 1px;
  transition: filter .3s var(--ease);
}
.hcard-in {
  border-radius: calc(var(--radius) - 1px);
  background: rgba(16, 16, 16, .58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-height: 108px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.hcard-num {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: .8;
  background: var(--metal);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hcard-num em { font-style: normal; font-size: 2rem; vertical-align: 12px; }
.hcard-ico { width: 34px; height: 34px; color: var(--silver); flex: 0 0 auto; }
.hcard-label { font-size: .98rem; font-weight: 500; color: rgba(255,255,255,.86); line-height: 1.25; }
.hcard-cta { cursor: pointer; }
.hcard-cta .hcard-in { justify-content: space-between; }
.hcard-cta:hover { filter: brightness(1.15); }
.hcard-arrow {
  width: 46px; height: 46px; flex: 0 0 auto;
  display: grid; place-items: center;
  border: 1px solid var(--silver);
  border-radius: 50%;
  color: var(--silver);
  transition: background .25s var(--ease), color .25s;
}
.hcard-cta:hover .hcard-arrow { background: var(--silver); color: #0A0A0A; }
.hcard-arrow svg { width: 20px; height: 20px; }

/* ============================================================
   SOBRE NÓS
   ============================================================ */
.about { position: relative; overflow: hidden; }
.about-glow {
  position: absolute; inset: -12% 0; z-index: 0;
  will-change: transform;
  background:
    radial-gradient(circle at 12% 18%, var(--silver-soft), transparent 38%),
    radial-gradient(circle at 88% 90%, rgba(207,212,218,.06), transparent 42%);
}
.about-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
}
/* foto da equipe — fixa enquanto o texto rola, com luz nos cantos opostos */
.about-photo {
  position: sticky; top: 110px;
  margin: 0;
  border-radius: var(--radius);
}
.about-photo__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  z-index: 1;
}
.about-photo__frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  filter: grayscale(.2) contrast(1.03) brightness(.95);
  transition: transform .7s var(--ease-cine), filter .5s var(--ease);
}
.about-photo__frame:hover img { transform: scale(1.04); filter: grayscale(0) contrast(1) brightness(1); }
.about-photo__frame figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 22px 18px;
  background: linear-gradient(180deg, transparent, rgba(10,10,10,.85));
  font-size: .92rem; font-weight: 600;
  color: rgba(255,255,255,.92);
}
/* halo difuso de luz vazando pelos cantos superior-esquerdo e inferior-direito */
.about-photo::after {
  content: '';
  position: absolute; inset: -7px; z-index: 0;
  border-radius: calc(var(--radius) + 7px);
  background:
    radial-gradient(circle at 0% 0%, rgba(228,234,244,.6), transparent 26%),
    radial-gradient(circle at 100% 100%, rgba(228,234,244,.5), transparent 26%);
  filter: blur(9px);
  pointer-events: none;
}
/* linha de borda iluminada (clara nos 2 cantos opostos, some no meio) */
.about-photo::before {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  border-radius: var(--radius);
  padding: 1.5px;
  background: linear-gradient(135deg,
    rgba(255,255,255,.95) 0%,
    rgba(255,255,255,0) 24%,
    rgba(255,255,255,0) 76%,
    rgba(255,255,255,.95) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.about-body { margin-top: 30px; }
.about-head .section-title { margin-top: 12px; max-width: 16ch; }
.about-lead {
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(255,255,255,.9);
  font-weight: 500;
  line-height: 1.5;
}
.about-body p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 22px;
}
.about-emphasis {
  margin: 30px 0;
  padding: 4px 0 4px 24px;
  border-left: 2px solid var(--silver);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
}
.about-slogan {
  position: relative; z-index: 1;
  text-align: center;
  margin-top: 70px;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.about-slogan .metal { display: inline-block; }

/* ============================================================
   SEÇÕES GENÉRICAS
   ============================================================ */
.section { position: relative; padding: clamp(70px, 9vw, 130px) 0; }
.section-alt { background: var(--bg-2); }
.section-head { margin-bottom: 56px; max-width: 760px; }

/* ---------- DOBRA 2 — pilares ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px 30px;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: var(--silver);
  box-shadow: 0 20px 50px -25px var(--silver-glow);
}
.pillar-icon {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  margin-bottom: 24px;
  color: var(--silver);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: color .3s var(--ease), border-color .3s;
}
.pillar:hover .pillar-icon { color: #FFFFFF; border-color: rgba(255,255,255,.28); }
.pillar-icon svg { width: 27px; height: 27px; }
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pillar p { color: var(--muted); font-size: 1rem; }

.guarantees {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
  margin-top: 46px;
  padding: 22px;
  background: var(--silver-soft);
  border: 1px solid rgba(207,212,218,.25);
  border-radius: var(--radius);
}
.guarantees li {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 1rem;
}
.g-check {
  display: grid; place-items: center;
  width: 22px; height: 22px;
  background: var(--silver); color: #0A0A0A;
  border-radius: 50%;
  font-size: .8rem; font-weight: 800;
}

/* ---------- DOBRA 3 — serviços (acordeão horizontal expansível) ---------- */
.selector {
  display: flex;
  gap: 12px;
  height: 460px;
}
.sel-item {
  position: relative;
  flex: 1 1 0;
  min-width: 62px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  background-color: var(--surface);
  background-size: cover;
  background-position: center;
  transition: flex .7s var(--ease), border-color .5s var(--ease), background-size .7s var(--ease);
}
/* fundo de cada serviço — url no CSS (../assets) resolve certo em todos os navegadores */
.sv-casamentos  { background-image: url('../assets/img/serv-casamentos.webp?v=2'); }
.sv-formaturas  { background-image: url('../assets/img/serv-formaturas.webp?v=2'); }
.sv-shows       { background-image: url('../assets/img/serv-shows.webp'); }
.sv-corporativo { background-image: url('../assets/img/serv-corporativo.webp'); }
.sv-sociais     { background-image: url('../assets/img/serv-sociais.webp'); }
.sv-estrutura   { background-image: url('../assets/img/serv-estrutura.webp'); }
.sel-item.is-active {
  flex: 6.5 1 0;
  border-color: rgba(255,255,255,.55);
}
.sel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.05) 0%, rgba(10,10,10,.35) 45%, rgba(10,10,10,.92) 100%);
  transition: background .5s var(--ease);
}
.sel-item.is-active .sel-overlay {
  background: linear-gradient(180deg, rgba(10,10,10,.05) 0%, rgba(10,10,10,.3) 40%, rgba(10,10,10,.9) 100%);
}
.sel-label {
  position: absolute; left: 0; right: 0; bottom: 22px;
  display: flex; align-items: center; gap: 16px;
  padding: 0 19px;
  z-index: 2;
}
.sel-ico {
  width: 50px; height: 50px;
  flex: 0 0 50px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(18,18,18,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--silver);
  transition: color .3s, border-color .3s;
}
.sel-item.is-active .sel-ico { color: #FFFFFF; border-color: rgba(255,255,255,.45); }
.sel-ico svg { width: 25px; height: 25px; }
.sel-info {
  display: flex; flex-direction: column;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity .5s var(--ease) .1s, transform .5s var(--ease) .1s;
}
.sel-item.is-active .sel-info { opacity: 1; transform: translateX(0); }
.sel-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1.05;
}
.sel-desc {
  color: rgba(255,255,255,.78);
  font-size: .96rem;
  white-space: normal;
  max-width: 440px;
  margin-top: 4px;
}

/* ---------- DOBRA 4 — portfólio ---------- */
.portfolio-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 34px;
}
.pf-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: .9rem; font-weight: 600;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.pf-btn:hover { color: var(--white); border-color: rgba(255,255,255,.3); }
.pf-btn.is-active { background: var(--silver); color: #0A0A0A; border-color: var(--silver); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.port-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
}
.port-item.wide { grid-column: span 2; }
.port-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.port-item:hover img { transform: scale(1.07); }
.port-item figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 22px 20px 18px;
  background: linear-gradient(180deg, transparent, rgba(10,10,10,.92));
  transform: translateY(8px);
  opacity: .9;
  transition: transform .35s var(--ease), opacity .35s;
}
.port-item:hover figcaption { transform: translateY(0); opacity: 1; }
.port-item figcaption span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem; letter-spacing: .02em; text-transform: uppercase;
}
.port-item figcaption small { color: var(--silver); font-size: .82rem; font-weight: 600; }
.port-item.is-hidden { display: none; }
.portfolio-cta { margin-top: 42px; text-align: center; }

/* ---------- DOBRA 5 — números ---------- */
.numbers { overflow: hidden; }
.numbers-bg {
  position: absolute; inset: -14% 0; z-index: 0;
  will-change: transform;
  background:
    radial-gradient(circle at 20% 50%, var(--silver-soft), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(207,212,218,.08), transparent 45%);
}
.numbers .container { position: relative; z-index: 1; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat { padding: 20px 10px; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 1;
  background: var(--metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 30px var(--silver-soft));
}
.stat-text { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
.stat-label {
  display: block;
  color: var(--muted);
  font-size: .95rem;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.numbers-quote {
  text-align: center;
  margin-top: 56px;
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: rgba(255,255,255,.9);
  max-width: 760px;
  margin-inline: auto;
}
.numbers-quote strong { color: var(--silver); }

/* ---------- NOSSOS CLIENTES (marquee de logos metálicas) ---------- */
.clients-head { text-align: center; margin-inline: auto; margin-bottom: 50px; max-width: none; }
.marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: marquee 45s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.client-logo {
  flex: 0 0 auto;
  width: 150px;
  height: 56px;
  /* degradê branco→cinza (metálico) aplicado pela forma da logo via máscara */
  background: var(--metal);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
  opacity: .8;
  transition: opacity .3s var(--ease);
}
.marquee:hover .client-logo { opacity: .55; }
.marquee .client-logo:hover { opacity: 1; }
/* máscara por cliente — caminho relativo ao CSS (../assets) */
.cl-bb        { -webkit-mask-image: url('../assets/img/clientes/logo-banco-do-brasil.png');            mask-image: url('../assets/img/clientes/logo-banco-do-brasil.png'); }
.cl-caixa     { -webkit-mask-image: url('../assets/img/clientes/logo-caixa.png');                       mask-image: url('../assets/img/clientes/logo-caixa.png'); }
.cl-vw        { -webkit-mask-image: url('../assets/img/clientes/logo-vw-colinas-motor.png');            mask-image: url('../assets/img/clientes/logo-vw-colinas-motor.png'); }
.cl-bobs      { -webkit-mask-image: url('../assets/img/clientes/logo-bobs.png');                        mask-image: url('../assets/img/clientes/logo-bobs.png'); }
.cl-extra     { -webkit-mask-image: url('../assets/img/clientes/logo-extra.png');                       mask-image: url('../assets/img/clientes/logo-extra.png'); }
.cl-oticas    { -webkit-mask-image: url('../assets/img/clientes/logo-oticas-diniz-dnz-sesc-atacadao.png'); mask-image: url('../assets/img/clientes/logo-oticas-diniz-dnz-sesc-atacadao.png'); }
.cl-impactarb { -webkit-mask-image: url('../assets/img/clientes/logo-impactar-business.png');           mask-image: url('../assets/img/clientes/logo-impactar-business.png'); }
.cl-impactar  { -webkit-mask-image: url('../assets/img/clientes/logo-impactar.png');                    mask-image: url('../assets/img/clientes/logo-impactar.png'); }
.cl-duo       { -webkit-mask-image: url('../assets/img/clientes/logo-duo-academia.png');                mask-image: url('../assets/img/clientes/logo-duo-academia.png'); }
.cl-natto     { -webkit-mask-image: url('../assets/img/clientes/logo-natto.png');                       mask-image: url('../assets/img/clientes/logo-natto.png'); }
.cl-facilnet  { -webkit-mask-image: url('../assets/img/clientes/logo-facilnet.png');                    mask-image: url('../assets/img/clientes/logo-facilnet.png'); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- GALERIA DE VÍDEOS (mosaico encaixado 9:16 + 16:9) ---------- */
.vgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-template-areas:
    "h h h a"
    "h h h a"
    "b c d e"
    "b c d e";
  aspect-ratio: 9 / 8;
  gap: 12px;
  max-width: 940px;
  margin-inline: auto;
}
.vcell {
  position: relative;
  margin: 0; padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--surface);
  transition: transform .4s var(--ease-cine), border-color .4s, box-shadow .4s;
}
/* encaixe: 5 verticais (a,b,c,d,e) + 1 horizontal grande (h) */
.vgrid .vcell:nth-child(1) { grid-area: a; }
.vgrid .vcell:nth-child(2) { grid-area: b; }
.vgrid .vcell:nth-child(3) { grid-area: c; }
.vgrid .vcell:nth-child(4) { grid-area: d; }
.vgrid .vcell:nth-child(5) { grid-area: e; }
.vgrid .vcell:nth-child(6) { grid-area: h; }
.vcell video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease-cine);
}
.vcell::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.05), rgba(10,10,10,.45));
  transition: opacity .4s;
}
.vcell:hover { border-color: rgba(255,255,255,.4); box-shadow: 0 18px 50px -24px rgba(0,0,0,.8); transform: translateY(-3px); }
.vcell:hover video { transform: scale(1.06); }
.vcell:hover::after { opacity: 0; }
.vcell-play {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(16,16,16,.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  z-index: 2;
  transition: opacity .35s, transform .35s var(--ease-cine);
}
.vcell-play svg { width: 22px; height: 22px; margin-left: 2px; }
.vcell.is-playing .vcell-play { opacity: 0; transform: translate(-50%, -50%) scale(.7); }
.vcell-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 26px 14px 12px;
  background: linear-gradient(180deg, transparent, rgba(10,10,10,.9));
  font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.92);
  text-align: left;
  pointer-events: none;
}

/* ---------- DOBRA 6 — depoimentos (masonry, alturas variadas) ---------- */
.testimonials {
  column-count: 3;
  column-gap: 22px;
}
.testi {
  break-inside: avoid;
  display: block;
  margin-bottom: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .3s var(--ease), border-color .3s;
}
.testi:hover { transform: translateY(-5px); border-color: rgba(207,212,218,.4); }
.stars {
  display: block;
  color: var(--silver);
  letter-spacing: 3px;
  font-size: .95rem;
  margin-bottom: 16px;
}
.testi blockquote {
  font-size: 1.04rem;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
  margin-bottom: 22px;
}
.testi figcaption { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 46px; height: 46px; flex: 0 0 46px;
  display: grid; place-items: center;
  background: var(--silver-soft); color: var(--silver);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.5rem;
}
.t-name { font-weight: 700; display: flex; flex-direction: column; }
.t-name small { color: var(--muted); font-weight: 500; font-size: .82rem; }

/* ---------- DOBRA 7 — timeline ---------- */
.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  counter-reset: step;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute; top: 26px; left: 4%; right: 4%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--silver), transparent);
  opacity: .4;
}
.timeline li { position: relative; padding-top: 70px; }
.t-step {
  position: absolute; top: 0; left: 0;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  background: var(--bg);
  border: 2px solid var(--silver);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--silver);
}
.timeline h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.35rem; letter-spacing: .02em; text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline p { color: var(--muted); font-size: .92rem; }

/* ---------- DOBRA 8 — FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item[open] { border-color: rgba(207,212,218,.4); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 56px 22px 24px;
  font-weight: 700;
  font-size: 1.08rem;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute; right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem; color: var(--silver);
  transition: transform .3s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { padding: 0 24px 24px; }
.faq-a p { color: var(--muted); }

/* ---------- DOBRA 9 — CTA final + form ---------- */
.cta-final { position: relative; overflow: hidden; }
.cta-bg {
  position: absolute; inset: -12% 0; z-index: 0;
  will-change: transform;
  background:
    radial-gradient(circle at 15% 20%, rgba(207,212,218,.18), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(207,212,218,.12), transparent 45%);
}
.cta-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.cta-contacts { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 14px; }
.cta-contacts a, .cta-contacts span {
  display: inline-flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,.88); font-weight: 500;
  transition: color .2s;
}
.cta-contacts a:hover { color: #FFFFFF; }
.ct-ico {
  width: 34px; height: 34px; flex: 0 0 34px;
  padding: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color: var(--silver);
  transition: border-color .25s, color .25s, background .25s;
}
.cta-contacts a:hover .ct-ico { color: #FFFFFF; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.08); }

.cta-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 32px;
}
.scarcity {
  background: var(--silver-soft);
  border: 1px solid rgba(207,212,218,.3);
  color: var(--silver);
  padding: 11px 16px;
  border-radius: 10px;
  font-size: .92rem; font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
}
.scarcity-ico { width: 16px; height: 16px; vertical-align: -3px; margin-right: 7px; }
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--muted); }
.field input, .field select, .field textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--white);
  font-family: inherit;
  font-size: .98rem;
  transition: border-color .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--silver);
}
.field textarea { resize: vertical; }
.field select { appearance: none; cursor: pointer; }

.lgpd {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .85rem; color: var(--muted);
  cursor: pointer;
}
.lgpd input { margin-top: 3px; accent-color: var(--silver); width: 16px; height: 16px; flex: 0 0 16px; }
.lgpd a { color: var(--silver); }
.microcopy {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
  margin-top: -4px;
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border); padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-logo { height: 80px; width: auto; display: block; }
.footer-slogan { color: var(--silver); margin-top: 14px; font-weight: 600; }
.footer-social { margin-top: 18px; display: flex; gap: 12px; }
.footer-ig {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  color: rgba(255,255,255,.85);
  border: 1px solid rgba(255,255,255,.18);
  transition: color .2s, border-color .2s, background .2s, transform .2s var(--ease);
}
.footer-ig:hover { color: #FFFFFF; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.07); transform: translateY(-2px); }
.footer-ig svg { width: 22px; height: 22px; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { color: var(--muted); transition: color .2s; }
.footer-nav a:hover { color: var(--silver); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact a, .footer-contact span { color: var(--muted); transition: color .2s; }
.footer-contact a:hover { color: var(--silver); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 24px;
  max-width: var(--maxw);
  margin-inline: auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: .85rem; color: var(--muted);
}
.footer-bottom .credit:hover { color: var(--silver); }

/* ============================================================
   BOTÕES FLUTUANTES (Instagram + WhatsApp)
   ============================================================ */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 58px; height: 58px;
  display: grid; place-items: center;
  background: var(--metal-btn);
  color: #0A0A0A;
  border-radius: 50%;
  box-shadow: 0 8px 30px -6px var(--silver-glow);
  transition: transform .25s var(--ease), box-shadow .25s;
  animation: waPulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes waPulse {
  0% { box-shadow: 0 8px 30px -6px var(--silver-glow), 0 0 0 0 var(--silver-glow); }
  70% { box-shadow: 0 8px 30px -6px var(--silver-glow), 0 0 0 16px rgba(207,212,218,0); }
  100% { box-shadow: 0 8px 30px -6px var(--silver-glow), 0 0 0 0 rgba(207,212,218,0); }
}

/* ============================================================
   ANIMAÇÕES DE SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(46px) scale(.972);
  filter: blur(6px);
  transition: opacity .9s var(--ease-cine), transform 1.1s var(--ease-cine), filter .8s var(--ease-cine);
  will-change: opacity, transform, filter;
}
.reveal.in { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }

/* stagger automático para filhos de um grid revelado */
.pillars .reveal:nth-child(2) { transition-delay: .1s; }
.pillars .reveal:nth-child(3) { transition-delay: .2s; }
.stats .reveal:nth-child(2) { transition-delay: .1s; }
.stats .reveal:nth-child(3) { transition-delay: .2s; }
.stats .reveal:nth-child(4) { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  [data-parallax] { transform: none !important; }
  .wa-float { animation: none; }
  .cas-face { transition: none; }
  .cas-face--b { display: none; }
  .hero-floor { animation: none; }
  .hero-beams { display: none; }
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; gap: 40px; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 960px) {
  .pillars, .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { column-count: 2; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .hero-strip { grid-template-columns: 1fr; max-width: 460px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { position: static; max-width: 420px; }
  .selector { height: 400px; }
  .sel-title { font-size: 1.45rem; }
}

@media (max-width: 680px) {
  .nav-links {
    position: fixed; inset: 92px 16px auto 16px;
    flex-direction: column;
    align-items: flex-start;
    margin-inline: 0;
    background: rgba(12,12,12,.97);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 22px 24px;
    gap: 18px;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s var(--ease), opacity .25s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: flex; margin-left: auto; }
  .header-cta { display: none; }

  .pillars, .portfolio-grid { grid-template-columns: 1fr; }
  .testimonials { column-count: 1; }
  .portfolio-grid { grid-auto-rows: 230px; }
  .port-item.wide { grid-column: span 1; }

  /* acordeão vira pilha vertical no mobile (card cresce com o conteúdo) */
  .selector { flex-direction: column; height: auto; gap: 10px; }
  .sel-item, .sel-item.is-active { flex: none; height: auto; min-height: 96px; }
  .sel-label { position: static; padding: 20px; }
  .sel-item .sel-info { opacity: 1; transform: none; }
  .sel-title { font-size: 1.35rem; }
  .sel-desc { max-width: none; white-space: normal; }

  .stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .timeline { grid-template-columns: 1fr; }
  .cta-form { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }

  /* --- reduzir tamanhos no celular --- */
  .section { padding: clamp(54px, 12vw, 72px) 0; }
  .section-head { margin-bottom: 34px; }
  .section-title { font-size: clamp(1.5rem, 6.6vw, 2rem); }
  .kicker { font-size: .72rem; }
  .btn { padding: 14px 24px; font-size: .92rem; }

  .hero-eyebrow { font-size: 1rem; margin-bottom: 10px; }
  .hero-sub { font-size: .95rem; margin: 18px auto 30px; }
  .hero-cta { gap: 12px; }

  /* hero no celular: mais escuro + raios bem discretos pra leitura do texto */
  .hero-scene { opacity: .28; }
  .hero-video { filter: saturate(.55) contrast(1.05) brightness(.58); }
  .hero-overlay {
    background:
      radial-gradient(95% 60% at 50% 42%, rgba(10,10,10,.64), transparent 78%),
      linear-gradient(180deg, rgba(10,10,10,.66) 0%, rgba(10,10,10,.56) 42%, rgba(10,10,10,.84) 74%, var(--bg) 100%);
  }
  .hcard-in { min-height: 86px; padding: 16px 20px; gap: 14px; }
  .hcard-num { font-size: 2.5rem; }
  .hcard-ico { width: 28px; height: 28px; }
  .hcard-arrow { width: 40px; height: 40px; }

  .about-lead { font-size: 1.02rem; }
  .about-body p { font-size: .98rem; }
  .about-emphasis { font-size: 1.35rem; margin: 24px 0; padding-left: 18px; }
  .about-slogan { font-size: clamp(1.8rem, 9vw, 2.4rem); margin-top: 44px; }

  /* foto da equipe no celular: card menor e centralizado (não domina a tela) */
  .about-photo { max-width: 300px; margin-inline: auto; }
  .about-photo__frame img { aspect-ratio: 1 / 1; height: auto; }
  .about-photo__frame figcaption { padding: 22px 18px 14px; font-size: .85rem; }

  .stat-num { font-size: clamp(2.4rem, 13vw, 3rem); }
  .numbers-quote { font-size: 1.05rem; margin-top: 40px; }

  .marquee-track { gap: 44px; }
  .client-logo { width: 110px; height: 44px; }

  .testi { padding: 24px 22px; }
  .testi blockquote { font-size: .98rem; }

  .t-step { width: 46px; height: 46px; font-size: 1.2rem; }
  .timeline li { padding-top: 60px; }

  .faq-item summary { font-size: 1rem; padding: 18px 48px 18px 20px; }
  .cta-form-wrap { padding: 26px 22px; }

  /* galeria no celular: 2 reels por linha + horizontal full */
  .vgrid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-template-areas: none;
    aspect-ratio: auto;
    max-width: none;
    gap: 10px;
  }
  .vgrid .vcell { grid-area: auto !important; }
  .vcell.tall { aspect-ratio: 9 / 16; }
  .vcell.wide { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
}

/* ============================================================
   RODAPÉ CINEMATOGRÁFICO — curtain reveal + "o giro"
   ============================================================ */
/* o conteúdo da página desliza por cima (opaco) e revela o rodapé fixo embaixo */
.page-content {
  position: relative;
  z-index: 1;
  background: var(--bg);
}
.footer-reveal {
  position: relative;
  height: 100svh;              /* espaçador: dá scroll pra revelar o rodapé fixo */
}
.cine-footer {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%; height: 100svh;
  z-index: 0;                  /* atrás do .page-content (z:1), revelado ao rolar */
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden;
  background: var(--bg);
}

/* atmosfera */
.cf-aurora {
  position: absolute; left: 50%; top: 52%;
  width: 80vw; height: 60vh;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--silver-glow), transparent 68%);
  filter: blur(80px);
  opacity: .5;
  animation: cfBreathe 8s ease-in-out infinite alternate;
  pointer-events: none; z-index: 0;
}
@keyframes cfBreathe {
  0%   { transform: translate(-50%, -50%) scale(1);    opacity: .4; }
  100% { transform: translate(-50%, -50%) scale(1.12); opacity: .7; }
}
.cf-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-size: 60px 60px;
  background-image:
    linear-gradient(to right, rgba(207,212,218,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(207,212,218,.05) 1px, transparent 1px);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
          mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
}

/* "R2" gigante ao fundo */
.cf-giant {
  position: absolute; left: 50%; bottom: -6vh;
  font-family: var(--font-display); font-weight: 400;
  font-size: 34vw; line-height: .7; letter-spacing: .02em;
  white-space: nowrap; z-index: 0; pointer-events: none; user-select: none;
  background: linear-gradient(180deg, rgba(207,212,218,.18) 0%, rgba(207,212,218,0) 62%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-stroke: 1px rgba(207,212,218,.06);
  transition: opacity 1s var(--ease), transform 1.2s var(--ease);
}
/* estado inicial escondido SÓ quando o JS está ativo (sem JS, tudo visível) */
.cine-footer.cf-js .cf-giant { opacity: 0; transform: translateX(-50%) translateY(8vh) scale(.92); }
.cine-footer.cf-js.cf-in .cf-giant { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }

/* faixa rotativa "o giro" */
.cf-marquee {
  position: absolute; top: 9%; left: -6%;
  width: 112%; z-index: 1;
  transform: rotate(-2.4deg);
  padding: 14px 0; overflow: hidden;
  border-block: 1px solid var(--border);
  background: rgba(10,10,10,.55);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 24px 60px -24px rgba(0,0,0,.85);
}
.cf-marquee-track { display: flex; width: max-content; animation: cfMarquee 34s linear infinite; }
.cf-mq {
  display: inline-flex; align-items: center; white-space: nowrap;
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  letter-spacing: .1em; font-size: clamp(1rem, 2.3vw, 1.7rem);
  color: rgba(255,255,255,.55); padding-right: 0;
}
.cf-mq i { color: var(--silver); margin: 0 .7em; font-style: normal; opacity: .85; }
@keyframes cfMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* chamada central */
.cf-center {
  position: relative; z-index: 2;
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 0 24px; margin-top: 4vh;
}
.cf-eyebrow {
  font-size: clamp(.78rem, 1.3vw, .92rem); letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 18px;
  transition: opacity .7s var(--ease) .05s, transform .7s var(--ease) .05s;
}
.cf-title {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(2.4rem, 8vw, 6rem); line-height: .95; letter-spacing: .01em;
  margin-bottom: 38px;
  background: var(--metal); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 6px 36px rgba(0,0,0,.5));
  transition: opacity .8s var(--ease) .15s, transform .8s var(--ease) .15s;
}
.cf-pills {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  transition: opacity .8s var(--ease) .28s, transform .8s var(--ease) .28s;
}
/* estado inicial escondido SÓ com JS ativo */
.cine-footer.cf-js .cf-eyebrow,
.cine-footer.cf-js .cf-title,
.cine-footer.cf-js .cf-pills { opacity: 0; transform: translateY(34px); }
.cine-footer.cf-js.cf-in .cf-eyebrow,
.cine-footer.cf-js.cf-in .cf-title,
.cine-footer.cf-js.cf-in .cf-pills { opacity: 1; transform: translateY(0); }

/* pílulas de vidro magnéticas */
.cf-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 30px; border-radius: 50px;
  font-weight: 700; font-size: .95rem; color: var(--white); text-decoration: none;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.6), inset 0 1px 1px rgba(255,255,255,.08);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: transform .3s var(--ease), background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), color .3s;
  will-change: transform;
}
.cf-pill svg { width: 20px; height: 20px; }
.cf-pill:hover { border-color: var(--silver); box-shadow: 0 20px 44px -12px rgba(0,0,0,.7), inset 0 1px 1px rgba(255,255,255,.18); }
.cf-pill--wa {
  background: var(--metal-btn); color: #0A0A0A; border-color: transparent;
  box-shadow: 0 12px 34px -10px var(--silver-glow), inset 0 1px 0 rgba(255,255,255,.6);
}
.cf-pill--wa:hover { color: #0A0A0A; }

/* barra inferior */
.cf-bottom {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; gap: 14px;
  padding: 18px clamp(20px, 5vw, 60px) 26px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(10,10,10,.6));
}
.cf-bottom-nav,
.cf-bottom-credits {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px 28px; flex-wrap: wrap;
}
.cf-bottom-credits {
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.cf-nav { display: flex; flex-wrap: wrap; gap: 18px; }
.cf-nav a { color: rgba(255,255,255,.62); text-decoration: none; font-size: .85rem; font-weight: 600; transition: color .25s; }
.cf-nav a:hover { color: var(--silver); }
/* info da R2 (esquerda) separada do crédito da Mega (direita) */
.cf-copy { font-size: .72rem; color: rgba(255,255,255,.4); letter-spacing: .05em; text-transform: uppercase; }
.cf-credit { font-size: .72rem; color: rgba(255,255,255,.45); letter-spacing: .05em; text-transform: uppercase; text-decoration: none; white-space: nowrap; }
.cf-credit strong { color: rgba(255,255,255,.72); font-weight: 700; }
.cf-credit:hover strong { color: var(--silver); }
.cf-top {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  color: var(--white);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid var(--border); will-change: transform;
  transition: transform .3s var(--ease), border-color .3s, color .3s;
}
.cf-top:hover { border-color: var(--silver); color: var(--silver); }
.cf-top svg { width: 20px; height: 20px; transition: transform .3s var(--ease); }
.cf-top:hover svg { transform: translateY(-3px); }

@media (max-width: 720px) {
  .cf-giant { font-size: 46vw; bottom: -3vh; }
  .cf-marquee { top: 7%; }
  .cf-title { margin-bottom: 28px; }
  .cf-pills { flex-direction: column; align-items: stretch; width: 100%; max-width: 340px; }
  .cf-pill { justify-content: center; }
  .cf-bottom { text-align: center; }
  .cf-bottom-nav, .cf-bottom-credits { justify-content: center; }
  .cf-nav { justify-content: center; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .cf-aurora, .cf-marquee-track { animation: none; }
  .cf-giant { opacity: 1; transform: translateX(-50%); transition: none; }
  .cf-eyebrow, .cf-title, .cf-pills { opacity: 1; transform: none; transition: none; }
}

/* ============ Lenis (smooth scroll) ============ */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }
/* camadas do parallax do hero: promove p/ GPU */
.hero-video, .hero-scene, .hero-content, .hero-strip { will-change: transform; }

/* ============ Hero em telas grandes (20"+): aumenta presença ============ */
@media (min-width: 1500px) {
  .hero-pill { font-size: .9rem; padding: 9px 20px; margin-bottom: 26px; }
  .hero-eyebrow { font-size: 1.4rem; margin-bottom: 16px; }
  .hero-title { font-size: 6.2rem; }
  .hero-sub { font-size: 1.28rem; max-width: 660px; margin: 26px auto 42px; }
  .hero-cta .btn { font-size: 1.05rem; padding: 17px 36px; }
  .hero-strip { gap: 22px; }
}
@media (min-width: 1900px) {
  .hero-eyebrow { font-size: 1.6rem; }
  .hero-title { font-size: 7.4rem; }
  .hero-sub { font-size: 1.45rem; max-width: 720px; }
}
