/* ============================================================
   Conf. Aliança 26 — "Pelo Espírito" · Landing de inscrições
   Tokens e componentes portados do design system do Claude Design
   (bundle landing-page-conferencia, _ds be41c6fe).
   ============================================================ */

/* ---------------- Northura @font-face ---------------- */
@font-face {
  font-family: "Northura";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/Northura-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Northura";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/Northura-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Northura";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/Northura-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Northura";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../assets/fonts/Northura-Black.ttf") format("truetype");
}
@font-face {
  font-family: "Northura Expanded";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/Northura-Expanded.ttf") format("truetype");
}
@font-face {
  font-family: "Northura Expanded";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/Northura-MediumExpanded.ttf") format("truetype");
}
@font-face {
  font-family: "Northura Expanded";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../assets/fonts/Northura-BoldExpanded.ttf") format("truetype");
}
@font-face {
  font-family: "Northura Expanded";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../assets/fonts/Northura-BlackExpanded.ttf") format("truetype");
}
@font-face {
  font-family: "Northura ExtraExpanded";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../assets/fonts/Northura-BlackExtraExpanded.ttf") format("truetype");
}

/* ---------------- Tokens ---------------- */
:root {
  /* flame */
  --flame-100: #ffd9cc;
  --flame-300: #ff7a52;
  --flame-400: #ff4c00;
  --flame-500: #ff2900;
  --flame-700: #b81700;
  --flame-gradient: linear-gradient(180deg, #ff2900 0%, #ff4c00 100%);

  /* void */
  --void-900: #060607;
  --void-800: #0c0c0e;
  --void-700: #141417;
  --void-600: #1d1d22;
  --void-500: #2a2a31;
  --void-400: #3a3a43;

  /* light */
  --light: #ffffff;
  --light-dim: rgba(255, 255, 255, 0.72);
  --light-faint: rgba(255, 255, 255, 0.46);

  --surface-card: var(--void-600);
  --text-primary: var(--light);
  --text-secondary: var(--light-dim);

  /* type */
  --font-display: "Northura ExtraExpanded", "Northura Expanded", "Northura", system-ui, sans-serif;
  --font-expanded: "Northura Expanded", "Northura", system-ui, sans-serif;
  --font-sans: "Northura", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fs-display-3: clamp(2.25rem, 5vw, 4rem);
  --fs-lead: 1.25rem;
  --fs-body: 1rem;
  --fs-label: 0.8125rem;
  --lh-tight: 0.92;
  --lh-body: 1.55;
  --ls-label: 0.22em;

  /* effects */
  --radius-sm: 4px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --radius-pill: 999px;
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.65);
  --glow-flame: 0 0 0 1px rgba(255, 41, 0, 0.35), 0 0 28px -6px rgba(255, 41, 0, 0.55);
  --glow-flame-strong: 0 0 40px -4px rgba(255, 41, 0, 0.7);
  --blur-glass: blur(16px) saturate(120%);
  --glass-fill: rgba(12, 12, 14, 0.55);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 140ms;
  --dur-base: 240ms;
  --veil-bottom: linear-gradient(180deg, transparent 0%, rgba(6, 6, 7, 0.85) 80%, var(--void-900) 100%);
  --veil-vignette: radial-gradient(120% 90% at 50% 30%, transparent 30%, rgba(6, 6, 7, 0.7) 100%);

  /* layout */
  --container-max: 1240px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-pad: clamp(80px, 12vh, 150px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--void-900);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
p { margin: 0; text-wrap: pretty; }
h1, h2 { margin: 0; }
strong { color: var(--light); }

::selection { background: var(--flame-500); color: var(--void-900); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--void-900); }
::-webkit-scrollbar-thumb { background: var(--void-500); border-radius: 999px; }
::-webkit-scrollbar-thumb:hover { background: var(--flame-700); }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------------- Componentes ---------------- */

/* Barra de chama (FlameBar) */
.flame-bar {
  display: block;
  width: 8px;
  flex: none;
  background: var(--flame-gradient);
  border-radius: 999px;
  box-shadow: var(--glow-flame);
}

/* Kicker / eyebrow */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-expanded);
  font-weight: 500;
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--light-faint);
}
.kicker::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--flame-500);
  flex: none;
}
.kicker--light { color: var(--light); }
.kicker--flame { color: var(--flame-500); }

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-expanded);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.btn:active { transform: translateY(0) scale(0.97); }

.btn--sm { padding: 8px 16px; font-size: 12px; letter-spacing: 0.14em; }
.btn--md { padding: 13px 26px; font-size: 13px; letter-spacing: 0.16em; }
.btn--lg { padding: 17px 38px; font-size: 15px; letter-spacing: 0.16em; }
.btn--full { display: flex; width: 100%; }

.btn--flame { background: var(--flame-gradient); color: var(--void-900); }
.btn--flame:hover { transform: translateY(-1px); box-shadow: var(--glow-flame-strong); }

