/* ==========================================================================
   MATHEUS NOCAUTE — "Fight Night Dourado"
   Design tokens + bespoke components layered on top of Tailwind utilities.
   ========================================================================== */

:root {
  --ink: #0b0907;
  --ink-2: #171009;
  --ink-3: #211609;
  --gold: #e8b04b;
  --gold-bright: #f7cb6e;
  --gold-deep: #9c7a32;
  --crimson: #7a1f2b;
  --crimson-bright: #b23a46;
  --cream: #f4ecda;
  --cream-dim: #b7ac97;
  --cream-faint: #8c8272;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-label: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Fraunces", Georgia, serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  --ease-punch: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Reserva a calha da barra de rolagem SEMPRE. Sem isto, o overflow:hidden
     que trava o fundo enquanto um modal esta aberto some com a barra e a
     pagina inteira da um salto lateral de ~15px ao abrir e outro ao fechar. */
  scrollbar-gutter: stable;
}

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* Film-grain texture, sits above every section, below content.
   NOTE: no mix-blend-mode here on purpose. A full-viewport blend layer has to
   be re-composited against its (scrolling) backdrop every frame, which pulls
   the whole page off the compositor's fast scrolling path. Plain alpha at a
   lower opacity looks the same over this dark palette and costs nothing. */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Typography helpers ------------------------------------------------ */
.font-display { font-family: var(--font-display); }
.font-label { font-family: var(--font-label); letter-spacing: 0.14em; }
.font-mono { font-family: var(--font-mono); }

.kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.round-label {
  font-family: var(--font-label);
  font-size: 0.95rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.round-number {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 12vw, 9rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold-deep);
  letter-spacing: -0.02em;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.body-copy {
  font-family: var(--font-body);
  color: var(--cream-dim);
  line-height: 1.75;
}
.body-copy strong { color: var(--cream); font-weight: 600; }

/* ---- Corner bracket motif (ring-post marks) ---------------------------- */
.ring-corner {
  position: absolute;
  z-index: 2;
  width: clamp(2.5rem, 5vw, 4rem);
  height: clamp(2.5rem, 5vw, 4rem);
  border-color: var(--gold-deep);
  opacity: 0.7;
}
.ring-corner.tl { top: 1.5rem; left: 1.5rem; border-top: 2px solid; border-left: 2px solid; }
.ring-corner.tr { top: 1.5rem; right: 1.5rem; border-top: 2px solid; border-right: 2px solid; }
.ring-corner.bl { bottom: 1.5rem; left: 1.5rem; border-bottom: 2px solid; border-left: 2px solid; }
.ring-corner.br { bottom: 1.5rem; right: 1.5rem; border-bottom: 2px solid; border-right: 2px solid; }

/* ---- Nav ---------------------------------------------------------------- */
.site-nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  padding-block: 1.1rem;
  transition:
    transform 0.45s var(--ease-punch),
    background-color 0.4s var(--ease-punch),
    border-color 0.4s,
    backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
  transform: translate3d(0, 0, 0);
}
/* Sai de cena por transform: nada e repaginado, e a barra volta inteira no
   primeiro gesto de subida. */
.site-nav.is-hidden { transform: translate3d(0, -105%, 0); }
.site-nav.is-scrolled {
  background-color: rgba(11, 9, 7, 0.86);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(232, 176, 75, 0.18);
}
.nav-link {
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--cream-dim);
  transition: color 0.25s;
  position: relative;
}
.nav-link:hover { color: var(--gold); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-punch);
}
.nav-link:hover::after { transform: scaleX(1); }

.monogram {
  width: 2.4rem;
  height: auto;
  aspect-ratio: 100 / 105;
  filter: drop-shadow(0 0 12px rgba(255, 193, 7, 0.25));
}

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-label);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 1.9rem;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: transform 0.3s var(--ease-punch), box-shadow 0.3s, background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 60%, var(--gold-deep));
  color: var(--ink);
  box-shadow: 0 0 0 0 rgba(232, 176, 75, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px -8px rgba(232, 176, 75, 0.55);
}
.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--gold-deep);
  color: var(--cream);
}
.btn-secondary:hover {
  background: rgba(232, 176, 75, 0.1);
  border-color: var(--gold);
  color: var(--gold-bright);
  transform: translateY(-2px);
}
.btn-crimson {
  background: linear-gradient(135deg, var(--crimson-bright), var(--crimson));
  color: var(--cream);
}
.btn-crimson:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px -8px rgba(178, 58, 70, 0.55);
}

/* ---- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(232, 176, 75, 0.16), transparent 70%), var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  z-index: 0;
  filter: saturate(1.1) contrast(1.05);
}
.hero-tubes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0.85;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(11, 9, 7, 0.95), transparent 70%),
    linear-gradient(0deg, rgba(11,9,7,0.55), transparent 45%);
}
/* Logo layer: upper-center, behind the people cutout — sits higher than the
   heads so the mark reads clearly before the parallax kicks in */
.hero-layer-logo {
  position: absolute;
  inset-inline: 0;
  top: clamp(3.25rem, 8.5vh, 6rem);
  z-index: 2;
  text-align: center;
  will-change: transform;
  padding-inline: 1rem;
}

/* People cutout (transparent PNG/WebP): in front of the logo. Slightly scaled
   down and pushed lower than the stage backdrop; origin at the feet so the
   shrink keeps them planted on the bottom edge. */
.hero-people {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 100%;
  z-index: 3;
  pointer-events: none;
  will-change: transform;
  transform: translateY(4%) scale(0.9);
  transform-origin: 50% 100%;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5)) saturate(1.05);
}

/* Soft halo shadow behind the middle dancer — pops her off the stage */
.hero-girl-shadow {
  position: absolute;
  left: 50%;
  bottom: 4%;
  width: min(46vw, 560px);
  height: 62%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  will-change: transform;
  background: radial-gradient(ellipse 50% 55% at 50% 62%, rgba(6, 4, 10, 0.55), transparent 72%);
  filter: blur(6px);
}

/* Stage smoke: two drifting fog banks hugging the floor — one behind the
   people, one washing over their feet */
/* Plumas de fumaça de máquina: nascem nos CANTOS INFERIORES e sobem em coluna.
   Textura = ruído fractal (nuvem real); a forma de pluma vem da máscara radial
   ancorada no canto; o "respirar" (scale/rotate) fica nos pseudo-elementos para
   não brigar com o transform do parallax no elemento pai. */
