/* ════════════════════════════════════════════════════════════
   GRUPO TRAMPULIM — Proposta Visual (ref. Collectif XY)
   Folha de estilo compartilhada por todas as páginas
   ════════════════════════════════════════════════════════════ */

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

:root {
  --creme:   #F7F4EF;
  --preto:   #1A1614;
  --vermelho:#B5281C;
  --amarelo: #E8B84B;
  --cinza:   #8A8278;
  --cinza-claro: #C4BFBA;
  --linha:   rgba(26,22,20,.1);
  --nav-h:   68px;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--creme);
  color: var(--preto);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.03em;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.container-narrow { max-width: 860px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* Pré-cabeçalho fixo: empurra conteúdo abaixo da nav */
main { padding-top: var(--nav-h); }

/* ─── Reveal on scroll ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

/* ─── Botões ─────────────────────────────────────────────── */
.btn-solid {
  background: var(--vermelho);
  color: var(--creme);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 2px;
  transition: background .2s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.btn-solid:hover { background: #901f16; }

.btn-outline {
  border: 1.5px solid var(--preto);
  color: var(--preto);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 2px;
  transition: background .2s, color .2s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.btn-outline:hover { background: var(--preto); color: var(--creme); }

.btn-wa {
  background: #25D366;
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: opacity .2s;
}
.btn-wa:hover { opacity: .9; }

.btn-text {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--cinza);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s, gap .2s;
}
.btn-text:hover { color: var(--preto); gap: 13px; }

.link-ul {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--preto);
  border-bottom: 1px solid rgba(26,22,20,.22);
  padding-bottom: 3px;
  transition: color .2s, border-color .2s, gap .2s;
}
.link-ul:hover { color: var(--vermelho); border-color: var(--vermelho); gap: 13px; }

/* ─── Eyebrow / rótulos ──────────────────────────────────── */
.eyebrow {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cinza);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow.line::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--cinza-claro);
  flex-shrink: 0;
}
.eyebrow.red { color: var(--vermelho); }
.eyebrow.yellow { color: var(--amarelo); }

/* ════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  background: var(--creme);
  border-bottom: 1px solid var(--linha);
  transition: box-shadow .3s;
}
#nav.scrolled { box-shadow: 0 2px 20px rgba(26,22,20,.07); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}
.nav-logo img { height: 38px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-item { position: relative; }
.nav-item > a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cinza);
  padding: 8px 12px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-item > a:hover,
.nav-item.active > a { color: var(--preto); }
.nav-item > a:hover { background: rgba(26,22,20,.04); }
.nav-item.active > a { color: var(--vermelho); }
.nav-item > a .chevron { width: 12px; height: 12px; transition: transform .2s; flex-shrink: 0; }
.nav-item:hover > a .chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  /* padding-top cria o respiro visual SEM deixar vão fora da área de hover */
  margin-top: 0;
  padding: 12px 0 6px;
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s;
  z-index: 600;
}
.nav-dropdown::before {
  /* painel visual (fundo/borda/sombra) deslocado do respiro superior */
  content: '';
  position: absolute;
  top: 6px; left: 0; right: 0; bottom: 0;
  background: var(--creme);
  border: 1px solid var(--linha);
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(26,22,20,.08);
  z-index: -1;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown { opacity: 1; pointer-events: auto; }
.nav-dropdown a {
  display: block;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 400;
  color: var(--cinza);
  transition: color .15s, background .15s;
}
.nav-dropdown a small { display: block; font-size: 10.5px; color: var(--cinza-claro); letter-spacing: .04em; margin-top: 1px; }
.nav-dropdown a:hover { color: var(--preto); background: rgba(26,22,20,.03); }
.nav-dropdown a:hover small { color: var(--cinza); }

.lang-inline { display: flex; align-items: center; gap: 6px; margin-left: 6px; padding-left: 14px; border-left: 1px solid var(--linha); }
.lang-inline > a {
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  color: var(--cinza); padding: 4px 2px; transition: color .2s;
}
.lang-inline > a:hover { color: var(--preto); }
.lang-inline > a.cur { color: var(--vermelho); }
.lang-sep { color: var(--cinza-claro); font-size: 11px; }

/* ─── Redes sociais no topo (desktop) ─────────────────────── */
.nav-socials {
  display: flex; align-items: center; gap: 0;
  margin-left: 10px; padding-left: 12px;
  border-left: 1px solid var(--linha);
}
.nav-social {
  width: 28px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(26,22,20,.5);
  border-radius: 6px;
  transition: color .2s, background .2s, transform .2s;
}
.nav-social svg { width: 20px; height: 20px; flex: 0 0 auto; display: block; }
.nav-social:hover { color: var(--vermelho); background: rgba(181,40,28,.08); transform: translateY(-1px); }
.nav-social:focus-visible { outline: 2px solid var(--vermelho); outline-offset: 2px; }

/* Redes sociais no drawer mobile */
.drawer-socials { display: flex; gap: 14px; margin-top: 28px; }
.drawer-social {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--linha); border-radius: 50%;
  color: var(--preto);
  transition: border-color .2s, color .2s, background .2s;
}
.drawer-social:hover { border-color: var(--vermelho); color: var(--vermelho); background: rgba(181,40,28,.06); }
.drawer-sub-link.cur { color: var(--vermelho); }

