/* =========================================================
   TRIPLEWEEN — design tokens
   ========================================================= */
:root {
  --bg: #08050c;
  --bg-alt: #150a22;
  --purple-deep: #1c0f30;
  --purple: #3a1657;
  --purple-vibrant: #6c1fb8;
  --orange: #ff7a1a;
  --orange-burnt: #d9531b;
  --gold: #f2c46d;
  --gold-soft: #ffe4a3;
  --paper: #d9c391;
  --paper-dark: #b89b62;
  --paper-ink: #2a1a08;
  --ink: #f3ecff;
  --ink-dim: #b9a6d6;
  --line: rgba(242, 196, 109, 0.18);

  --font-display: 'Butcherman', 'Nosifer', cursive;
  --font-paper: 'Special Elite', 'Courier New', monospace;
  --font-body: 'Poppins', system-ui, sans-serif;

  --container: 1180px;
  color-scheme: dark;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

/* =========================================================
   TEXTURA DE GRÃO (papel/impressão desgastada) — global
   ========================================================= */
.site-bg__grain,
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 140px 140px;
}

/* =========================================================
   FUNDO EM VÍDEO (fixo, atrás de todo o site abaixo do hero)
   ========================================================= */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--bg);
}
.site-critters {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.critter {
  position: absolute;
  left: -8%;
  font-size: 1.2rem;
  opacity: 0.55;
  filter: drop-shadow(0 0 6px rgba(0,0,0,0.6));
  animation-name: critterFly;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes critterFly {
  0% { left: -8%; transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-22px) rotate(3deg); }
  100% { left: 108%; transform: translateY(0) rotate(-4deg); }
}

@media (prefers-reduced-motion: reduce) {
  .site-critters { display: none; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--orange); color: #150a22; }

.section-kicker {
  font-family: var(--font-paper);
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--orange);
  margin: 0 0 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin: 0 0 1.1rem;
  letter-spacing: 0.01em;
}
.section-title span {
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--orange) 65%, var(--orange-burnt) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-lead {
  max-width: 620px;
  color: var(--ink-dim);
  font-size: 1.05rem;
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Transição cinematográfica entre as seções ao rolar a página */
.section-transition {
  opacity: 0;
  transform: scale(1.06);
  filter: brightness(0.7);
  transition: opacity 1s ease, transform 1.1s ease, filter 1.1s ease;
  will-change: opacity, transform;
}
.section-transition.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: brightness(1);
}
@media (prefers-reduced-motion: reduce) {
  .section-transition { opacity: 1; transform: none; filter: none; transition: none; }
}

/* =========================================================
   BUTTONS — recorte "ticket rasgado"
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.8rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: 2px solid transparent;
  clip-path: polygon(0% 15%, 4% 0%, 96% 0%, 100% 15%, 100% 85%, 96% 100%, 4% 100%, 0% 85%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px) rotate(-0.3deg); filter: brightness(1.06); }

.btn--primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-burnt) 100%);
  color: #1b0d08;
  box-shadow: 0 10px 30px -8px rgba(255, 122, 26, 0.55);
}
.btn--lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }

.btn--whatsapp {
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.6);
  color: #6bf0a0;
}
.btn--whatsapp:hover { background: rgba(37, 211, 102, 0.2); }
.btn--whatsapp .icon { width: 18px; height: 18px; fill: currentColor; }

.btn--outline {
  border-color: var(--line);
  color: var(--gold-soft);
  background: rgba(242, 196, 109, 0.06);
}
.btn--outline:hover { background: rgba(242, 196, 109, 0.14); }

.hero__buttons { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.2rem, 5vw, 3rem);
  transition: background 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
}
.nav--scrolled {
  background: rgba(8, 5, 12, 0.88);
  backdrop-filter: blur(10px);
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--line);
}
.nav__brand {
  font-family: var(--font-paper);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.nav__brand span { color: var(--gold-soft); }

.nav__toggle-input { display: none; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 24px;
  cursor: pointer;
  z-index: 60;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--gold-soft);
  border-radius: 2px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav__menu a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.nav__menu a:hover { color: var(--gold-soft); }
.nav__cta {
  padding: 0.55rem 1.2rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-burnt));
  color: #1b0d08 !important;
  font-weight: 800;
  font-size: 0.82rem !important;
  clip-path: polygon(0% 15%, 4% 0%, 96% 0%, 100% 15%, 100% 85%, 96% 100%, 4% 100%, 0% 85%);
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    inset: 0;
    z-index: 55;
    flex-direction: column;
    justify-content: center;
    gap: 1.8rem;
    background: rgba(8, 5, 12, 0.97);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav__menu a { font-size: 1.3rem; }
  .nav__toggle-input:checked ~ .nav__menu {
    transform: translateY(0);
    opacity: 1;
  }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 7rem 1.2rem 4rem;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  will-change: transform;
  filter: saturate(1.1);
}
.hero__moon-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 140, 40, 0.35) 0%, rgba(255, 140, 40, 0) 65%);
  animation: moonPulse 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes moonPulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,5,12,0.1) 0%, rgba(8,5,12,0.35) 55%, rgba(8,5,12,0.97) 100%),
    radial-gradient(ellipse at center, rgba(0,0,0,0) 40%, rgba(8,5,12,0.55) 100%);
}
.hero__fog {
  position: absolute;
  left: -20%; right: -20%; bottom: -10%; height: 45%;
  background: radial-gradient(ellipse at 30% 100%, rgba(210,170,255,0.12), transparent 60%),
              radial-gradient(ellipse at 70% 100%, rgba(255,150,60,0.10), transparent 60%);
  filter: blur(6px);
  animation: fogDrift 14s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes fogDrift { 0% { transform: translateX(-3%) scaleX(1); } 100% { transform: translateX(3%) scaleX(1.05); } }

.hero__bats { position: absolute; inset: 0; pointer-events: none; }
.bat { position: absolute; font-size: 1.4rem; opacity: 0.85; filter: drop-shadow(0 0 6px rgba(0,0,0,0.6)); animation: batFly 9s linear infinite; }
.bat--1 { top: 18%; animation-delay: 0s; }
.bat--2 { top: 28%; font-size: 1rem; animation-delay: 3s; animation-duration: 11s; }
.bat--3 { top: 12%; font-size: 1.1rem; animation-delay: 6s; animation-duration: 13s; }
@keyframes batFly { 0% { left: -5%; transform: translateY(0) scale(1); } 50% { transform: translateY(-18px) scale(1.05); } 100% { left: 105%; transform: translateY(0) scale(1); } }

.hero__pumpkin {
  position: absolute;
  left: clamp(1rem, 4vw, 3rem);
  bottom: 8%;
  z-index: 2;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  filter: drop-shadow(0 0 16px rgba(255,122,26,0.6));
  animation: moonPulse 4s ease-in-out infinite;
}
.hero__side-text {
  position: absolute;
  right: clamp(0.6rem, 2vw, 1.6rem);
  top: 50%;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  font-family: var(--font-paper);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  color: var(--gold-soft);
  opacity: 0.85;
  white-space: nowrap;
}
@media (max-width: 760px) { .hero__side-text, .hero__pumpkin { display: none; } }

.hero__content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.hero__presents { font-family: var(--font-paper); font-size: 0.85rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-dim); margin: 0 0 0.6rem; }

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3.6rem, 13vw, 8rem);
  line-height: 0.95;
  margin: 0;
  letter-spacing: 0.02em;
}
.hero__title-line {
  display: block;
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--orange) 55%, var(--orange-burnt) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 22px rgba(255, 122, 26, 0.35));
  animation: titleFlicker 5s ease-in-out infinite;
}
.hero__title-line--accent { animation-delay: 0.4s; }
@keyframes titleFlicker { 0%, 92%, 100% { opacity: 1; } 94% { opacity: 0.75; } 96% { opacity: 1; } 97% { opacity: 0.85; } }

.hero__subtitle { font-family: var(--font-paper); font-size: clamp(1rem, 2.2vw, 1.3rem); letter-spacing: 0.3em; text-transform: uppercase; color: var(--orange-burnt); margin: 0.6rem 0 2rem; }

.hero__countdown-kicker { font-family: var(--font-paper); font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; font-size: 0.85rem; color: var(--ink-dim); margin: 0 0 0.8rem; }

.countdown__frame {
  position: relative;
  display: inline-block;
  padding: 1.4rem 2.2rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(242,196,109,0.45);
  border-radius: 4px;
  background: rgba(28, 15, 48, 0.5);
  box-shadow:
    inset 0 0 30px rgba(108,31,184,0.4),
    0 0 0 6px rgba(8,5,12,0.5),
    0 0 0 7px rgba(242,196,109,0.15);
}
.countdown__frame::before,
.countdown__frame::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border: 2px solid var(--gold-soft);
  opacity: 0.7;
  pointer-events: none;
}
.countdown__frame::before { top: -8px; left: -8px; border-right: none; border-bottom: none; }
.countdown__frame::after { bottom: -8px; right: -8px; border-left: none; border-top: none; }

.countdown__grid { display: flex; justify-content: center; gap: clamp(0.7rem, 3vw, 1.6rem); flex-wrap: wrap; }
.countdown__box {
  min-width: 88px;
  padding: 1.2rem 0.6rem;
  border-radius: 4px;
  background: linear-gradient(160deg, var(--bg-alt), var(--purple-deep));
  border: 1px solid var(--line);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.2), inset 0 0 20px rgba(108, 31, 184, 0.25), 0 20px 40px -20px rgba(255,122,26,0.25);
}
.countdown__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  color: var(--gold-soft);
  text-shadow: 0 0 18px rgba(242, 196, 109, 0.45);
}
.countdown__label { display: block; margin-top: 0.3rem; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-dim); }
.countdown__grid--hero { margin-bottom: 1.6rem; }

.hero__meta {
  font-family: var(--font-paper);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
  margin: 0;
}

.hero__scroll {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 2px solid var(--line); border-radius: 20px;
}
.hero__scroll span {
  position: absolute; top: 6px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  border-radius: 2px; background: var(--gold-soft); animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot { 0% { opacity: 1; top: 6px; } 70% { opacity: 0; top: 22px; } 100% { opacity: 0; top: 6px; } }

/* =========================================================
   EVENT FACTS — faixa de papel envelhecido
   ========================================================= */
/* =========================================================
   UTIL
   ========================================================= */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================================================
   PIT STOP — vídeo do gato como fundo da seção, infos por cima
   ========================================================= */
.pitstop {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 1.5rem;
}
.pitstop__media { position: absolute; inset: 0; z-index: 0; }
.pitstop__video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.pitstop__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,5,12,0.15) 0%, rgba(8,5,12,0.35) 55%, rgba(8,5,12,0.55) 100%);
}
.pitstop__content {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 1.8rem 1.6rem;
  border-radius: 10px;
  background: rgba(8, 5, 12, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.pitstop__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 4rem);
  line-height: 0.9;
  margin: 0 0 0.8rem;
  color: var(--gold-soft);
  filter: drop-shadow(0 4px 14px rgba(255,122,26,0.35));
}
.pitstop__tag {
  display: inline-block;
  margin-top: 0.6rem;
  padding: 0.35rem 0.9rem;
  background: linear-gradient(160deg, var(--paper), var(--paper-dark));
  color: var(--paper-ink);
  font-family: var(--font-paper);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}