.hero-smoke {
  position: absolute;
  bottom: -5%;
  width: 62%;
  height: 60%;
  pointer-events: none;
  will-change: transform;
}
.hero-smoke--back { left: -12%; z-index: 2; opacity: 0.75; }
.hero-smoke--front { right: -12%; z-index: 4; opacity: 0.6; }

.hero-smoke::before,
.hero-smoke::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='640' height='640'%3E%3Cfilter id='f' x='0' y='0' width='100%25' height='100%25'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.011 0.014' numOctaves='5' seed='11' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.94 0 0 0 0 0.93 0 0 0 0 0.97 0 0 0 1.7 -0.45'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23f)'/%3E%3C/svg%3E");
  background-size: 640px 640px;
  filter: blur(6px);
}

/* Pluma esquerda (atrás dos personagens) */
.hero-smoke--back::before {
  -webkit-mask-image: radial-gradient(ellipse 80% 95% at 10% 98%, #000 0%, rgba(0, 0, 0, 0.7) 40%, transparent 68%);
  mask-image: radial-gradient(ellipse 80% 95% at 10% 98%, #000 0%, rgba(0, 0, 0, 0.7) 40%, transparent 68%);
  transform-origin: 10% 98%;
  animation: smoke-plume 16s ease-in-out infinite alternate;
}
.hero-smoke--back::after {
  -webkit-mask-image: radial-gradient(ellipse 45% 65% at 6% 100%, #000 0%, transparent 62%);
  mask-image: radial-gradient(ellipse 45% 65% at 6% 100%, #000 0%, transparent 62%);
  transform-origin: 6% 100%;
  filter: blur(4px);
  animation: smoke-plume 22s ease-in-out infinite alternate-reverse;
}

/* Pluma direita (na frente, sobre os pés) */
.hero-smoke--front::before {
  -webkit-mask-image: radial-gradient(ellipse 80% 95% at 90% 98%, #000 0%, rgba(0, 0, 0, 0.7) 40%, transparent 68%);
  mask-image: radial-gradient(ellipse 80% 95% at 90% 98%, #000 0%, rgba(0, 0, 0, 0.7) 40%, transparent 68%);
  transform-origin: 90% 98%;
  animation: smoke-plume 19s ease-in-out infinite alternate;
}
.hero-smoke--front::after {
  -webkit-mask-image: radial-gradient(ellipse 45% 65% at 94% 100%, #000 0%, transparent 62%);
  mask-image: radial-gradient(ellipse 45% 65% at 94% 100%, #000 0%, transparent 62%);
  transform-origin: 94% 100%;
  filter: blur(4px);
  animation: smoke-plume 25s ease-in-out infinite alternate-reverse;
}

/* Respiração da pluma a partir do canto. Só transform: o navegador anima isso
   na GPU sem repintar. O antigo "turbilhão" via background-position obrigava a
   refazer o desfoque a cada quadro — bonito, mas era o que travava a rolagem. */
@keyframes smoke-plume {
  0% { transform: scale(0.9) rotate(-2deg); }
  100% { transform: scale(1.14) rotate(2.5deg); }
}

/* Info box: static (does NOT ride the parallax), boxed for emphasis */
.hero-info {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: clamp(1.5rem, 5vh, 3.5rem);
  z-index: 5;
  width: min(92%, 620px);
  padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem);
  text-align: center;
  background: rgba(11, 9, 7, 0.62);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 176, 75, 0.35);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
}
.hero-fade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 22%;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, var(--ink) 92%);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 11vw, 8.5rem);
  line-height: 0.86;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-sub {
  font-family: var(--font-label);
  font-size: clamp(0.95rem, 2vw, 1.35rem);
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ---- Brand strip: fixed label + looping logo marquee, fades at the edges ---- */
.brand-strip {
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(232, 176, 75, 0.15);
  border-bottom: 1px solid rgba(232, 176, 75, 0.15);
  background: var(--ink-2);
}
.brand-strip-label {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding-inline: clamp(1rem, 4vw, 1.75rem);
  background: var(--ink);
  border-right: 1px solid rgba(232, 176, 75, 0.22);
}
.brand-strip-label span {
  font-family: var(--font-label);
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  letter-spacing: 0.08em;
  line-height: 1.1;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-strip-track-wrap {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  position: relative;
}
/* Desvanecer as bordas com gradientes SOBRE a faixa, e nao com mask-image.
   Uma mascara aplicada a um elemento largo e animado obriga o navegador a
   rasterizar a faixa inteira a cada quadro — e quando um bloco dessa
   rasterizacao falha, o logo simplesmente nao aparece. Como o fundo da faixa
   e uma cor solida, dois gradientes reproduzem o mesmo efeito de graca. */
.brand-strip-track-wrap::before,
.brand-strip-track-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(1.5rem, 5%, 3.5rem);
  z-index: 2;
  pointer-events: none;
}
.brand-strip-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink-2), rgba(23, 16, 9, 0));
}
.brand-strip-track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink-2), rgba(23, 16, 9, 0));
}
.brand-strip-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(1.15rem, 2.4vw, 1.75rem);
  padding-block: 1.1rem;
  padding-inline: 1rem;
  /* rola sempre, sem pausa — nem no hover, nem no foco */
  animation: brand-scroll 44s linear infinite;
  animation-play-state: running !important;
  will-change: transform;
}
/* Cada marca ocupa uma CAIXA de tamanho fixo e o logo se ajusta dentro dela:
   é isso que deixa marcas largas e quadradas com o mesmo peso visual. */
.brand-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(5.5rem, 10vw, 7rem);
  height: clamp(2.7rem, 4.6vw, 3.2rem);
}
.brand-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  opacity: 0.62;
  filter: brightness(1);
  transition: opacity 0.35s ease, filter 0.35s ease;
}
.brand-logo:hover img,
.brand-logo:focus-within img {
  opacity: 1;
  filter: brightness(1.15);
}
@keyframes brand-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 640px) {
  .brand-strip-label { padding-inline: 0.85rem; }
  .brand-strip-label span { font-size: 0.8rem; }
}

/* ---- Stage lights: WebGL moving-head beams over the Round 01→footer zone.
   The wrapper spans the zone; the sticky inner keeps a viewport-sized canvas
   on screen instead of one page-tall canvas. ---- */
.pillar-zone { position: relative; }
/* Content (every .wrap) is lifted above the canvas, so the light washes the
   section backgrounds but never sits over photos, text or buttons. */
