/* =========================================================
   VIGÍLIA FLAMES · F5 — Igreja Batista Filadélfia
   Linguagem visual: cartaz laranja/vermelho com riscos azuis
   desfocados, retícula (halftone), grão e tipografia condensada.
   ========================================================= */

:root {
  /* Cores */
  --fogo: #ff5b14;
  --brasa: #e2260c;
  --brasa-escura: #8e1206;
  --ambar: #ffa526;
  --ouro: #ffc65c;
  --carvao: #120504;
  --carvao-2: #1c0906;
  --noite: #0c0a22;
  --noite-2: #15113a;
  --lilas: #f0dbf5;
  --lilas-2: #faeefc;
  --azul: #4f5cf2;
  --tinta: #1a0503;

  --texto: rgba(246, 239, 255, 0.86);
  --texto-suave: rgba(246, 239, 255, 0.6);
  --linha: rgba(234, 220, 255, 0.16);

  /* Tipografia */
  --f-display: "Anton", "Impact", "Arial Narrow", sans-serif;
  --f-mono: "Space Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  --f-body: "Space Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  --gutter: clamp(1.25rem, 4vw, 3rem);
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--carvao);
  color: var(--texto);
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main { overflow-x: clip; }

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

a { color: inherit; }

strong { color: var(--lilas-2); font-weight: 700; }

h1, h2, h3 { margin: 0; font-weight: 400; }

p { margin: 0 0 1em; }

:focus-visible {
  outline: 3px solid var(--ambar);
  outline-offset: 3px;
}

.mono {
  font-family: var(--f-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: 860px; }

/* ---------- Grão de filme ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.2;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1.4 -0.2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Botões ---------- */
.btn {
  --shadow: var(--tinta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 4px;
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--shadow);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}

.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--shadow); }
.btn:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--shadow); }

.btn--light { background: var(--lilas); color: var(--brasa); }
.btn--light:hover { background: var(--lilas-2); }

.btn--fire {
  background: linear-gradient(135deg, var(--ambar), var(--fogo) 55%, var(--brasa));
  color: var(--tinta);
  --shadow: rgba(234, 220, 255, 0.9);
}

.btn--outline {
  background: transparent;
  border-color: currentColor;
  color: var(--lilas);
  box-shadow: none;
}
.btn--outline:hover { background: rgba(234, 220, 255, 0.1); box-shadow: none; }
.btn--outline:active { box-shadow: none; }

.btn--small { padding: 0.6rem 1rem; font-size: 0.75rem; box-shadow: 3px 3px 0 var(--shadow); }
.btn--small:hover { box-shadow: 5px 5px 0 var(--shadow); }

.btn--block { width: 100%; }

.btn__price {
  background: var(--brasa);
  color: var(--lilas-2);
  padding: 0.3em 0.55em;
  border-radius: 3px;
}

/* ---------- Menu ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: var(--gutter);
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: rgba(18, 5, 4, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-color: var(--linha);
}

.header__logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.logo-flames {
  font-family: var(--f-display);
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--lilas);
  display: inline-block;
  transform: scaleY(1.15);
  text-shadow: 0 0 12px rgba(234, 220, 255, 0.45);
}

.logo-by {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--lilas);
  opacity: 0.8;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.nav a:not(.btn) {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--lilas);
  position: relative;
  padding-block: 0.25rem;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--ambar);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:not(.btn):hover::after,
.nav a.is-active::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--lilas);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 25px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

/* ---------- Fundo "cartaz" (hero, inscrição, final) ---------- */
.poster {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--lilas);
}

.poster__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 45%, rgba(255, 170, 60, 0.55), transparent 70%),
    linear-gradient(165deg, #ff8a1f 0%, var(--fogo) 32%, var(--brasa) 66%, var(--brasa-escura) 100%);
}