.pitstop__date {
  display: flex; align-items: baseline; gap: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--orange);
  margin: 1rem 0 1rem;
}
.pitstop__date em { font-style: normal; color: var(--orange-burnt); }
.pitstop__date small { font-family: var(--font-paper); font-size: 0.85rem; color: var(--ink-dim); }
.pitstop__text-body { color: var(--ink-dim); font-size: 1.02rem; margin: 0 0 1.4rem; }
.pitstop__text-body strong { color: var(--gold-soft); }

.pitstop__card {
  display: inline-block;
  background: rgba(8, 5, 12, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--ink);
  border: 1px solid var(--gold-soft);
  padding: 1.2rem 1.4rem;
  border-radius: 4px;
  box-shadow: 0 20px 40px -18px rgba(0,0,0,0.6);
  margin-bottom: 1.6rem;
}
.pitstop__card p { display: flex; align-items: center; gap: 0.5rem; margin: 0 0 0.5rem; font-family: var(--font-paper); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--gold-soft); }
.pitstop__card p:last-child:not(:has(+ .pitstop__map)) { margin-bottom: 0; }
.pitstop__card strong { font-weight: 700; color: var(--ink); }

.pitstop__map {
  margin-top: 0.9rem;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--gold-soft);
  box-shadow: 0 10px 22px -10px rgba(0,0,0,0.55);
}
.pitstop__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.5) contrast(1.05) brightness(0.85) invert(0.92) hue-rotate(180deg);
}