.nav-cta-btn {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  border: 1.5px solid var(--preto);
  padding: 9px 20px;
  border-radius: 2px;
  color: var(--preto);
  white-space: nowrap;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.nav-cta-btn:hover { background: var(--preto); color: var(--creme); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.nav-hamburger span { width: 24px; height: 1.5px; background: var(--preto); display: block; transition: transform .25s, opacity .25s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-menu, .nav-cta-btn { display: none; }
  .nav-hamburger { display: flex; }
}

#nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--creme);
  z-index: 490;
  overflow-y: auto;
  padding: 24px 20px 48px;
  flex-direction: column;
}
#nav-drawer.open { display: flex; }
.drawer-group { border-bottom: 1px solid var(--linha); padding: 4px 0 8px; }
.drawer-section-title {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cinza-claro);
  padding: 10px 4px 4px;
  display: block;
}
.drawer-link {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--preto);
  padding: 8px 4px;
  transition: color .2s;
}
.drawer-link:hover { color: var(--vermelho); }
.drawer-subs { display: flex; flex-direction: column; padding-left: 12px; }
.drawer-sub-link {
  display: block;
  font-size: 14.5px;
  font-weight: 400;
  color: var(--cinza);
  padding: 6px 4px;
  transition: color .2s;
}
.drawer-sub-link:hover { color: var(--preto); }
/* Idioma — lado a lado */
.drawer-langs { display: flex; gap: 18px; padding: 4px 4px 0; }
.drawer-lang-link { font-size: 15px; font-weight: 600; color: var(--cinza-claro); transition: color .2s; }
.drawer-lang-link.cur { color: var(--vermelho); }
.drawer-lang-link:hover { color: var(--preto); }
.drawer-cta {
  margin-top: 28px;
  background: var(--vermelho);
  color: var(--creme) !important;
  padding: 16px 24px;
  border-radius: 2px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   PAGE HEADER (interno)
   ════════════════════════════════════════════════════════════ */
.page-head {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--linha);
}
.page-head .eyebrow { margin-bottom: 24px; }
.page-head h1 {
  font-size: clamp(40px, 5.5vw, 84px);
  letter-spacing: -.04em;
  line-height: .92;
}
.page-head h1 .accent { color: var(--vermelho); }
.page-head .sub {
  font-size: 18px;
  font-weight: 300;
  color: var(--cinza);
  margin-top: 8px;
  letter-spacing: -.01em;
}
.page-head .lead {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cinza);
  max-width: 560px;
  margin-top: 28px;
}

/* Section title bar */
.section-bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 24px;
}
.section-bar h2 { font-size: clamp(26px, 3.5vw, 44px); letter-spacing: -.04em; }

/* Seção com galeria em tira de filme (Oficinas + Números) */
.gallery-block { padding: 74px 0 0; border-top: 1px solid var(--linha); }
.gallery-block:first-of-type { border-top: none; padding-top: 8px; }
.gallery-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 16px; }
.gallery-head .card-num { font-size: 13px; }
.gallery-block h2 { font-size: clamp(28px, 3.2vw, 46px); letter-spacing: -.035em; line-height: 1.02; margin-bottom: 20px; }
.gallery-block .o-desc { font-size: 16px; font-weight: 300; line-height: 1.75; color: var(--cinza); max-width: 700px; }
.gallery-block .card-meta { margin-top: 16px; max-width: 700px; }
.gallery-block .gallery-credit { font-size: 12px; color: var(--cinza-claro); letter-spacing: .03em; margin-top: 14px; }
.gallery-block .marquee { margin-top: 44px; }
/* respiro entre a última galeria e o CTA vermelho */
.gallery-block + .cta-strip { margin-top: 88px; }
.link-sm {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cinza);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  transition: color .2s, gap .2s;
}
.link-sm:hover { color: var(--preto); gap: 11px; }