.pillar-zone .wrap { position: relative; z-index: 2; }
/* Also blend-free, and for the same reason: this layer spans everything from
   Round 01 to the footer, so a screen blend here would de-optimise scrolling
   across most of the page. The shader now outputs the light's luminance as
   alpha, so ordinary compositing reproduces the same glow on the dark ink. */
.light-pillar {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}
.light-pillar-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  width: 100%;
  overflow: hidden;
}
.light-pillar-sticky canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---- Section rhythm ----------------------------------------------------- */
.section { padding-block: clamp(3.25rem, 6.5vw, 5.5rem); position: relative; }
.section-alt { background: var(--ink-2); }

/* ---- About photo collage ------------------------------------------------ */
.collage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  height: clamp(320px, 42vw, 460px);
}
.collage .tile {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(232, 176, 75, 0.22);
}
.collage .tile:nth-child(1) { grid-row: 1 / 3; }
.collage .tile:nth-child(2) { grid-row: 1 / 4; align-self: center; height: 92%; }
.collage .tile:nth-child(3) { grid-row: 1 / 3; }
.collage .tile:nth-child(4) { grid-row: 1 / 2; }
/* ---- Real photo frame: consistent crop + vignette across hero/about/gallery ---- */
.photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--ink-2);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.04);
  transition: transform 0.6s var(--ease-punch);
}
.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 3.5rem 0.25rem rgba(11, 9, 7, 0.55);
  pointer-events: none;
}

/* ---- Tag chip (event-type chips in "Sobre", tale-of-the-tape tags) -------- */
.ticket-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson-bright);
  border: 1px solid rgba(178,58,70,0.4);
  padding: 0.25rem 0.6rem;
}

/* ---- Cartél / social feature cards: Instagram + YouTube focus ---- */
.social-feature-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.6rem;
  border: 1px solid rgba(232, 176, 75, 0.22);
  background: linear-gradient(160deg, rgba(232, 176, 75, 0.06), transparent 65%);
  transition: transform 0.3s var(--ease-punch), border-color 0.3s, background 0.3s;
}
.social-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 176, 75, 0.5);
  background: linear-gradient(160deg, rgba(232, 176, 75, 0.12), transparent 65%);
}
.social-feature-card--yt:hover {
  border-color: rgba(178, 58, 70, 0.55);
  background: linear-gradient(160deg, rgba(178, 58, 70, 0.14), transparent 65%);
}
.social-feature-icon {
  flex: 0 0 auto;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 176, 75, 0.1);
  border: 1px solid rgba(232, 176, 75, 0.3);
  color: var(--gold);
}
.social-feature-card--yt .social-feature-icon {
  background: rgba(178, 58, 70, 0.12);
  border-color: rgba(178, 58, 70, 0.4);
  color: var(--crimson-bright);
}
.social-feature-handle {
  font-family: var(--font-label);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.social-feature-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}
.social-feature-cta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.social-feature-card--yt .social-feature-cta { color: var(--crimson-bright); }

.tape-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1px;
  background: rgba(232,176,75,0.15);
  border: 1px solid rgba(232,176,75,0.15);
  margin-bottom: 2.5rem;
}
.tape-stat {
  background: var(--ink);
  padding: 1.5rem 1.25rem;
  text-align: center;
}
.tape-stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold);
  display: block;
}
.tape-stat .label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

/* ---- Resenha do Nocaute (theme override) ---------------------------------- */
.resenha {
  background:
    radial-gradient(ellipse 70% 60% at 80% 0%, rgba(122, 31, 43, 0.35), transparent 60%),
    var(--ink);
  border-top: 1px solid rgba(178, 58, 70, 0.3);
  border-bottom: 1px solid rgba(178, 58, 70, 0.3);
}
.resenha .round-number { -webkit-text-stroke-color: var(--crimson-bright); }
.resenha .kicker { color: var(--crimson-bright); }
.resenha-badge {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: -0.01em;
  font-style: italic;
  color: var(--crimson-bright);
}
.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(178, 58, 70, 0.4);
  overflow: hidden;
  background: linear-gradient(200deg, #2a0f13, #0b0907);
}
.reel-card .photo-frame { position: absolute; inset: 0; }
.reel-card .photo-frame img { filter: saturate(1.05) contrast(1.05) brightness(0.85); }
.reel-card .photo-frame::after {
  box-shadow: none;
  background: linear-gradient(0deg, rgba(11,9,7,0.85), transparent 55%), rgba(122,31,43,0.18);
}
.reel-card .play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.reel-card .play span {
  width: 3rem; height: 3rem;
  border-radius: 50%;
  border: 1.5px solid var(--crimson-bright);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  transition: transform 0.3s var(--ease-punch), background 0.3s;
}
.reel-card:hover .play span { transform: scale(1.15); background: rgba(178,58,70,0.25); }
.reel-card:hover .photo-frame img { transform: scale(1.06); }
.reel-card--wide {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}
/* Inline playback state: clear the vignette/tag so nothing shades or blocks the video */
.is-playing .photo-frame::after { display: none; }
.reel-card.is-playing .tag { display: none; }
.reel-card.is-playing:hover .photo-frame img { transform: none; }

/* Compact video rows: extra YouTube links below the featured cards */
.video-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.7rem;
  border: 1px solid rgba(178, 58, 70, 0.3);
  background: rgba(122, 31, 43, 0.08);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-punch);
}
.video-row:hover {
  border-color: rgba(178, 58, 70, 0.6);
  background: rgba(122, 31, 43, 0.16);
  transform: translateY(-2px);
}
.video-row img {
  width: 84px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid rgba(178, 58, 70, 0.35);
}
.video-row-title {
  font-family: var(--font-label);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  color: var(--cream);
  line-height: 1.25;
}
.video-row-meta {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crimson-bright);
}
.reel-card .tag {
  position: absolute; top: 0.75rem; left: 0.75rem;
  font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.12em;
  color: var(--cream); text-transform: uppercase;
  border: 1px solid rgba(178,58,70,0.5); padding: 0.2rem 0.5rem;
  background: rgba(11,9,7,0.4);
}