@media (max-width: 760px) {
  .pitstop { padding: 2rem 1.2rem; }
  .pitstop__content { max-width: none; width: 100%; }
  .pitstop__card { display: block; margin-left: auto; margin-right: auto; transform: none; }
}

/* =========================================================
   INGRESSOS — a arte do espantalho é o fundo da seção inteira
   ========================================================= */
.ingressos {
  position: relative;
  min-height: 90svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}
.ingressos__media { position: absolute; inset: 0; z-index: 0; }
.ingressos__img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%; display: block; }
.ingressos__scrim {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 55%, rgba(8,5,12,0.55) 0%, rgba(8,5,12,0.15) 60%, rgba(8,5,12,0.75) 100%);
}
.ingressos__content {
  position: relative;
  z-index: 1;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ingressos__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  line-height: 0.9;
  margin: 0;
  color: var(--gold-soft);
  filter: drop-shadow(0 4px 14px rgba(255,122,26,0.4));
}
.ingressos__title span {
  display: block;
  font-family: var(--font-paper);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 0.2rem;
}
.ingressos__price {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--orange);
  margin: 0.4rem 0 1.4rem;
}
.ingressos__price small { font-size: 0.6em; }

.ticket-ctas { display: flex; flex-direction: column; flex-wrap: wrap; justify-content: center; gap: 1.1rem; width: 100%; max-width: 380px; }