/* ─── Marquee de fotos (galeria em movimento) ────────────── */
.marquee { display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
.marquee-row { overflow: hidden; }
.marquee-track { display: flex; gap: 12px; width: max-content; animation: mqL 60s linear infinite; }
.marquee-row.rtl .marquee-track { animation: mqR 60s linear infinite; }
@keyframes mqL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes mqR { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.marquee-item { flex: 0 0 auto; width: 300px; height: 196px; overflow: hidden; border-radius: 2px; background: var(--preto); }
.marquee-item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform .6s cubic-bezier(.16,1,.3,1); }
.marquee-item:hover img { transform: scale(1.05); }
@media (max-width: 700px) { .marquee-item { width: 230px; height: 154px; } .marquee { gap: 8px; } }

/* Galeria do espetáculo: tira de filme — altura fixa, largura livre, sem corte */
.show-marquee .marquee-item { width: auto; height: 240px; background: transparent; border-radius: 2px; }
.show-marquee .marquee-item img { width: auto; height: 100%; object-fit: contain; object-position: center; }
@media (max-width: 700px) { .show-marquee .marquee-item { height: 168px; } }
.show-marquee .marquee-item img { user-select: none; -webkit-user-select: none; -webkit-user-drag: none; }
/* Rolagem controlável: movimento automático + arrasto (mouse), swipe (touch) e dois dedos (trackpad) */
/* Cursor sempre lupa+ sobre a galeria (mesmo podendo arrastar) */
.show-marquee .marquee-row { overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -ms-overflow-style: none; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain; cursor: zoom-in; }
.show-marquee .marquee-row::-webkit-scrollbar { display: none; }
.show-marquee .marquee-track { animation: none !important; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  width: 100%; height: 100vh; height: 100dvh; /* dvh: respeita a barra do navegador no mobile */
  box-sizing: border-box; overflow: hidden;
  display: flex; align-items: center; justify-content: center; padding: 18px;
  background: rgba(26,22,20,.82);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox { cursor: zoom-out; }
.lightbox img {
  max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain;
  border-radius: 3px; box-shadow: 0 24px 70px rgba(0,0,0,.55);
  transform: scale(.94); transition: transform .3s cubic-bezier(.16,1,.3,1);
  cursor: zoom-out;
}
.lightbox.open img { transform: scale(1); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px; width: 46px; height: 46px;
  border-radius: 50%; border: 1px solid rgba(247,244,239,.3); background: rgba(0,0,0,.25);
  color: var(--creme); display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, border-color .2s; z-index: 2;
}
.lightbox-close:hover { background: var(--vermelho); border-color: var(--vermelho); }

/* Vídeo + texto (página de espetáculo) */
.show-vt { display: grid; grid-template-columns: 1.25fr 1fr; gap: 44px; align-items: start; margin-bottom: 8px; }
.show-vt .show-video { aspect-ratio: 16/9; width: 100%; }
.show-vt .show-text p { font-size: 17px; font-weight: 300; line-height: 1.7; color: var(--preto); }
@media (max-width: 860px) { .show-vt { grid-template-columns: 1fr; gap: 28px; } }

/* ─── Prose (texto longo) ────────────────────────────────── */
.prose { max-width: 680px; }
.prose h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin: 48px 0 16px;
  letter-spacing: -.03em;
}
.prose h2:first-child { margin-top: 0; }
.prose p {
  font-size: 16.5px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--cinza);
  margin-bottom: 18px;
}
.prose p strong { color: var(--preto); font-weight: 500; }
.prose p em { font-style: italic; color: var(--preto); }

/* ════════════════════════════════════════════════════════════
   TIMELINE (prêmios / cronologia)
   ════════════════════════════════════════════════════════════ */