.btn--outline { background: transparent; color: var(--flame-500); border-color: var(--flame-500); }
.btn--outline:hover { transform: translateY(-1px); background: rgba(255, 41, 0, 0.1); }

.btn--ghost { background: transparent; color: var(--light); border-color: var(--void-500); }
.btn--ghost:hover { transform: translateY(-1px); border-color: var(--light-faint); }

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-expanded);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  line-height: 1;
}
.badge--flame { background: var(--flame-500); color: var(--void-900); border: 1px solid transparent; }
.badge--outline { background: transparent; color: var(--flame-500); border: 1px solid var(--flame-500); }

/* EventMeta — fatos do evento separados por pontos de chama */
.event-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-family: var(--font-expanded);
  font-weight: 500;
  font-size: var(--fs-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light);
}
.event-meta .dot {
  width: 5px;
  height: 5px;
  background: var(--flame-500);
  border-radius: 50%;
  flex: none;
}

/* DisplayLockup — headline empilhada */
.lockup {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--light);
}
.lockup span { display: block; }
.lockup .flame-text,
.flame-text {
  background: var(--flame-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Card */
.card {
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  box-shadow: var(--shadow-md);
}
.card--solid { background: var(--surface-card); border: 1px solid var(--void-500); }
.card--flame { background: var(--surface-card); border: 1.5px solid var(--flame-500); }
.card--glow { box-shadow: var(--glow-flame); }

/* Títulos de seção */
.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  font-size: var(--fs-display-3);
  line-height: var(--lh-tight);
  letter-spacing: -0.01em;
  color: var(--light);
}

/* ---------------- Nav ---------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base);
}
.nav.solid {
  background: rgba(6, 6, 7, 0.82);
  -webkit-backdrop-filter: var(--blur-glass);
  backdrop-filter: var(--blur-glass);
  border-bottom-color: var(--void-500);
}
.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(14px, 2vw, 20px) var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__brand .flame-bar { height: 26px; }
.nav__brand span {
  font-family: var(--font-expanded);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
}
.nav__links a {
  font-family: var(--font-expanded);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light-dim);
  transition: color var(--dur-fast);
}
.nav__links a:hover { color: var(--light); }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__smoke {
  position: absolute;
  inset: 0;
  background: url("../assets/img/smoke-bg.png") center/cover no-repeat;
}
.hero__dove {
  position: absolute;
  top: -6%;
  right: -8%;
  width: min(70vw, 820px);
  height: 100%;
  background: url("../assets/img/dove-emblem.png") center right/contain no-repeat;
  opacity: 0.62;
  filter: grayscale(1) contrast(1.05);
  -webkit-mask-image: radial-gradient(70% 70% at 60% 45%, #000 50%, transparent 100%);
  mask-image: radial-gradient(70% 70% at 60% 45%, #000 50%, transparent 100%);
}
.hero__vignette { position: absolute; inset: 0; background: var(--veil-vignette); }
.hero__veil { position: absolute; inset: 0; background: var(--veil-bottom); }
.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 18% 75%, rgba(255, 41, 0, 0.14) 0%, transparent 60%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: clamp(112px, 15vh, 168px) var(--gutter) clamp(48px, 8vh, 96px);
}
.hero__content .kicker { margin-bottom: 28px; }
.hero__lockup {
  font-size: clamp(4rem, 15vw, 11rem);
  margin-bottom: 8px;
}
.hero__lead {
  max-width: 30ch;
  margin-top: 20px;
  color: var(--text-secondary);
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
}
.hero__meta { margin-top: 30px; }
.hero__countdown { margin-top: 44px; }
.hero__cta {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Countdown */
.countdown {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.4vw, 18px);
}
.countdown__unit { text-align: center; min-width: 64px; }
.countdown__value {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.9;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: -0.02em;
  color: var(--light);
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  margin-top: 8px;
  font-family: var(--font-expanded);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light-faint);
}
.countdown__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--flame-500);
  margin-bottom: 26px;
  flex: none;
}
.countdown--done {
  font-family: var(--font-expanded);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--flame-500);
  font-size: 14px;
}

/* ---------------- Sobre ---------------- */
.sobre {
  position: relative;
  background: var(--void-900);
  padding: var(--section-pad) 0;
}
.sobre__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.sobre .kicker { margin-bottom: 26px; }
.sobre__title { margin-bottom: 28px; }
.sobre__copy {
  color: var(--text-secondary);
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  max-width: 54ch;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sobre__quote {
  margin-top: 40px;
  display: flex;
  gap: 18px;
  align-items: stretch;
}
.sobre__quote .flame-bar { height: 86px; }
.sobre__quote blockquote { margin: 0; }
.sobre__quote p {
  font-family: var(--font-expanded);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--light);
}
.sobre__quote p .flame-word { color: var(--flame-500); font-weight: 700; }
.sobre__quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: var(--font-expanded);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light-faint);
}
.sobre__figure {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--void-500);
  box-shadow: var(--shadow-lg);
}
.sobre__figure-img {
  position: absolute;
  inset: 0;
  background: url("../assets/img/dove-emblem.png") center/cover no-repeat;
  filter: grayscale(1);
}
.sobre__figure-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 6, 7, 0.9) 100%);
}
.sobre__figure-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 28px;
  font-family: var(--font-expanded);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--light-dim);
}