/* Ingressos como "bilhetes" de papel envelhecido — mesma linguagem visual das
   tarjas de papel usadas no resto do site (facts, pitstop card, price tag) */
.ticket-cta {
  position: relative;
  display: flex;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background: transparent;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  color: var(--ink);
  border: 2px solid var(--gold-soft);
  border-radius: 3px;
  clip-path: polygon(0% 18%, 2% 0%, 98% 4%, 100% 22%, 99% 80%, 100% 100%, 3% 96%, 0% 78%);
  box-shadow: 0 16px 34px -14px rgba(0,0,0,0.7);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.ticket-cta:hover { background: rgba(8, 5, 12, 0.35); }
.ticket-cta::after {
  content: '';
  position: absolute;
  top: -60%; left: -30%;
  width: 40%; height: 220%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: translateX(-140%) rotate(8deg);
  transition: transform 0.6s ease;
  pointer-events: none;
  mix-blend-mode: soft-light;
}
.ticket-cta:hover {
  transform: translateY(-4px) scale(1.02) rotate(-0.4deg);
}
.ticket-cta:hover::after { transform: translateX(220%) rotate(8deg); }
.ticket-cta:hover .ticket-cta__icon::after { opacity: 0.7; transform: translate(-50%, -50%) scale(1.12); }
.ticket-cta__icon::after { transition: opacity 0.25s ease, transform 0.25s ease; }

.ticket-cta--sympla:hover {
  box-shadow: 0 22px 46px -16px rgba(0,0,0,0.85), 0 0 0 1px rgba(0,0,0,0.15), 0 0 26px rgba(108,31,184,0.55);
}
.ticket-cta--whatsapp:hover {
  box-shadow: 0 22px 46px -16px rgba(0,0,0,0.85), 0 0 0 1px rgba(0,0,0,0.15), 0 0 26px rgba(37,211,102,0.5);
}

.ticket-cta__icon {
  position: relative;
  flex: 0 0 auto;
  width: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.ticket-cta__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 2.4rem; height: 2.4rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0.35;
}
.ticket-cta__icon .icon { width: 20px; height: 20px; fill: currentColor; position: relative; }

.ticket-cta__divider {
  flex: 0 0 auto;
  align-self: stretch;
  width: 0;
  border-left: 2px dashed rgba(242, 196, 109, 0.3);
  margin: 0.65rem 0;
}

.ticket-cta__text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.1rem;
  padding: 0.85rem 1.1rem;
  text-align: left;
}
.ticket-cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1;
  letter-spacing: 0.01em;
}
.ticket-cta__sub {
  font-family: var(--font-paper);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.75;
}