/* ---- Gallery ---------------------------------------------------------------- */
.accordion-gallery {
  --ag-media-size: 320px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  height: 460px;
  perspective: 1400px;
  perspective-origin: 50% 50%;
}
.ag-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid rgba(232, 176, 75, 0.18);
  cursor: pointer;
  display: block;
  outline: none;
  transform-style: preserve-3d;
  transform-origin: center center;
  background: var(--ink-2);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.8);
  /* flex-grow e propriedade de LAYOUT: declarar em will-change nao promove
     nada, so reserva memoria a toa. O que de fato anda na GPU e o transform.
     `contain` isola o layout interno do painel, entao o flex-grow do acordeao
     so remede a fileira - nao desce dentro de cada painel. */
  will-change: transform;
  contain: layout paint;
  -webkit-tap-highlight-color: transparent;
}
.ag-panel:focus-visible {
  box-shadow: 0 0 0 2px var(--gold), 0 10px 30px -18px rgba(0, 0, 0, 0.8);
}
.ag-panel__frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
}
.ag-panel__media {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--ag-media-size);
  height: 100%;
  transform: translate(-50%, -50%);
  filter: grayscale(1);
  will-change: transform, filter;
}
.ag-panel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
.ag-panel__dim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: var(--ink);
  opacity: 0.35;
}
.ag-panel__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 9, 7, 0.8) 100%);
}
.ag-panel__label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: none;
  z-index: 2;
}
.ag-panel__bar {
  flex: 0 0 auto;
  width: 3px;
  height: 24px;
  border-radius: 3px;
  background: var(--gold);
  opacity: 0;
  box-shadow: 0 0 12px rgba(232, 176, 75, 0.6);
}
.ag-panel__text {
  color: var(--gold-bright);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}
@media (max-width: 520px) {
  .accordion-gallery {
    flex-direction: column;
    perspective: none;
    height: auto;
  }
  .ag-panel {
    min-height: 84px;
    transform: none !important;
  }
  .accordion-gallery .ag-panel__media {
    width: 100%;
    height: var(--ag-media-size);
  }
}

/* ---- Final CTA ---------------------------------------------------------------- */
.final-cta {
  position: relative;
  text-align: center;
  background: radial-gradient(ellipse 60% 70% at 50% 100%, rgba(232,176,75,0.16), transparent 65%), var(--ink-2);
  border-top: 1px solid rgba(232,176,75,0.2);
}
.final-cta h2 {
  font-size: clamp(2.4rem, 7vw, 5.2rem);
  line-height: 0.95;
}

/* ---- Footer ---------------------------------------------------------------- */
.site-footer { background: var(--ink); border-top: 1px solid rgba(232,176,75,0.14); }
.social-icon {
  width: 2.75rem; height: 2.75rem;
  border: 1px solid rgba(232,176,75,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim);
  /* `all` obriga o navegador a vigiar toda propriedade animavel do elemento;
     aqui so tres mudam no hover. */
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease-punch);
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ---- Botão flutuante do WhatsApp ------------------------------------------
   O botão É o logo oficial (assets/img/whatsapp.png, recortado do arquivo do
   cliente). Some o gradiente verde improvisado e o ícone desenhado à mão: o
   próprio selo do WhatsApp já é redondo e universalmente reconhecido, então
   não precisa de pílula em volta. Mesmo tamanho no desktop e no celular. */
.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: block;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  /* a sombra verde destaca o selo do fundo escuro sem pintar nada por baixo */
  box-shadow: 0 12px 30px -10px rgba(37, 211, 102, 0.65);
  transition: transform 0.3s var(--ease-punch), box-shadow 0.3s;
}
.whatsapp-fab picture,
.whatsapp-fab img {
  display: block;
  width: 100%;
  height: 100%;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 16px 38px -10px rgba(37, 211, 102, 0.9);
}
.whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.65);
  animation: fab-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes fab-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  70%, 100% { transform: scale(1.35); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab::before { animation: none; }
}

/* ---- Lightbox ---------------------------------------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(11,9,7,0.94);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: var(--cream); font-family: var(--font-mono);
  font-size: 0.75rem; letter-spacing: 0.14em;
  border: 1px solid rgba(244,236,218,0.3);
  padding: 0.5rem 0.9rem;
  background: transparent;
  cursor: pointer;
}
.lightbox img {
  max-width: min(84vw, 720px);
  max-height: 78vh;
  width: auto;
  height: auto;
  border: 1px solid rgba(232,176,75,0.25);
  object-fit: contain;
}

/* ---- Reveal-on-scroll baseline (JS toggles .is-visible) -----------------------
   Tudo aqui depende de html.js, que o <head> liga numa linha e volta a
   desligar em 4s se o main.js nao confirmar que assumiu. Sem JS - ou com o
   arquivo fora do ar - a pagina nasce e permanece 100% visivel, em vez de
   ficar em branco esperando uma animacao que nunca vem. */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease-punch), transform 0.55s var(--ease-punch);
}
html.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* Cascata: o bloco continua visivel e quem entra em sequencia sao os filhos. */
html.js [data-reveal="stagger"] { opacity: 1; transform: none; }
html.js [data-reveal="stagger"] > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease-punch), transform 0.5s var(--ease-punch);
}
html.js [data-reveal="stagger"].is-visible > * { opacity: 1; transform: translateY(0); }
/* atraso em degrau para o caminho sem GSAP (o GSAP usa o stagger dele) */
html.js [data-reveal="stagger"].is-visible > *:nth-child(2) { transition-delay: 0.06s; }
html.js [data-reveal="stagger"].is-visible > *:nth-child(3) { transition-delay: 0.12s; }
html.js [data-reveal="stagger"].is-visible > *:nth-child(4) { transition-delay: 0.18s; }
html.js [data-reveal="stagger"].is-visible > *:nth-child(5) { transition-delay: 0.24s; }
html.js [data-reveal="stagger"].is-visible > *:nth-child(n+6) { transition-delay: 0.3s; }

/* Quando o GSAP assume, ele escreve opacity/transform inline a cada quadro.
   Deixar a transition do CSS ligada faz o navegador interpolar DE NOVO cada
   valor ja interpolado: as duas curvas se somam, o reveal ganha ~0,8s de
   atraso e fica com aquele arrastao de borracha. */
html.gsap-reveals [data-reveal],
html.gsap-reveals [data-reveal="stagger"] > * { transition: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js [data-reveal],
  html.js [data-reveal="stagger"] > * { opacity: 1; transform: none; transition: none; }
}

/* ---- Responsive ---------------------------------------------------------------- */
@media (max-width: 860px) {
  .collage { grid-template-columns: repeat(2, 1fr); height: auto; }
  .collage .tile { grid-row: auto !important; height: 42vw; align-self: auto !important; }
}

/* ================================================================
   MOBILE (≤ 640px) — hero composition
   ================================================================ */