.timeline {
  position: relative;
  border-left: 1px solid var(--linha);
  margin-left: 6px;
}
.timeline-item {
  position: relative;
  padding: 0 0 40px 32px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px; top: 4px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--vermelho);
  box-shadow: 0 0 0 4px var(--creme);
}
.timeline-year {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--vermelho);
}
.timeline-item h3 {
  font-size: 19px;
  margin-top: 4px;
  letter-spacing: -.02em;
}
.timeline-item p { font-size: 15px; font-weight: 300; color: var(--cinza); margin-top: 6px; line-height: 1.6; }
.timeline-meta { margin-top: 10px; display: flex; flex-direction: column; gap: 4px; }
.timeline-meta div { font-size: 13.5px; color: var(--cinza); line-height: 1.5; }
.timeline-meta dt { font-weight: 500; color: var(--preto); display: inline; }

/* ════════════════════════════════════════════════════════════
   CARDS GENÉRICOS (oficinas / números / serviços)
   ════════════════════════════════════════════════════════════ */
.card-grid {
  display: grid;
  border-top: 1px solid var(--linha);
  border-left: 1px solid var(--linha);
}
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  border-right: 1px solid var(--linha);
  border-bottom: 1px solid var(--linha);
  padding: 40px 34px 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background .35s;
}
.card.hover-dark:hover { background: var(--preto); }
.card.hover-dark:hover .card-num { color: var(--vermelho); }
.card.hover-dark:hover .card-title { color: var(--creme); }
.card.hover-dark:hover .card-text { color: rgba(247,244,239,.4); }
.card.hover-dark:hover .card-tag { color: var(--amarelo); }
.card-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--cinza-claro);
  transition: color .35s;
}
.card-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--vermelho);
  transition: color .35s;
}
.card-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--preto);
  transition: color .35s;
}
.card-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--cinza);
  transition: color .35s;
}
.card-meta {
  font-size: 12.5px;
  color: var(--cinza-claro);
  margin-top: 4px;
}
.card-meta strong { color: var(--cinza); font-weight: 500; }
@media (max-width: 860px) {
  .card-grid.cols-3 { grid-template-columns: 1fr; }
  .card-grid.cols-2 { grid-template-columns: 1fr; }
}

/* Checklist */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--cinza); }
.checklist li::before { content: '✓'; color: var(--vermelho); font-weight: 700; flex-shrink: 0; }

/* ════════════════════════════════════════════════════════════
   TEAM GRID (ficha técnica)
   ════════════════════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--linha);
  border-left: 1px solid var(--linha);
}
.team-card {
  border-right: 1px solid var(--linha);
  border-bottom: 1px solid var(--linha);
  padding: 28px 30px;
  transition: background .3s;
}
.team-card:hover { background: rgba(26,22,20,.02); }
.team-card .nome { font-family: 'Bricolage Grotesque', sans-serif; font-size: 19px; font-weight: 800; letter-spacing: -.02em; }
.team-card .personagem { font-size: 13px; font-weight: 600; color: var(--vermelho); margin-top: 3px; letter-spacing: .02em; }
.team-card .funcao { font-size: 13.5px; font-weight: 300; color: var(--cinza); margin-top: 8px; line-height: 1.5; }
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   SHOW DETAIL (espetáculo individual) + listagem
   ════════════════════════════════════════════════════════════ */
.show-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.show-video {
  aspect-ratio: 16/9;
  background: var(--preto);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.show-video iframe { width: 100%; height: 100%; border: none; display: block; }
@media (max-width: 820px) { .show-detail-grid { grid-template-columns: 1fr; } }

/* Carousel */
.carousel { position: relative; }
.carousel-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 2px;
  aspect-ratio: 16/9;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: var(--preto);
  border-radius: 2px;
  overflow: hidden;
}
.carousel-slide img { width: 100%; height: 100%; object-fit: contain; }
.carousel-credit {
  position: absolute;
  bottom: 8px; right: 8px;
  background: rgba(26,22,20,.55);
  color: rgba(255,255,255,.85);
  font-size: 10.5px;
  padding: 3px 8px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--creme);
  border: 1px solid var(--linha);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background .2s, color .2s;
  color: var(--preto);
}
.carousel-btn:hover { background: var(--vermelho); color: #fff; border-color: var(--vermelho); }
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

/* Ficha técnica (definição) */
.ficha {
  margin-top: 28px;
  border-top: 1px solid var(--linha);
}
.ficha-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--linha);
}
.ficha-row dt { font-size: 13px; font-weight: 600; letter-spacing: .02em; color: var(--preto); }
.ficha-row dd { font-size: 14px; font-weight: 300; color: var(--cinza); line-height: 1.5; }
@media (max-width: 600px) { .ficha-row { grid-template-columns: 1fr; gap: 2px; } }