/* vinheta escura nas bordas */
.poster__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 120% 90% at 50% 50%, transparent 45%, rgba(40, 4, 2, 0.65) 100%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.85;
  animation: drift 18s ease-in-out infinite alternate;
}
.blob--1 { width: 55vmax; height: 55vmax; left: -18vmax; top: -20vmax; background: #ff9a2a; }
.blob--2 { width: 45vmax; height: 45vmax; right: -15vmax; bottom: -18vmax; background: #b3140a; animation-duration: 22s; }
.blob--3 { width: 30vmax; height: 30vmax; right: 8vmax; top: 10vmax; background: #ff4d7a; opacity: 0.35; animation-duration: 26s; }

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(6vmax, 4vmax) scale(1.12); }
}

.swoosh {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  filter: blur(13px);
  opacity: 0.8;
}

.swoosh__path {
  fill: none;
  stroke: var(--azul);
  stroke-width: 34;
  stroke-linecap: round;
  animation: swoosh 16s ease-in-out infinite alternate;
}
.swoosh__path--b { stroke: #6a58e8; stroke-width: 36; animation-duration: 20s; }
.swoosh__path--c { stroke: #3a49d6; stroke-width: 30; opacity: 0.75; animation-duration: 24s; }

@keyframes swoosh {
  from { transform: translate(0, 0); }
  to   { transform: translate(40px, -30px); }
}

.halftone {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: radial-gradient(circle, rgba(70, 5, 0, 0.6) 0.9px, transparent 1.4px);
  background-size: 5px 5px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, transparent 10%, #000 85%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, transparent 10%, #000 85%);
  mix-blend-mode: multiply;
  opacity: 0.75;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 1rem) var(--gutter) 2.5rem;
  text-align: center;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1100px;
}

.hero__kicker {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

/* Foto opcional da capa (assets/capa.jpg) em duotone laranja */
.poster__photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.3) brightness(1.05);
  mix-blend-mode: multiply;
  opacity: 0.85;
}

.blob--shade { background: #4a0b04; opacity: 0.55; filter: blur(80px); }
.blob--shade-1 { width: 40vmax; height: 40vmax; left: -14vmax; bottom: -16vmax; animation-duration: 24s; }
.blob--shade-2 { width: 32vmax; height: 32vmax; right: -10vmax; top: -12vmax; animation-duration: 28s; }

.swoosh--hero { z-index: 2; filter: blur(12px); opacity: 0.7; }
.swoosh--hero .swoosh__path { stroke-width: 24; }
.swoosh--hero .swoosh__path--b { stroke: #6f5ce6; stroke-width: 26; }
.swoosh--hero .swoosh__path--c { stroke: #5a6cf0; stroke-width: 18; }
.swoosh__path--d { stroke: #7a58d8; stroke-width: 20; animation-duration: 22s; }
.swoosh__path--e { stroke: #4f5cf2; stroke-width: 14; animation-duration: 18s; }
.poster__bg .halftone { z-index: 3; }

/* retícula por cima do conteúdo (inclusive do título), como no cartaz impresso */
.halftone--over {
  z-index: 2;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(120, 12, 0, 0.55) 0.9px, transparent 1.5px);
  background-size: 5px 5px;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 45%, rgba(0, 0, 0, 0.3) 20%, #000 90%);
  mask-image: radial-gradient(ellipse 75% 70% at 50% 45%, rgba(0, 0, 0, 0.3) 20%, #000 90%);
  opacity: 0.4;
}

/* ---------- Título "VIGÍLIA FLAMES" (distorção do cartaz) ----------
   Cada linha é encaixada num quadrilátero medido no cartaz de referência
   (js/main.js → warpTitle). A base da 1ª linha e o topo da 2ª são paralelos,
   então as palavras nunca se sobrepõem. */
.hero__title-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-block: clamp(0.25rem, 2vh, 1.5rem) clamp(1rem, 3vh, 2rem);
}

.hero__title {
  /* largura da "tela" do título; a altura acompanha a proporção do cartaz */
  --tw: min(68vw, calc((100svh - 400px) / 1.28), 500px);
  position: relative;
  width: var(--tw);
  height: calc(var(--tw) * 1.28);
  margin: 0;
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--lilas);
}

.hero__layer {
  position: absolute;
  inset: 0;
}

.hero__layer--blur {
  filter: blur(calc(var(--tw) * 0.017));
  opacity: 0.9;
}

.hero__layer--sharp {
  /* centro nítido; a ponta de cima à esquerda e a base do "S" ficam borradas */
  -webkit-mask-image: linear-gradient(122deg, transparent 6%, #000 22%, #000 72%, transparent 90%);
  mask-image: linear-gradient(122deg, transparent 6%, #000 22%, #000 72%, transparent 90%);
}

.hero__line {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transform-origin: 0 0;
}

/* sem JavaScript: as duas linhas simplesmente empilhadas */
.hero__title:not(.is-warped) .hero__layer--blur { display: none; }
.hero__title:not(.is-warped) .hero__layer--sharp { -webkit-mask-image: none; mask-image: none; }
.hero__title:not(.is-warped) .hero__line { position: static; display: block; text-align: center; font-size: calc(var(--tw) * 0.36); line-height: 0.9; }
.hero__title:not(.is-warped) .hero__layer { display: flex; flex-direction: column; justify-content: center; }

.hero__side {
  position: absolute;
  z-index: 1;
  margin: 0;
  font-size: clamp(0.68rem, 1.4vw, 1.2rem);
  line-height: 1.35;
  letter-spacing: 0.1em;
  white-space: nowrap;
  color: var(--lilas);
}
/* posições tiradas do cartaz: "SEXTA" na altura da base da 1ª linha,
   "20H" (aqui 22H) no meio da 2ª linha */
.hero__side--left { right: calc(100% + clamp(0.4rem, 1.6vw, 1.5rem)); top: 34%; text-align: left; }
.hero__side--right { left: calc(100% + clamp(0.4rem, 1.6vw, 1.5rem)); top: 70%; text-align: left; }

.hero__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}
.hero__info p { margin: 0; }

.hero__address { font-size: 0.85rem; letter-spacing: 0.12em; }

.tag {
  display: inline-block;
  background: var(--lilas);
  color: var(--brasa);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 0.12em 0.45em;
}

.hero__actions { margin-bottom: 1.5rem; }

/* ---------- Contagem regressiva ---------- */
.countdown { display: flex; align-items: center; gap: 1rem; }

.countdown__label {
  font-size: 0.7rem;
  margin: 0;
  opacity: 0.85;
}

.countdown__grid {
  display: flex;
  gap: 0.9rem;
}

.countdown__item {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.countdown__num {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
  color: var(--lilas-2);
  font-variant-numeric: tabular-nums;
}

.countdown__item .mono { font-size: 0.62rem; opacity: 0.8; }

.countdown__live {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  color: var(--lilas-2);
  text-transform: uppercase;
  margin: 0;
}

/* camada desfocada do título final */
.final__title::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  color: var(--lilas-2);
  filter: blur(10px);
  opacity: 0.7;
  transform: translate(0.04em, 0.02em);
  z-index: -1;
}

/* ---------- Faixa corrida ---------- */
.marquee {
  position: relative;
  z-index: 3;
  background: var(--lilas);
  color: var(--brasa);
  overflow: hidden;
  transform: rotate(-1.5deg) scale(1.03);
  margin-block: -1.4rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  padding: 0.9rem 0;
  animation: marquee 32s linear infinite;
}

.marquee__track span {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Seções ---------- */
.section {
  position: relative;
  padding-block: clamp(5rem, 12vw, 9rem);
}

.section--dark {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(226, 38, 12, 0.22), transparent 70%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(255, 91, 20, 0.12), transparent 70%),
    var(--carvao);
}

.section--night {
  background:
    radial-gradient(ellipse 70% 50% at 50% 110%, rgba(255, 91, 20, 0.28), transparent 70%),
    radial-gradient(ellipse 60% 50% at 0% 0%, rgba(79, 92, 242, 0.22), transparent 70%),
    linear-gradient(180deg, var(--noite), var(--noite-2));
}

.eyebrow {
  font-size: 0.78rem;
  color: var(--ambar);
  margin-bottom: 1.25rem;
}

.display {
  font-family: var(--f-display);
  font-size: clamp(3rem, 8.5vw, 6.8rem);
  line-height: 1.02; /* espaço para os acentos do Anton (É, Ú, Í) */
  text-transform: uppercase;
  color: var(--lilas);
  letter-spacing: 0.005em;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.display--sm { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-bottom: 1.25rem; }

.text-fire {
  background: linear-gradient(95deg, var(--ouro), var(--ambar) 30%, var(--fogo) 65%, #ff3b2f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Sobre ---------- */
.about {
  max-width: 680px;
  margin-left: auto;
  font-size: 1.1rem;
}

.lead {
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  line-height: 1.45;
  color: var(--lilas-2);
}

.stats {
  list-style: none;
  padding: 0;
  margin: clamp(3.5rem, 8vw, 6rem) 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.25rem;
  border-top: 2px solid var(--linha);
}

.stat__big {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
  background: linear-gradient(95deg, var(--ouro), var(--fogo));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat__label { font-size: 0.72rem; color: var(--texto-suave); }

/* ---------- A noite / linha do tempo ---------- */
.timeline { margin-bottom: clamp(3.5rem, 8vw, 5rem); }

.timeline__bar {
  position: relative;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg,
    #1c1a5c 0%, #2b2388 22%, #4a2a93 42%, #8a2c6f 62%, #d8373a 80%, var(--fogo) 90%, var(--ouro) 100%);
  box-shadow: 0 0 40px rgba(255, 91, 20, 0.25);
}

.timeline__now {
  position: absolute;
  top: 50%;
  width: 26px;
  height: 26px;
  margin-left: -13px;
  margin-top: -13px;
  border-radius: 50%;
  background: var(--lilas-2);
  box-shadow: 0 0 0 6px rgba(246, 239, 255, 0.25), 0 0 24px var(--lilas);
}

.timeline__hours {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  font-size: 0.8rem;
  color: var(--texto-suave);
}

.timeline__hours li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding-top: 0.6rem;
}
.timeline__hours li::before {
  content: "";
  position: absolute;
  top: -0.35rem;
  width: 1px;
  height: 0.6rem;
  background: var(--linha);
}
.timeline__hours li:first-child { align-items: flex-start; text-align: left; }
.timeline__hours li:last-child { align-items: flex-end; text-align: right; }
.timeline__hours li:first-child::before { left: 0; }
.timeline__hours li:last-child::before { right: 0; }

.timeline__hours .is-key { color: var(--lilas-2); font-weight: 700; font-size: 1rem; }
.timeline__hours small {
  font-size: 0.62rem;
  color: var(--ambar);
  font-weight: 400;
  margin-top: 0.2rem;
}

.moments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.moment {
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid var(--linha);
  background: rgba(234, 220, 255, 0.03);
  transition: border-color 0.3s, transform 0.3s var(--ease), background 0.3s;
}
.moment:hover {
  border-color: var(--fogo);
  background: rgba(255, 91, 20, 0.08);
  transform: translateY(-4px);
}

.moment__num { font-size: 0.75rem; color: var(--ambar); }

.moment h3 {
  font-family: var(--f-display);
  font-size: 2.1rem;
  text-transform: uppercase;
  color: var(--lilas);
  margin: 2.5rem 0 0.5rem;
  line-height: 1;
}

.moment p { margin: 0; font-size: 0.98rem; color: var(--texto-suave); }

.soon {
  margin: 2.5rem 0 0;
  font-size: 0.75rem;
  color: var(--texto-suave);
}
.soon a { color: var(--ambar); text-transform: none; }

/* ---------- Inscrição ---------- */
#inscricao { padding-block: clamp(5rem, 12vw, 9rem); }

.ticket-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.ticket {
  display: grid;
  grid-template-columns: 1fr auto;
  background: var(--lilas-2);
  color: var(--tinta);
  box-shadow: 10px 10px 0 var(--tinta);
  transform: rotate(-2deg);
  /* recortes laterais do "ingresso" */
  -webkit-mask: radial-gradient(circle 14px at calc(100% - 92px) 0, transparent 98%, #000) top / 100% 51% no-repeat,
                radial-gradient(circle 14px at calc(100% - 92px) 100%, transparent 98%, #000) bottom / 100% 51% no-repeat;
  mask: radial-gradient(circle 14px at calc(100% - 92px) 0, transparent 98%, #000) top / 100% 51% no-repeat,
        radial-gradient(circle 14px at calc(100% - 92px) 100%, transparent 98%, #000) bottom / 100% 51% no-repeat;
}

.ticket__main { padding: clamp(1.75rem, 4vw, 2.75rem); }

.ticket__label { font-size: 0.72rem; color: var(--brasa); font-weight: 700; margin-bottom: 0.25rem; }

.ticket__price {
  font-family: var(--f-display);
  font-size: clamp(5.5rem, 12vw, 8.5rem);
  line-height: 1;
  color: var(--brasa);
  margin: 0 0 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
}
.ticket__currency { font-size: 0.35em; margin-top: 0.3em; }

.ticket__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.9rem;
  font-size: 0.98rem;
  color: rgba(26, 5, 3, 0.8);
}
.ticket__list li {
  padding: 0.55rem 0 0.55rem 1.6rem;
  border-top: 1px dashed rgba(26, 5, 3, 0.2);
  position: relative;
}
.ticket__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--fogo);
}

.ticket__note {
  margin: 0 0 1.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(26, 5, 3, 0.55);
}

.ticket .btn--fire { --shadow: var(--tinta); color: var(--tinta); }

.ticket__stub {
  width: 92px;
  border-left: 2px dashed rgba(26, 5, 3, 0.3);
  background: var(--lilas);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.7rem;
  color: var(--brasa);
  font-weight: 700;
}
.ticket__stub-title {
  font-family: var(--f-display);
  font-size: 2.6rem;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 0.04em;
  line-height: 1;
}

.invite { color: var(--lilas); }
.invite p { font-size: 1.15rem; color: var(--lilas-2); max-width: 30ch; }
.invite__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.75rem; }

/* ---------- Loja (vitrine) ---------- */
.marquee--reverse {
  background: var(--brasa);
  color: var(--lilas);
  transform: rotate(1.5deg) scale(1.03);
}
.marquee--reverse .marquee__track { animation-direction: reverse; }

.section--light {
  background:
    radial-gradient(circle, rgba(226, 38, 12, 0.14) 0.9px, transparent 1.4px) 0 0 / 6px 6px,
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(255, 165, 38, 0.25), transparent 70%),
    var(--lilas-2);
  color: rgba(26, 5, 3, 0.78);
}
.section--light .display { color: var(--tinta); }
.section--light .eyebrow { color: var(--brasa); }
.section--light strong { color: var(--tinta); }

.shop__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem 3rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.shop__head .display { margin-bottom: 0; }

.shop__intro { max-width: 400px; }
.shop__intro p { font-size: 1.1rem; margin-bottom: 1.5rem; }

.shop {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.product {
  background: #fff;
  border: 2px solid var(--tinta);
  box-shadow: 8px 8px 0 var(--tinta);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.product:hover { transform: translate(-3px, -3px); box-shadow: 11px 11px 0 var(--tinta); }

/* cards das camisas: foto em retrato + link que cobre o card todo
   (as setas ficam acima dele e por isso não abrem a loja) */
.product--tee { position: relative; }
/* sem camada isolada aqui: assim as setas ficam acima do link que cobre o card */
.product--tee .product__media { aspect-ratio: 4 / 5; isolation: auto; }

.product__namelink {
  color: inherit;
  text-decoration: none;
}
.product__namelink::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.product__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.product__media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  max-width: 100%;
  border-bottom: 2px solid var(--tinta);
  display: grid;
  place-items: center;
}
.product__media--photo { background: #2b2724; }

.product__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- galeria de fotos das camisas ---- */
.gal__img {
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gal__img.is-active { opacity: 1; }

.gal__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 2px solid var(--tinta);
  border-radius: 50%;
  background: rgba(250, 238, 252, 0.82);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: var(--tinta);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s var(--ease);
}
.gal__arrow:hover { background: var(--lilas-2); transform: translateY(-50%) scale(1.08); }
.gal__arrow:active { transform: translateY(-50%) scale(0.94); }
.gal__arrow--prev { left: 12px; }
.gal__arrow--next { right: 12px; }

.gal__arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gal__dots {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.gal__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(250, 238, 252, 0.55);
  border: 1px solid rgba(26, 5, 3, 0.45);
  transition: background 0.3s;
}
.gal__dots span.is-active { background: var(--fogo); }

.product__media--fire {
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(255, 170, 60, 0.6), transparent 70%),
    linear-gradient(165deg, #ff8a1f, var(--fogo) 40%, var(--brasa) 80%, var(--brasa-escura));
}
.product__media--fire .halftone { z-index: -1; }

.product__media--dark {
  background:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(226, 38, 12, 0.35), transparent 70%),
    var(--carvao);
}

.product__media--night {
  background:
    radial-gradient(circle, rgba(234, 220, 255, 0.12) 0.9px, transparent 1.4px) 0 0 / 6px 6px,
    linear-gradient(160deg, var(--noite-2), var(--noite));
  align-content: center;
  gap: 0.5rem;
}

.tees { width: 92%; max-height: 100%; filter: drop-shadow(0 18px 24px rgba(40, 4, 2, 0.45)); }
.tee { transition: transform 0.5s var(--ease); }
.tee__collar { fill: none; stroke-width: 6; stroke-linecap: round; }
.tee__print { font-family: var(--f-display); font-size: 52px; letter-spacing: 1px; }
.tee__sub { font-family: var(--f-mono); font-size: 12px; font-weight: 700; letter-spacing: 2px; }

.stickers { width: 88%; }
.sticker {
  stroke: #fff;
  stroke-width: 7;
  paint-order: stroke;
  stroke-linejoin: round;
  filter: drop-shadow(0 6px 8px rgba(0, 0, 0, 0.45));
}
.sticker text { stroke-width: 0; }
.sticker__big { font-family: var(--f-display); font-size: 72px; }
.sticker__word { font-family: var(--f-display); font-size: 40px; letter-spacing: 1px; }
.sticker__mono { font-family: var(--f-mono); font-size: 15px; font-weight: 700; }

.product__mystery {
  font-family: var(--f-display);
  font-size: clamp(5rem, 10vw, 7rem);
  line-height: 1;
  color: var(--lilas);
  text-shadow: 0 0 30px rgba(234, 220, 255, 0.5);
  transition: transform 0.5s var(--ease);
}
.product__mystery-label { font-size: 0.7rem; color: var(--ambar); text-align: center; }

.product:hover .product__mystery { transform: rotate(90deg) scale(1.1); }

.product__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  padding: 1.25rem 1.5rem 1.4rem;
}

.product__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--brasa);
  color: var(--lilas-2);
  padding: 0.25em 0.6em;
  margin-bottom: 0.7rem;
}

.product h3 {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--tinta);
  margin-bottom: 0.35rem;
}

.product__info p { margin: 0; font-size: 0.95rem; max-width: 36ch; }

.product__cta {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brasa);
  white-space: nowrap;
}

/* loja ainda sem link: estado "em breve" */
.js-store-link.is-soon { cursor: default; }
.btn.is-soon {
  background: transparent;
  color: var(--brasa);
  border: 2px dashed var(--brasa);
  box-shadow: none;
  transform: none;
}
.product .is-soon .product__cta { color: rgba(26, 5, 3, 0.45); }

/* ---------- Local ---------- */
.local {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.local__address {
  font-style: normal;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--lilas-2);
  margin-bottom: 2rem;
}
.local__address .mono { font-size: 0.8rem; color: var(--texto-suave); }

.local__when {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: start;
  gap: 2.5rem;
  margin: 0 0 2.25rem;
}
.local__when dt { font-size: 0.7rem; color: var(--ambar); margin-bottom: 0.25rem; }
.local__when dd { margin: 0; font-size: 1.05rem; color: var(--lilas-2); }

.local__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.local__map {
  position: relative;
  aspect-ratio: 4 / 3.4;
  max-width: 100%;
  border: 2px solid var(--lilas);
  box-shadow: 10px 10px 0 var(--brasa);
  overflow: hidden;
  background: var(--carvao-2);
}

.local__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(1.08) brightness(0.95);
}

.local__map-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--ambar), var(--brasa));
  mix-blend-mode: multiply;
  opacity: 0.55;
  pointer-events: none;
}

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--linha); }