@media (max-width: 640px) {
  /* 1. Decoration out of the corners (brackets + cursor-driven light trails);
        the nav itself stays — it is the menu. */
  .ring-corner { display: none; }
  .hero-tubes { display: none; }

  /* 1b. SCROLL PERFORMANCE (Android):
     - .grain is a fixed, full-screen mix-blend-mode layer, so the browser
       re-blends the whole viewport on every scroll frame;
     - the smoke animates transform AND background-position *through* a blur,
       forcing the blurred area to be re-rasterised every frame.
     Both are the usual suspects for hero jank on phones. Static smoke keeps
     the look and costs one rasterisation instead of sixty per second. */
  .grain { display: none; }
  .hero-smoke,
  .hero-smoke::before,
  .hero-smoke::after {
    animation: none !important;
    will-change: auto;
  }
  .hero-info {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }

  /* 2. Stage backdrop: cover + center top so the truss/lights frame the top
        and nothing important is pushed off the vertical crop */
  .hero-bg {
    object-fit: cover;
    object-position: center top;
  }

  /* 3. People: size by WIDTH, not cover. The cutout carries transparent side
        padding, so overflowing the viewport keeps the trio uncropped while
        letting them read large. Feet stay on the bottom edge. */
  .hero-people {
    top: auto;
    right: auto;
    /* lifted off the bottom edge so the trio sits close under the wordmark
       instead of stranded at the foot of the screen */
    bottom: 25%;
    left: 50%;
    /* trio occupies 21%–81.75% of the file, centred at 51.4% — the negative
       margin re-centres the people (not the file) on the viewport, so
       margin-left must stay at 51.375% of the width below.
       162% is the ceiling: the trio then spans ~98% of the viewport, so any
       larger starts clipping the outstretched hands.
       max-width:none is REQUIRED: the global `img { max-width: 100% }` would
       otherwise clamp this back to the viewport and crop the outer two. */
    width: 162%;
    max-width: none;
    margin-left: -83.2%;
    height: auto;
    object-fit: contain;
    transform: none;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.55)) saturate(1.05);
  }
  .hero-girl-shadow { display: none; }

  /* Wordmark: lower and larger so it centres in the upper half instead of
     crowding the nav, and meets the heads when the parallax sinks it */
  .hero-layer-logo { top: clamp(4.5rem, 14vh, 7.5rem); }
  .hero-title { font-size: clamp(3.2rem, 16vw, 5rem); }
  .hero-layer-logo .kicker { font-size: 0.62rem; letter-spacing: 0.24em; }

  /* 4. Floating glass card: side gutters, compact, clears the faces */
  .hero-info {
    left: 0;
    right: 0;
    transform: none;
    width: calc(100% - 32px);
    max-width: 460px;
    margin: 0 auto;
    bottom: 2.4rem;
    padding: 1.1rem 1.15rem 1.2rem;
    border-radius: 4px;
    background: rgba(11, 9, 7, 0.58);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 44px -16px rgba(0, 0, 0, 0.75);
  }
  .hero-info .hero-sub { font-size: 0.82rem; letter-spacing: 0.18em; }
  .hero-info > div { margin-top: 0.85rem; gap: 0.6rem; }
  .hero-info .btn {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 0.88rem;
  }
  .hero-info > p:last-child {
    margin-top: 0.85rem;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
  }

  /* Smoke sits lower and lighter so it doesn't fog the card */
  .hero-smoke { height: 46%; }
  .hero-smoke--back { opacity: 0.6; }
  .hero-smoke--front { opacity: 0.45; }
}

/* Small phones (360–430px): tighten type and gutters a little further */
@media (max-width: 430px) {
  .hero-title { font-size: clamp(2.9rem, 14.5vw, 4rem); }
  .hero-info { width: calc(100% - 24px); padding: 1rem; bottom: 2rem; }
  .hero-info .btn { font-size: 0.82rem; padding: 0.75rem 0.9rem; }
  .section { padding-block: clamp(3.25rem, 12vw, 5rem); }
  .wrap { padding-inline: 1.1rem; }
  .tape-stat { padding: 1.1rem 0.75rem; }
  .video-row { padding: 0.55rem; gap: 0.7rem; }
  .video-row img { width: 68px; }
}

/* ================================================================
   FACHOS DE PALCO — versão CSS (celular)
   Substitui a coluna de luz WebGL, que foi desligada no celular por
   custo de GPU. Aqui só `transform` e `opacity` animam: as duas
   propriedades que o navegador anima no compositor, sem repintar
   nem re-rasterizar — ou seja, visual de volta, scroll intacto.
   ================================================================ */
.stage-beams { display: none; }

@media (max-width: 640px) {
  .stage-beams {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.55;
  }
  .stage-beams-sticky {
    position: sticky;
    top: 0;
    height: 100svh;
    overflow: hidden;
  }
  .beam {
    position: absolute;
    top: -10%;
    width: 70vw;
    height: 130vh;
    margin-left: -35vw;
    transform-origin: 50% 0;
    /* cone: estreito no refletor, aberto embaixo */
    clip-path: polygon(45% 0, 55% 0, 100% 100%, 0 100%);
    will-change: transform, opacity;
  }
  .beam-1 {
    left: 10%;
    background: linear-gradient(180deg, rgba(232, 176, 75, 0.55), rgba(232, 176, 75, 0.08) 52%, transparent 76%);
    animation: beam-a 11s ease-in-out infinite alternate, beam-flash 6.5s ease-in-out infinite;
  }
  .beam-2 {
    left: 50%;
    background: linear-gradient(180deg, rgba(178, 58, 70, 0.5), rgba(178, 58, 70, 0.08) 52%, transparent 76%);
    animation: beam-b 14s ease-in-out infinite alternate, beam-flash 8.5s ease-in-out infinite 1.4s;
  }
  .beam-3 {
    left: 90%;
    background: linear-gradient(180deg, rgba(247, 203, 110, 0.5), rgba(247, 203, 110, 0.07) 52%, transparent 76%);
    animation: beam-c 9.5s ease-in-out infinite alternate, beam-flash 7.2s ease-in-out infinite 3s;
  }
  @keyframes beam-a {
    from { transform: rotate(-20deg); }
    to   { transform: rotate(8deg); }
  }
  @keyframes beam-b {
    from { transform: rotate(11deg); }
    to   { transform: rotate(-13deg); }
  }
  @keyframes beam-c {
    from { transform: rotate(19deg); }
    to   { transform: rotate(-7deg); }
  }
  /* respiro de intensidade, como refletor pulsando */
  @keyframes beam-flash {
    0%, 100% { opacity: 0.75; }
    45%      { opacity: 1; }
    70%      { opacity: 0.55; }
  }
}