.ticket-cta--sympla .ticket-cta__icon { color: #c9a8ff; }
.ticket-cta--sympla .ticket-cta__title { color: var(--gold-soft); }

.ticket-cta--whatsapp .ticket-cta__icon { color: #6bf0a0; }
.ticket-cta--whatsapp .ticket-cta__title { color: var(--gold-soft); }

/* =========================================================
   GALERIA — carrossel horizontal
   ========================================================= */
/* Fundo em vídeo compartilhado entre Galeria + FAQ */
.cinematic-bg-wrap { position: relative; }
.cinematic-bg-wrap__media { position: absolute; inset: 0; z-index: 0; }
.cinematic-bg-wrap__media video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.cinematic-bg-wrap__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,5,12,0.88) 0%, rgba(8,5,12,0.68) 35%, rgba(8,5,12,0.75) 65%, rgba(8,5,12,0.95) 100%);
}

.galeria {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  overflow: hidden;
}
.galeria__head, .galeria__carousel { position: relative; z-index: 1; }
.galeria__head {
  max-width: var(--container);
  margin: 0 auto 2.6rem;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1.5rem;
}
.galeria__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.95;
  margin: 0;
  background: linear-gradient(160deg, #e9b8ff 0%, var(--purple-vibrant) 70%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.galeria__title span { display: block; font-size: 0.55em; }
.galeria__lead { font-family: var(--font-paper); font-size: 0.85rem; color: var(--ink-dim); line-height: 1.5; margin: 0; }

.galeria__carousel { position: relative; max-width: var(--container); margin: 0 auto; padding: 0 3.2rem; }
.galeria__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
}
.galeria__track::-webkit-scrollbar { display: none; }
.galeria__item {
  position: relative;
  flex: 0 0 clamp(150px, 20vw, 220px);
  aspect-ratio: 3 / 4;
  scroll-snap-align: start;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  cursor: zoom-in;
  box-shadow: 0 14px 30px -14px rgba(0,0,0,0.7);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.galeria__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(255,122,26,0.28) 0%, transparent 45%),
              linear-gradient(0deg, rgba(8,5,12,0.55) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.96);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease;
}
.galeria__item:hover, .galeria__item:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -16px rgba(0,0,0,0.8), 0 0 0 2px rgba(242,196,109,0.4), 0 0 24px rgba(255,122,26,0.35);
}
.galeria__item:hover img, .galeria__item:focus-visible img {
  transform: scale(1.16) rotate(-1deg);
  filter: saturate(1.15) brightness(1.05);
}
.galeria__item:hover::after, .galeria__item:focus-visible::after { opacity: 1; }

.galeria__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(8, 5, 12, 0.75);
  color: var(--gold-soft);
  font-size: 1.6rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}
.galeria__arrow:hover { background: rgba(242,196,109,0.18); }
.galeria__arrow--prev { left: 0; }
.galeria__arrow--next { right: 0; }