.faq__item { border-bottom: 1px solid var(--linha); }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 500;
  color: var(--lilas-2);
  transition: color 0.2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--ambar); }

.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  font-family: var(--f-mono);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ambar);
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }

.faq__item p {
  margin: 0;
  padding: 0 2.5rem 1.6rem 0;
  color: var(--texto);
}
.faq__item a { color: var(--ambar); }

.faq__item .faq__intro { padding-bottom: 0.5rem; }

.faq__list {
  list-style: none;
  margin: 0;
  padding: 0 2.5rem 1.3rem 0;
  color: var(--texto);
}
.faq__list li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.5rem;
}
.faq__list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0.3rem;
  font-size: 0.8em;
  color: var(--fogo);
}

/* ---------- Chamada final ---------- */
.final {
  padding-block: clamp(6rem, 14vw, 10rem);
  text-align: center;
}

.final__inner { display: flex; flex-direction: column; align-items: center; }

.final__kicker { font-size: 0.85rem; font-weight: 700; margin-bottom: 1.5rem; }

.final__title {
  position: relative;
  font-family: var(--f-display);
  font-size: clamp(4.2rem, 15vw, 12rem);
  line-height: 0.9;
  color: var(--lilas);
  text-transform: uppercase;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
  transform: perspective(900px) rotateY(12deg) rotate(-3deg) scaleY(1.2);
  text-shadow: 0 0 2px rgba(246, 239, 255, 0.9), 0 0 28px rgba(234, 220, 255, 0.45);
}