/* ================================================================
   PASSE SEO / LANDING PAGE ÚNICA
   Componentes novos, construídos com os mesmos tokens do
   "Fight Night Dourado" — nenhuma cor, fonte ou motivo novo.
   ================================================================ */

/* Utilitários que o build estático do Tailwind não gerou */
.text-cream-dim { color: var(--cream-dim); }
.mb-4  { margin-bottom: 1rem; }
.mt-12 { margin-top: 3rem; }

/* Âncoras precisam parar ABAIXO da nav fixa, senão o título da seção
   fica escondido atrás dela ao chegar por um card ou pelo menu. */
html { scroll-padding-top: 5.5rem; }

/* ---- Skip link (acessibilidade por teclado) ---------------------------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 0.85rem 1.4rem;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---- Nav: sete itens + CTA precisam de um respiro menor ---------------- */
.nav-links { gap: clamp(1rem, 1.9vw, 1.75rem); }
@media (min-width: 768px) and (max-width: 1080px) {
  .nav-link { font-size: 0.78rem; letter-spacing: 0.12em; }
}

/* ---- Hero: H1 agora carrega marca + proposta ---------------------------- */
.hero-title { font-size: inherit; }
.hero-title__mark {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 11vw, 8.5rem);
  line-height: 0.86;
}
/* A linha-chave fica ACIMA do wordmark: abaixo dele ela cairia atrás do
   recorte das pessoas (z-index 3 contra 2) e ficaria encoberta pelo corpo do
   cantor no desktop — nenhum text-shadow resolve oclusão. */
.hero-title__lead {
  display: block;
  margin-bottom: clamp(0.5rem, 1.2vw, 0.9rem);
  font-family: var(--font-label);
  font-size: clamp(0.95rem, 2.1vw, 1.5rem);
  line-height: 1.15;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
}

/* ---- Cards "Escolha o seu evento" -------------------------------------- */
.evento-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1.15rem);
}
.evento-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(232, 176, 75, 0.18);
  background: var(--ink-2);
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s var(--ease-punch), box-shadow 0.35s;
}
.evento-card:hover,
.evento-card:focus-visible {
  border-color: rgba(232, 176, 75, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(232, 176, 75, 0.35);
}
.evento-card__media {
  display: block;
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink);
}
.evento-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.05) brightness(0.82);
  transition: transform 0.6s var(--ease-punch), filter 0.5s ease;
}
.evento-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 9, 7, 0.85), transparent 55%);
  pointer-events: none;
}
.evento-card:hover .evento-card__media img,
.evento-card:focus-visible .evento-card__media img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.05) brightness(0.95);
}
.evento-card__body {
  display: block;
  padding: 0.95rem 1rem 1.15rem;
  border-top: 1px solid rgba(232, 176, 75, 0.12);
}
.evento-card__title {
  display: block;
  font-family: var(--font-label);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  line-height: 1.1;
}
.evento-card__desc {
  display: block;
  margin-top: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--cream-dim);
}
/* Em duas colunas o recorte 3:4 empilha alto demais; o quadrado corta quase
   um terço da altura da seção sem apertar a foto. */
@media (max-width: 900px) {
  .evento-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .evento-card__media { aspect-ratio: 1 / 1; }
  /* O recorte quadrado corta a imagem pelo meio vertical e decepava o topo
     das cabecas nesta foto. Puxar o foco para cima desce a imagem dentro do
     quadro. So no celular: no desktop o quadro e 3:4, igual a propria foto,
     entao nao ha recorte nenhum. */
  .evento-card__media--topo img { object-position: 50% 20%; }
  .evento-card__body { padding: 0.8rem 0.85rem 1rem; }
  .evento-card__desc { font-size: 0.78rem; margin-top: 0.35rem; }
  .evento-card__more { margin-top: 0.55rem; font-size: 0.72rem; }
}
@media (max-width: 430px)  { .evento-card__desc { font-size: 0.76rem; } }

/* ---- Rótulo + lista de bullets: nasceram nas seções por tipo de evento,
   agora vivem dentro dos modais ------------------------------------------- */
.evento-sec__label {
  display: inline-block;
  font-family: var(--font-label);
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.evento-list {
  list-style: none;
  margin: 1.25rem 0 1.6rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.evento-list li {
  position: relative;
  padding-left: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: var(--cream-dim);
}
.evento-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.75rem;
  height: 1px;
  background: var(--gold);
}

/* ---- Sobre: quatro blocos de contexto ---------------------------------- */
.sobre-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(232, 176, 75, 0.15);
}
.sobre-card { padding-left: 1.1rem; border-left: 1px solid rgba(232, 176, 75, 0.28); }
.sobre-card h3 {
  font-family: var(--font-label);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 0.6rem;
  line-height: 1.15;
}
.sobre-card .body-copy { font-size: 0.9rem; }
@media (max-width: 980px) { .sobre-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .sobre-grid { grid-template-columns: 1fr; } }

/* ---- Clientes: lista legível (o marquee é visual, isto é conteúdo) ----- */
.clientes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.clientes-col h3 {
  font-family: var(--font-label);
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.6rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid rgba(232, 176, 75, 0.22);
}
.clientes-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.clientes-col li {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--cream-dim);
}
@media (max-width: 780px) { .clientes-grid { grid-template-columns: 1fr; } }

/* ---- FAQ: <details> nativo — sem JS, acessível por teclado ------------- */
.faq-list { border-top: 1px solid rgba(232, 176, 75, 0.15); }
.faq-item { border-bottom: 1px solid rgba(232, 176, 75, 0.15); }
.faq-item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 0;
  cursor: pointer;
  list-style: none;
  transition: color 0.25s;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::marker { content: ""; }
.faq-item > summary:hover h3 { color: var(--gold-bright); }
.faq-item > summary h3 {
  display: inline;
  font-family: var(--font-label);
  font-size: clamp(1rem, 1.9vw, 1.3rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.25s;
}
.faq-plus {
  position: relative;
  flex: 0 0 auto;
  width: 1.05rem;
  height: 1.05rem;
}
.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--gold);
  transition: transform 0.3s var(--ease-punch), opacity 0.3s;
}
.faq-plus::before { width: 100%; height: 1.5px; }
.faq-plus::after  { width: 1.5px; height: 100%; }
.faq-item[open] .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item[open] > summary h3 { color: var(--gold-bright); }
.faq-answer { padding: 0 0 1.35rem; max-width: 60ch; }
.faq-answer .body-copy { font-size: 0.94rem; }
.faq-answer a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.faq-answer a:hover { color: var(--gold-bright); }