@media (max-width: 640px) {
  .galeria__carousel { padding: 0 2.6rem; }
  .galeria__arrow { width: 36px; height: 36px; font-size: 1.3rem; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; padding: 5rem 1.5rem; text-align: center; }
.faq__list { text-align: left; display: flex; flex-direction: column; gap: 0.9rem; margin-top: 2.5rem; }
.faq__item {
  background: linear-gradient(160deg, var(--bg-alt), var(--purple-deep));
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.1rem 1.4rem;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 1.3rem; color: var(--orange); transition: transform 0.2s ease; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { color: var(--ink-dim); margin: 0.9rem 0 0; font-size: 0.95rem; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  position: relative;
  min-height: 90svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
  text-align: center;
  overflow: hidden;
}
.final-cta__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,5,12,0.55) 0%, rgba(8,5,12,0.4) 35%, rgba(8,5,12,0.97) 100%),
    url('/img/hero-poster.jpg');
  background-size: cover;
  background-position: 50% 10%;
  pointer-events: none;
}
.final-cta__content { position: relative; z-index: 1; }
.final-cta__date { font-family: var(--font-paper); letter-spacing: 0.15em; color: var(--ink-dim); margin: 0 0 0.6rem; }
.final-cta__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 5rem);
  line-height: 0.95;
  margin: 0 0 2rem;
}
.final-cta__title span {
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--orange) 65%, var(--orange-burnt) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  position: relative;
  padding: 3.5rem 1.5rem 6.5rem;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.footer__gate {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,5,12,0.75) 0%, rgba(8,5,12,0.55) 100%),
    url('/img/hero-poster.jpg');
  background-size: 220% auto;
  background-position: 50% 100%;
  opacity: 0.9;
}
.footer__row {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
  text-align: center;
}
.footer__col { flex: 1 1 200px; }
.footer__brand { font-family: var(--font-display); font-size: 1.3rem; color: var(--gold-soft); letter-spacing: 0.02em; }
.footer__brand span { display: block; font-family: var(--font-paper); font-size: 0.6rem; letter-spacing: 0.15em; color: var(--ink-dim); text-transform: uppercase; }
.footer__tagline { margin: 0.4rem 0 0; font-family: var(--font-paper); font-size: 0.7rem; letter-spacing: 0.05em; color: var(--ink-dim); text-transform: uppercase; }
.footer__local { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold-soft); margin: 0; }
.footer__local span { display: block; font-family: var(--font-paper); font-size: 0.68rem; color: var(--ink-dim); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.2rem; }
.footer__social { display: flex; justify-content: center; gap: 1.2rem; margin-bottom: 0.6rem; }
.footer__social a { font-family: var(--font-paper); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-dim); }
.footer__social a:hover { color: var(--gold-soft); }
.footer__copy { margin: 0; color: rgba(185, 166, 214, 0.6); font-size: 0.78rem; font-style: italic; }

@media (min-width: 640px) { .footer { padding-bottom: 3rem; } }

/* =========================================================
   WHATSAPP FAB
   ========================================================= */
.fab-whatsapp {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.7);
  animation: fabPulse 2.4s ease-in-out infinite;
}
.fab-whatsapp .icon { width: 28px; height: 28px; fill: #0b1a10; }
@keyframes fabPulse { 0%, 100% { box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.7); } 50% { box-shadow: 0 10px 40px -4px rgba(37, 211, 102, 0.9); } }

@media (max-width: 640px) { .fab-whatsapp { bottom: 5.6rem; } }

/* =========================================================
   BOTÃO DE MÚSICA
   ========================================================= */
.fab-audio {
  position: fixed; left: 1.4rem; bottom: 1.4rem; z-index: 60;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(8, 5, 12, 0.75);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}
.fab-audio:hover { transform: scale(1.06); background: rgba(8, 5, 12, 0.92); }
.fab-audio__icon--off { display: none; }
.fab-audio[aria-pressed="false"] .fab-audio__icon--on { display: none; }
.fab-audio[aria-pressed="false"] .fab-audio__icon--off { display: inline; }

@media (max-width: 640px) { .fab-audio { bottom: 5.6rem; } }

/* =========================================================
   BARRA FIXA DE INGRESSO (mobile)
   ========================================================= */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 59;
  padding: 0.95rem 1rem;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, var(--orange), var(--orange-burnt));
  color: #1b0d08;
  box-shadow: 0 -10px 30px -10px rgba(0,0,0,0.6);
}
@media (max-width: 640px) { .sticky-cta { display: block; } }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none;
  align-items: center; justify-content: center;
  background: rgba(8, 5, 12, 0.94);
  backdrop-filter: blur(4px);
  padding: 3rem 1rem;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: min(90vw, 1100px); max-height: 86vh;
  border-radius: 6px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
  animation: lightboxIn 0.25s ease;
}
@keyframes lightboxIn { from { opacity: 0; transform: scale(0.96); } to { opacity: 1; transform: scale(1); } }

.lightbox__close, .lightbox__nav {
  position: fixed;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--gold-soft);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(242,196,109,0.15); transform: scale(1.06); }
.lightbox__close { top: 1.2rem; right: 1.2rem; width: 44px; height: 44px; font-size: 1.1rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.8rem; }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }

@media (max-width: 640px) {
  .lightbox__nav { width: 42px; height: 42px; font-size: 1.4rem; }
  .lightbox__nav--prev { left: 0.4rem; }
  .lightbox__nav--next { right: 0.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