/* ---------- Rodapé ---------- */
.footer {
  background: var(--carvao);
  border-top: 1px solid var(--linha);
  padding-top: clamp(3.5rem, 8vw, 5rem);
  padding-bottom: 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.logo-flames--lg { font-size: 3.2rem; margin-bottom: 1.25rem; transform-origin: left bottom; }

.footer__brand p { max-width: 40ch; color: var(--texto-suave); font-size: 0.98rem; }

.footer__col { display: flex; flex-direction: column; gap: 0.7rem; }

.footer__title { font-size: 0.72rem; color: var(--ambar); margin-bottom: 0.4rem; }

.footer__col a {
  text-decoration: none;
  color: var(--texto);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--ambar); }

.social { display: inline-flex; align-items: center; gap: 0.6rem; }
.social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.social svg .fill { fill: currentColor; stroke: none; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--linha);
  font-size: 0.7rem;
  color: var(--texto-suave);
}
.footer__bottom a { text-decoration: none; }
.footer__bottom a:hover { color: var(--ambar); }

/* ---------- Barra fixa (celular) ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 60;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  background: var(--lilas);
  color: var(--brasa);
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 5px 5px 0 var(--tinta), 0 12px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(160%);
  transition: transform 0.4s var(--ease);
}
.sticky-cta .mono { font-size: 0.66rem; }
.sticky-cta strong { color: var(--brasa); font-family: var(--f-mono); font-size: 0.85rem; text-transform: uppercase; }
.sticky-cta.is-visible { transform: translateY(0); }

/* ---------- Animações de entrada ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }
.js .ticket.reveal.is-in { transform: rotate(-2deg); }
.js .final__title.reveal.is-in { transform: perspective(900px) rotateY(12deg) rotate(-3deg) scaleY(1.2); }

/* Entrada do hero */
.js .hero__inner > * { animation: rise 1s var(--ease) both; }
.js .hero__inner > *:nth-child(2) { animation-delay: 0.1s; }
.js .hero__inner > *:nth-child(3) { animation-delay: 0.25s; }
.js .hero__inner > *:nth-child(4) { animation-delay: 0.35s; }
.js .hero__inner > *:nth-child(5) { animation-delay: 0.45s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
  .moments { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
}

@media (max-width: 980px) {
  :root { --header-h: 64px; }

  .menu-toggle { display: block; }

  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.25rem;
    padding: var(--header-h) var(--gutter) 3rem;
    background:
      radial-gradient(ellipse 80% 60% at 30% 30%, rgba(255, 170, 60, 0.5), transparent 70%),
      linear-gradient(165deg, var(--fogo), var(--brasa) 60%, var(--brasa-escura));
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
  }
  .nav.is-open { opacity: 1; visibility: visible; }

  .nav a:not(.btn) {
    font-family: var(--f-display);
    font-size: clamp(2.6rem, 12vw, 3.6rem);
    letter-spacing: 0.01em;
    line-height: 1;
  }
  .nav a:not(.btn)::after { display: none; }
  .nav__cta { margin-top: 1rem; }

  .ticket-wrap,
  .local { grid-template-columns: 1fr; }

  .about { margin-left: 0; }

  .sticky-cta { display: flex; }
  .footer { padding-bottom: 6rem; }
}