/* ---------------- Programação ---------------- */
.programacao {
  background: var(--void-800);
  padding: var(--section-pad) 0;
}
.programacao__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: clamp(40px, 6vh, 64px);
}
.programacao__header .kicker { margin-bottom: 22px; }
.programacao__hint {
  max-width: 34ch;
  color: var(--text-secondary);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
}
.programacao__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(18px, 2vw, 28px);
}
.day-card {
  height: 100%;
  padding: clamp(24px, 3vw, 34px);
}
.day-card__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 10px;
}
.day-card__head .flame-bar { height: 46px; }
.day-card__dow {
  font-family: var(--font-expanded);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light-dim);
}
.day-card__date {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--light);
}
.session {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--void-500);
}
.session__time {
  font-family: var(--font-expanded);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--light);
  font-variant-numeric: tabular-nums;
  min-width: 62px;
  flex: none;
}
.session__title {
  font-family: var(--font-expanded);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--light);
}
.session__note {
  margin-top: 5px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--light-faint);
}
.session--muted .session__title { color: var(--light-dim); }
.session--flame .session__time { color: var(--flame-500); }
.session--flame .session__note { color: var(--flame-300); }

/* ---------------- Ingressos ---------------- */
.ingressos {
  background: var(--void-900);
  padding: var(--section-pad) 0;
}
.ingressos__panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--void-500);
  background: linear-gradient(180deg, rgba(6, 6, 7, 0.4), rgba(6, 6, 7, 0.86)),
              url("../assets/img/smoke-bg.png") center/cover no-repeat;
  padding: clamp(36px, 5vw, 72px);
}
.ingressos__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 85% 30%, rgba(255, 41, 0, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.ingressos__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.ingressos .kicker { margin-bottom: 24px; }
.ingressos__lockup {
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin-bottom: 20px;
}
.ingressos__lead {
  max-width: 42ch;
  color: var(--text-secondary);
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
}
.price-card {
  padding: clamp(28px, 3vw, 38px);
  background: var(--glass-fill);
  -webkit-backdrop-filter: var(--blur-glass);
  backdrop-filter: var(--blur-glass);
}
.price-card__price {
  margin-top: 22px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.price-card__currency {
  font-family: var(--font-expanded);
  font-weight: 500;
  font-size: 20px;
  color: var(--light-dim);
  margin-bottom: 10px;
}
.price-card__int {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.2rem, 7vw, 4.6rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--light);
}
.price-card__cents {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--light);
  margin-bottom: 8px;
}
.price-card__terms {
  margin: 10px 0 26px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--light-faint);
  line-height: 1.5;
}
.price-card__note {
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-expanded);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light-faint);
}

/* ---------------- Local ---------------- */
.local {
  background: var(--void-800);
  padding: var(--section-pad) 0;
}
.local__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.local .kicker { margin-bottom: 24px; }
.local__title { margin-bottom: 26px; }
.local__address {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.local__address .flame-bar { height: 64px; }
.local__address p {
  color: var(--text-secondary);
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
  max-width: 34ch;
}
.local__map {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--void-500);
  box-shadow: var(--shadow-md);
}
.local__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.9);
}
.local__map-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px var(--void-500);
  background: radial-gradient(60% 60% at 50% 50%, transparent 55%, rgba(6, 6, 7, 0.35) 100%);
}

/* ---------------- Footer ---------------- */
.footer {
  background: var(--void-900);
  border-top: 1px solid var(--void-500);
  padding: clamp(56px, 8vh, 90px) 0 48px;
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-start;
}
.footer__brand { max-width: 32ch; }
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer__brand-row .flame-bar { height: 26px; }
.footer__brand-row span {
  font-family: var(--font-expanded);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
}
.footer__brand p {
  color: var(--light-faint);
  font-size: 14px;
  line-height: 1.6;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links-label {
  font-family: var(--font-expanded);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light-faint);
  margin-bottom: 4px;
}
.footer__links a {
  font-family: var(--font-expanded);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--light-dim);
  transition: color var(--dur-fast);
}
.footer__links a:hover { color: var(--flame-500); }
.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--void-500);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
.footer__bottom span,
.footer__bottom a {
  font-family: var(--font-expanded);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light-faint);
}
.footer__bottom a { transition: color var(--dur-fast); }
.footer__bottom a:hover { color: var(--flame-500); }
.footer__bottom a strong { color: var(--light-dim); font-weight: 700; }

/* ---------------- Responsivo ---------------- */
@media (max-width: 720px) {
  .nav__links { display: none; }
}
@media (max-width: 860px) {
  .sobre__grid,
  .local__grid,
  .ingressos__grid {
    grid-template-columns: 1fr;
  }
  .sobre__grid > .sobre__figure-wrap {
    order: -1;
    max-width: 460px;
  }
}