/* Grade editorial de espetáculos (compartilhada: home + página Espetáculos) */
.shows { padding-bottom: 0; }
.shows-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--linha); border-left: 1px solid var(--linha); }
.show-card { border-right: 1px solid var(--linha); border-bottom: 1px solid var(--linha); overflow: hidden; position: relative; }
.show-card.featured { grid-column: span 2; }
.show-card.last { grid-column: span 2; }
.show-img { overflow: hidden; background: var(--preto); }
.show-card:not(.featured):not(.last) .show-img { aspect-ratio: 4/3; }
.show-card.featured .show-img { aspect-ratio: 16/6; }
.show-card.last .show-img { aspect-ratio: 16/6; }
.show-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.16,1,.3,1); }
.show-card:hover .show-img img { transform: scale(1.05); }
.show-info { padding: 22px 26px 26px; position: relative; }
.show-tag { font-size: 10.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--vermelho); margin-bottom: 7px; display: block; }
.show-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 19px; font-weight: 800; letter-spacing: -.03em; line-height: 1.1; color: var(--preto); }
.show-card.featured .show-name { font-size: 26px; }
.show-desc { font-size: 13px; font-weight: 300; color: var(--cinza); line-height: 1.55; margin-top: 7px; }
.show-credit { font-size: 11px; color: var(--cinza-claro); margin-top: 5px; display: block; }
.show-arrow { position: absolute; bottom: 22px; right: 22px; width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--linha); display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(.8); transition: opacity .2s, transform .2s, background .2s, border-color .2s; }
.show-card:hover .show-arrow { opacity: 1; transform: scale(1); background: var(--vermelho); border-color: var(--vermelho); }
@media (max-width: 900px) { .shows-grid { grid-template-columns: repeat(2, 1fr); } .show-card.featured, .show-card.last { grid-column: span 2; } }
@media (max-width: 560px) { .shows-grid { grid-template-columns: 1fr; } .show-card.featured, .show-card.last { grid-column: span 1; } .show-card.featured .show-img { aspect-ratio: 4/3; } }

/* ════════════════════════════════════════════════════════════
   GALERIA DE MARCAS
   ════════════════════════════════════════════════════════════ */
.marcas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.marca-item {
  background: #fff;
  border-radius: 8px;
  height: 96px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
}
.marca-item:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,.16); }
.marca-item img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  object-fit: contain;
}
@media (max-width: 900px) { .marcas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .marcas-grid { grid-template-columns: repeat(2, 1fr); } }

/* ════════════════════════════════════════════════════════════
   VIDEO GRID (depósito de bobagens)
   ════════════════════════════════════════════════════════════ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.yt-facade {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 2px;
  overflow: hidden;
  background: var(--preto);
  cursor: pointer;
  border: none;
  padding: 0;
}
.yt-facade img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: opacity .3s, transform .5s; }
.yt-facade:hover img { opacity: 1; transform: scale(1.05); }
.yt-facade .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.yt-facade .play span {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(181,40,28,.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.yt-facade:hover .play span { background: var(--vermelho); transform: scale(1.08); }
.yt-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
@media (max-width: 860px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .video-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════
   BLOCOS ESCUROS / DESTAQUE
   ════════════════════════════════════════════════════════════ */
.dark-block { background: var(--preto); color: var(--creme); }
.dark-block h2 { color: var(--creme); }
.dark-block p { color: rgba(247,244,239,.6); }

.banner-photo {
  position: relative;
  padding: 96px 0;
  text-align: center;
  overflow: hidden;
}
.banner-photo img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.banner-photo::after { content: ''; position: absolute; inset: 0; background: rgba(26,22,20,.78); z-index: 1; }
.banner-photo .inner { position: relative; z-index: 2; color: var(--creme); max-width: 640px; margin: 0 auto; }
.banner-photo h2 { color: var(--creme); font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 20px; }
.banner-photo p { color: rgba(247,244,239,.78); font-size: 17px; font-weight: 300; line-height: 1.7; margin-bottom: 14px; }