@media (max-width: 600px) {
  body { font-size: 1rem; }

  .hero__side { font-size: 0.78rem; letter-spacing: 0.04em; }
  .hero__address, .tag { font-size: 0.74rem; }

  .countdown { flex-direction: column; gap: 0.5rem; }

  /* no celular o título final quebra em 2 linhas: espaço para o acento do "LÁ" */
  .final__title { line-height: 1.15; }

  .moments { grid-template-columns: 1fr; }
  .moment h3 { margin-top: 1.5rem; }

  .timeline__hours { font-size: 0.66rem; }
  .timeline__hours .is-key { font-size: 0.8rem; }
  .timeline__hours li:not(.is-key):nth-child(even) { visibility: hidden; }

  .ticket { transform: none; }
  .js .ticket.reveal.is-in { transform: none; }
  .ticket__main { padding: 1.5rem 1.25rem; }
  .ticket .btn { font-size: 0.76rem; letter-spacing: 0.03em; padding-inline: 0.9rem; }
  .ticket__stub { width: 64px; }
  .ticket__stub-title { font-size: 1.9rem; }
  .ticket { -webkit-mask: none; mask: none; }

  .shop { grid-template-columns: 1fr; }
  .product--tee .product__media { aspect-ratio: 1 / 1.1; }
  .product__info { flex-direction: column; align-items: flex-start; padding: 1.1rem 1.25rem 1.25rem; }
  .shop__intro .btn { width: 100%; }

  .local__when { gap: 1.5rem; }
  .local__actions .btn { flex: 1 1 100%; }
  .invite__actions .btn { flex: 1 1 100%; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* celulares pequenos: título um pouco mais estreito para caber os rótulos laterais */
@media (max-width: 400px) {
  .hero__title { --tw: min(60vw, calc((100svh - 400px) / 1.28)); }
  .hero__side { font-size: 0.7rem; }
}

/* Movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .marquee__track { animation: none; }
}