/* ---- Vídeos: o sub-selo "Resenha" agora é H3, abaixo do H2 ------------- */
.resenha h3.resenha-badge { font-size: clamp(1.5rem, 3.2vw, 2.2rem); }

/* ---- Rodapé: mapa interno da landing page ------------------------------ */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(232, 176, 75, 0.14);
}
.footer-nav a {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--cream-dim);
  transition: color 0.25s;
}
.footer-nav a:hover { color: var(--gold); }

/* ---- Foco visível em qualquer link/botão (antes só havia :hover) ------- */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
.evento-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ================================================================
   PASSE ENXUTO — 4 cards + modais
   O conteúdo detalhado saiu do fluxo vertical e foi para <dialog>.
   Continua no HTML (indexável), mas não alonga mais a página.
   ================================================================ */

/* ---- Card: agora com afordância explícita de "abre algo" -------------- */
.evento-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.7rem;
  font-family: var(--font-label);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s var(--ease-punch), color 0.25s;
}
.evento-card__more::after {
  content: "→";
  font-family: var(--font-mono);
  transition: transform 0.3s var(--ease-punch);
}
.evento-card:hover .evento-card__more,
.evento-card:focus-visible .evento-card__more { color: var(--gold-bright); gap: 0.65rem; }

/* ---- Linha dos outros quatro formatos (não são cards, é uma linha) ---- */
.evento-extras {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.25rem;
  margin-top: clamp(1.5rem, 3vw, 2.25rem);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(232, 176, 75, 0.15);
}
.evento-extras__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
.evento-extras a {
  font-family: var(--font-label);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border-bottom: 1px solid rgba(232, 176, 75, 0.3);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}
.evento-extras a:hover { color: var(--gold-bright); border-color: var(--gold); }

/* ---- Subtítulo interno da seção "ao vivo" ---------------------------- */
.ao-vivo-sub {
  font-family: var(--font-label);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.social-inline {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--cream-faint);
  letter-spacing: 0.04em;
}
.social-inline a {
  color: var(--gold);
  border-bottom: 1px solid rgba(232, 176, 75, 0.35);
  transition: color 0.25s;
}
.social-inline a:hover { color: var(--gold-bright); }

/* ---- Modal (<dialog> nativo) ------------------------------------------
   <dialog> traz de graça o que uma div teria de simular à mão: camada de
   topo, ::backdrop, Esc para fechar, foco preso dentro e o resto da página
   inerte para leitores de tela. A animação usa @starting-style +
   allow-discrete; onde isso não existe, o modal simplesmente aparece —
   degrada sem quebrar. ---------------------------------------------------- */
.modal {
  padding: 0;
  border: 1px solid rgba(232, 176, 75, 0.38);
  background: var(--ink-2);
  color: var(--cream);
  width: min(940px, 92vw);
  max-width: 92vw;
  max-height: min(86vh, 780px);
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9);
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 0.35s var(--ease-punch),
    transform 0.35s var(--ease-punch),
    overlay 0.35s allow-discrete,
    display 0.35s allow-discrete;
}
.modal[open] { opacity: 1; transform: none; }
@starting-style {
  .modal[open] { opacity: 0; transform: translateY(18px) scale(0.985); }
}
.modal::backdrop {
  background: rgba(5, 4, 3, 0.78);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s, overlay 0.35s allow-discrete, display 0.35s allow-discrete;
}
.modal[open]::backdrop { opacity: 1; }
@starting-style {
  .modal[open]::backdrop { opacity: 0; }
}

.modal__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1.38fr);
  max-height: inherit;
}
.modal__media { position: relative; overflow: hidden; background: var(--ink); }
.modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}
.modal__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(23, 16, 9, 0.85));
  pointer-events: none;
}
.modal__body {
  padding: clamp(1.5rem, 3.2vw, 2.75rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  max-height: min(86vh, 780px);
}
.modal__body h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.modal__body .body-copy { margin-bottom: 0.9rem; font-size: 0.94rem; }
.modal--texto .modal__body { max-width: none; }

.modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(232, 176, 75, 0.35);
  border-radius: 50%;
  background: rgba(11, 9, 7, 0.75);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--cream);
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s var(--ease-punch);
}
.modal__close:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  transform: rotate(90deg);
}

/* Os quatro blocos "sobre" cabem em duas colunas dentro do modal */
.modal .sobre-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  gap: 1.5rem;
}
.modal .sobre-card .body-copy { font-size: 0.88rem; margin-bottom: 0; }

/* Trava a rolagem do fundo enquanto o modal está aberto */
html.modal-aberto, html.modal-aberto body { overflow: hidden; }

/* ---- Celular: o modal vira folha que sobe pela borda inferior --------- */
@media (max-width: 720px) {
  .modal {
    position: fixed;
    inset: auto 0 0 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
    max-height: 92svh;
    border-radius: 14px 14px 0 0;
    border-bottom: 0;
    transform: translateY(100%);
  }
  .modal[open] { transform: translateY(0); }
  @starting-style {
    .modal[open] { transform: translateY(100%); opacity: 1; }
  }
  .modal__grid { grid-template-columns: 1fr; grid-template-rows: auto 1fr; max-height: 92svh; }
  .modal__media { height: 150px; }
  .modal__media img { object-position: 50% 35%; }
  .modal__media::after { background: linear-gradient(180deg, transparent 40%, rgba(23, 16, 9, 0.9)); }
  .modal__body { max-height: none; padding: 1.35rem 1.25rem 2rem; }
  /* alça visual da folha */
  .modal::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    width: 2.75rem;
    height: 4px;
    border-radius: 999px;
    background: rgba(244, 236, 218, 0.45);
  }
  .modal__close { top: 0.6rem; right: 0.6rem; width: 2.2rem; height: 2.2rem; }
  .modal .sobre-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .modal, .modal::backdrop { transition-duration: 0.01ms; }
  .modal { transform: none !important; }
}

/* ================================================================
   PASSE DE FLUIDEZ — navegação, microinterações e continuidade
   Nada aqui muda cor, fonte, texto, foto ou posição de elemento:
   é só comportamento de movimento, resposta ao toque e o custo que
   cada efeito cobra do navegador durante a rolagem.
   ================================================================ */