/* Stats inline (dark) */
.stats-inline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stats-inline .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--amarelo);
}
.stats-inline .lbl { font-size: 12.5px; font-weight: 300; color: rgba(247,244,239,.55); margin-top: 6px; line-height: 1.4; }
@media (max-width: 700px) { .stats-inline { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; } }

/* Steps numerados */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.step { text-align: center; }
.step .circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--vermelho);
  color: #fff;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 15px; letter-spacing: -.01em; margin-bottom: 6px; }
.step p { font-size: 13.5px; font-weight: 300; color: var(--cinza); line-height: 1.55; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr 1fr; gap: 32px 20px; } }

/* ════════════════════════════════════════════════════════════
   CONTATO
   ════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--cinza);
  margin-bottom: 7px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--linha);
  background: #fff;
  border-radius: 2px;
  padding: 13px 15px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--preto);
  transition: border-color .2s;
}
.form-field input:focus,
.form-field textarea:focus { outline: none; border-color: var(--vermelho); }
.form-field textarea { resize: vertical; min-height: 130px; }
.contact-card {
  border: 1px solid var(--linha);
  border-radius: 2px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--preto);
  transition: border-color .2s, background .2s;
  margin-bottom: 12px;
}
.contact-card:hover { border-color: var(--vermelho); }
.contact-card.wa { background: #25D366; color: #fff; border-color: #25D366; }
.contact-card.wa:hover { opacity: .92; }
.contact-card svg { flex-shrink: 0; }
.social-row { display: flex; gap: 10px; margin-top: 8px; }
.social-row a {
  width: 40px; height: 40px;
  border: 1px solid var(--linha);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinza);
  transition: border-color .2s, color .2s;
}
.social-row a:hover { border-color: var(--vermelho); color: var(--vermelho); }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ════════════════════════════════════════════════════════════
   CTA STRIP
   ════════════════════════════════════════════════════════════ */
.cta-strip { background: var(--vermelho); padding: 88px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner h2 { font-size: clamp(32px, 4vw, 58px); letter-spacing: -.04em; line-height: .98; color: var(--creme); }
.cta-inner p { font-size: 15px; font-weight: 300; color: rgba(247,244,239,.5); margin-top: 14px; max-width: 360px; }
.btn-cta {
  background: var(--creme);
  color: var(--vermelho);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s;
}
.btn-cta:hover { background: #fff; }
@media (max-width: 768px) { .cta-inner { flex-direction: column; align-items: flex-start; } }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
footer { background: var(--preto); padding: 64px 0 32px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247,244,239,.06);
  margin-bottom: 24px;
}
.footer-logo img { height: 34px; width: auto; filter: brightness(0) invert(1); opacity: .7; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; font-weight: 300; line-height: 1.7; color: rgba(247,244,239,.3); max-width: 240px; }
.f-socials { display: flex; gap: 8px; margin-top: 22px; }
.f-social {
  width: 32px; height: 32px;
  border: 1px solid rgba(247,244,239,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: rgba(247,244,239,.3);
  transition: border-color .2s, color .2s;
}
.f-social:hover { border-color: var(--amarelo); color: var(--amarelo); }
.footer-col h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--creme); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col li a { font-size: 13px; font-weight: 300; color: rgba(247,244,239,.32); transition: color .2s; }
.footer-col li a:hover { color: var(--creme); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 11.5px; color: rgba(247,244,239,.18); flex-wrap: wrap;
}
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: span 2; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } .footer-brand { grid-column: span 1; } }

/* ─── WhatsApp flutuante ─────────────────────────────────── */
.wa-btn {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 50px; height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 400;
  box-shadow: 0 3px 16px rgba(37,211,102,.3);
  transition: transform .2s, box-shadow .2s;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 5px 22px rgba(37,211,102,.4); }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--creme); }
::-webkit-scrollbar-thumb { background: rgba(26,22,20,.18); border-radius: 3px; }
:focus-visible { outline: 2px solid var(--vermelho); outline-offset: 3px; }

/* Utilidades de espaçamento de seção */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bdr-top { border-top: 1px solid var(--linha); }
.bdr-bottom { border-bottom: 1px solid var(--linha); }