/* ---- Lenis: reset obrigatório -----------------------------------------
   O Lenis rola a página escrevendo a posição a cada quadro. Com
   `scroll-behavior: smooth` valendo no html, o navegador tenta suavizar
   POR CIMA de cada uma dessas escritas — as duas suavizações se somam e o
   resultado é o scroll pastoso, que atrasa em relação à roda do mouse.
   Enquanto o Lenis está ativo ele mesmo marca <html class="lenis">; aqui a
   suavização nativa sai de cena e sobra uma só. Sem Lenis (celular,
   reduced-motion, CDN fora do ar) a regra não casa e o smooth nativo
   continua valendo, como antes. */
html.lenis,
html.lenis body { height: auto; }
html.lenis.lenis-smooth { scroll-behavior: auto; }
html.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

/* ---- Nav: seção atual + menu mobile com transição --------------------- */
/* Indicador discreto: reaproveita exatamente o sublinhado dourado que já
   existe no hover. Nenhum elemento novo, nenhuma cor nova. */
.nav-link.is-current { color: var(--gold); }
.nav-link.is-current::after { transform: scaleX(1); }

[data-mobile-menu] {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.24s var(--ease-punch), transform 0.24s var(--ease-punch);
  max-height: calc(100svh - 4.5rem);
  overflow-y: auto;
  overscroll-behavior: contain;
}
[data-mobile-menu].is-open { opacity: 1; transform: none; }

/* ---- Hero: devolver a memória depois que ele sai de cena --------------
   As camadas do parallax ficam com will-change:transform para o navegador
   manter cada uma numa textura própria. Passado o hero, ninguém mais as
   move: segurar as texturas só ocupa memória de GPU pelo resto da página. */
.hero--fora .hero-bg,
.hero--fora .hero-people,
.hero--fora .hero-layer-logo,
.hero--fora .hero-smoke,
.hero--fora .hero-girl-shadow { will-change: auto; }

/* ---- Resposta ao clique e ao toque -----------------------------------
   O site tinha estados de :hover bem resolvidos e nada acontecendo no
   instante do clique — no celular, onde hover não existe, o botão parecia
   inerte até a página do WhatsApp abrir. */
.btn,
.nav-link,
.evento-card,
.evento-extras a,
.video-row,
.reel-card,
.ag-panel,
.social-icon,
.whatsapp-fab,
.faq-item > summary,
.modal__close { touch-action: manipulation; }

.btn:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.09s;
}
.evento-card:active { transform: translateY(0) scale(0.99); transition-duration: 0.09s; }
.video-row:active,
.social-feature-card:active { transform: translateY(0) scale(0.99); transition-duration: 0.09s; }
.social-icon:active { transform: scale(0.94); transition-duration: 0.09s; }
.whatsapp-fab:active { transform: scale(0.93); transition-duration: 0.09s; }

/* Em tela de toque não existe "passar o mouse": o :hover que sobra é o
   estado grudado depois do toque, que deixava o card levantado por engano.
   O :focus-visible dos mesmos componentes continua intacto (teclado). */
@media (hover: none) {
  .btn-primary:hover,
  .btn-secondary:hover,
  .btn-crimson:hover,
  .evento-card:hover,
  .social-feature-card:hover,
  .video-row:hover,
  .social-icon:hover,
  .whatsapp-fab:hover,
  .modal__close:hover { transform: none; }
  .evento-card:hover .evento-card__media img,
  .reel-card:hover .photo-frame img { transform: none; }
  .reel-card:hover .play span { transform: none; }
}

/* ---- Costura entre os Rounds -----------------------------------------
   Onde há degrau de cor de fundo (ink -> ink-2), o corte era uma linha
   reta atravessando a tela: a seção "acabava" e a outra "começava". Uma
   faixa curta com as MESMAS duas cores do tema dissolve essa borda, e a
   passagem passa a ler como continuação. Nenhuma cor nova entra. */
.section-alt::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 80px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, var(--ink), rgba(11, 9, 7, 0));
}
/* Só do lado de Clientes: abaixo do FAQ vem o CTA final, que já é ink-2 —
   ali não existe degrau nenhum para dissolver. */
#clientes::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 80px;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(0deg, var(--ink), rgba(11, 9, 7, 0));
}

/* ---- FAQ: abrir e fechar com altura animada --------------------------
   <details> abre em corte seco e empurra o resto da página de uma vez. Nos
   navegadores que já suportam ::details-content dá para interpolar a
   altura de verdade; nos outros, a resposta entra com um fade curto. */
@supports selector(::details-content) {
  :root { interpolate-size: allow-keywords; }
  .faq-item::details-content {
    block-size: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      content-visibility 0.34s allow-discrete,
      block-size 0.34s var(--ease-punch),
      opacity 0.26s ease;
  }
  .faq-item[open]::details-content { block-size: auto; opacity: 1; }
}
@supports not selector(::details-content) {
  .faq-item[open] .faq-answer { animation: faq-abre 0.32s var(--ease-punch) both; }
}
@keyframes faq-abre {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* ---- Player do YouTube: o iframe entra por fade -----------------------
   A miniatura sumia e o retângulo preto do player aparecia no lugar. */
.yt-embed { animation: yt-entra 0.35s ease both; }
@keyframes yt-entra {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---- Lightbox: a foto acompanha o fade em vez de já nascer no lugar --- */
.lightbox img {
  transform: scale(0.985);
  transition: transform 0.35s var(--ease-punch);
}
.lightbox.is-open img { transform: none; }

/* ---- Filtros da galeria (o markup já traz data-category; os botões não
   estão na página hoje). Saída por opacidade ANTES de sair do fluxo, para
   a grade não dar o pulo clássico do display:none. --------------------- */
[data-gallery-item] { transition: opacity 0.22s var(--ease-punch); }
[data-gallery-item].is-filtered-out { opacity: 0; pointer-events: none; }

/* ---- prefers-reduced-motion: o que ainda animava sozinho --------------
   Já havia suporte para os reveals, o modal e o pulso do WhatsApp. Faltavam
   os laços infinitos — marquee de marcas, fachos de palco e fumaça — que
   são justamente os que mais incomodam quem liga essa preferência. */
@media (prefers-reduced-motion: reduce) {
  .brand-strip-track { animation: none !important; }
  .hero-smoke,
  .hero-smoke::before,
  .hero-smoke::after { animation: none !important; }
  .beam { animation: none !important; }
  .whatsapp-fab::before { animation: none !important; }
  .yt-embed,
  .faq-item[open] .faq-answer { animation: none; }
  .faq-item::details-content { transition: none; }
  .site-nav { transition: background-color 0.01ms linear, border-color 0.01ms linear; }
  .site-nav.is-hidden { transform: none; }
  [data-mobile-menu] { transition: none; }
  .lightbox img { transition: none; transform: none; }
}
