/* ============================================================
   CONFERÊNCIA RELEVANTE 2026 — Landing Page
   Identidade: azul elétrico profundo + amarelo-limão neon
   Fontes: Heavitas (display) · Aleo (corpo)
   ============================================================ */

/* -------------------- FONTES -------------------- */
@font-face {
  font-family: 'Heavitas';
  src: url('../fonts/Heavitas.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aleo';
  src: url('../fonts/Aleo-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aleo';
  src: url('../fonts/Aleo-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aleo';
  src: url('../fonts/Aleo-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aleo';
  src: url('../fonts/Aleo-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aleo';
  src: url('../fonts/Aleo-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aleo';
  src: url('../fonts/Aleo-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Aleo';
  src: url('../fonts/Aleo-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* -------------------- TOKENS -------------------- */
:root {
  /* Cores da marca */
  --blue-950: #030b26;
  --blue-900: #05123f;
  --blue-800: #071a5c;
  --blue-700: #0a2a8c;
  --blue-600: #0f3fc4;
  --blue-500: #1e5bff;
  --blue-glow: #37a0ff;

  --lime: #d4ff1a;
  --lime-bright: #e6ff4d;
  --lime-deep: #a8d400;

  /* Tiers de ingresso (do mapa) */
  --tier-frente: #2fe36b;
  --tier-inter: #ff9d1e;
  --tier-galeria: #2f7bff;

  --white: #f2f6ff;
  --muted: #9fb4e8;
  --muted-dim: #6b81b8;

  /* Tipografia */
  --font-display: 'Heavitas', 'Arial Black', sans-serif;
  --font-body: 'Aleo', Georgia, serif;

  /* Espaçamento & layout */
  --container: 1200px;
  --radius: 18px;
  --radius-lg: 28px;

  /* Efeitos */
  --glow-lime: 0 0 40px rgba(212, 255, 26, 0.35);
  --glow-blue: 0 0 60px rgba(55, 160, 255, 0.4);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* -------------------- RESET / BASE -------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--blue-950);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Fundo global com textura + halftone + vinheta */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 120% 80% at 50% -10%, var(--blue-700) 0%, transparent 55%),
    radial-gradient(ellipse 100% 90% at 80% 110%, #0a1f66 0%, transparent 50%),
    linear-gradient(180deg, var(--blue-950) 0%, var(--blue-900) 40%, var(--blue-950) 100%);
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image: radial-gradient(rgba(120, 170, 255, 0.16) 1px, transparent 1.4px);
  background-size: 22px 22px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 40%, #000 30%, transparent 85%);
}

/* Camada de textura no BACKGROUND (papel amassado sobre o azul) */
.bg-texture {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url('../assets/TEXTURA2.png') center/cover;
  mix-blend-mode: soft-light;
  opacity: 0.28;
}

/* Textura de papel amassado SOBREPOSTA à cor (overlay por cima de tudo) */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  background: url('../assets/TEXTURA.png') center/cover;
  mix-blend-mode: overlay;
  opacity: 0.4;
}

/* -------------------- TIPOGRAFIA UTIL -------------------- */
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 34px; height: 2px;
  background: var(--lime);
  box-shadow: var(--glow-lime);
}
.text-lime { color: var(--lime); }
.text-muted { color: var(--muted); }

/* -------------------- BOTÕES -------------------- */
.btn {
  --pad-y: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  padding: var(--pad-y) 30px;
  border-radius: 100px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out), background .25s;
  position: relative;
  overflow: hidden;
  min-height: 48px;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--lime);
  color: var(--blue-950);
  box-shadow: var(--glow-lime);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 55px rgba(212, 255, 26, 0.6);
  background: var(--lime-bright);
}
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: rgba(120, 170, 255, 0.35);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--lime);
  color: var(--lime);
}

/* -------------------- NAVBAR -------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s, padding .3s, backdrop-filter .3s;
}
/* Scrim permanente para o menu ficar sempre legível sobre o hero */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(3, 11, 38, 0.9) 0%, rgba(3, 11, 38, 0.35) 60%, transparent 100%);
  opacity: 1;
  transition: opacity .3s;
}
.nav.scrolled::before { opacity: 0; }
.nav.scrolled {
  background: rgba(3, 11, 38, 0.78);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(120,170,255,0.12);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--white);
  display: flex; align-items: center; gap: 9px;
}
.nav-logo img { height: 34px; width: auto; display: block; }
.nav-logo b { color: var(--lime); }
.nav-logo .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--lime); box-shadow: var(--glow-lime);
  animation: pulse 2s infinite;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #dbe6ff;
  text-transform: uppercase;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--lime);
  transition: width .3s var(--ease-out);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* -------------------- HERO -------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
}
/* Radar / sonar concêntrico */
.hero-radar {
  position: absolute;
  top: 46%; left: 50%;
  width: 160vmax; height: 160vmax;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  opacity: 0.28;
}
.hero-radar span {
  position: absolute;
  top: 50%; left: 50%;
  border: 1px solid rgba(80, 150, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.hero-radar::after {
  content: '';
  position: absolute; inset: 0;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(55,160,255,0.10) 25deg, transparent 60deg);
  border-radius: 50%;
  animation: radar-sweep 8s linear infinite;
}
/* Textura de vórtice/túnel (TEXTURA5) no fundo do hero — motivo da BASE.png */
.hero-bg-texture {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url('../assets/TEXTURA5.png') center/cover no-repeat;
  filter: invert(1) brightness(1.15) contrast(1.05);
  mix-blend-mode: screen;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 45%, #000 55%, transparent 100%);
}

/* raios diagonais de luz */
.hero-rays {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(115deg, transparent 40%, rgba(55,160,255,0.10) 50%, transparent 60%),
    linear-gradient(65deg, transparent 44%, rgba(120,190,255,0.08) 50%, transparent 56%);
  mix-blend-mode: screen;
}

/* Lockup do hero — recria a BASE.png com os logos oficiais */
.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-date-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 30px 12px;
  border: 2px solid var(--lime);
  border-top: none;
  border-radius: 0 0 70px 70px;
  margin-bottom: 30px;
  background: rgba(3, 11, 38, 0.35);
  box-shadow: 0 6px 30px rgba(212,255,26,0.12);
}
.hero-date-badge .days {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  color: var(--white);
  display: flex; align-items: center; gap: 6px;
}
.hero-date-badge .days i { color: var(--lime); font-style: normal; font-size: 1.35rem; }
.hero-date-badge .sub {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-top: 4px;
}

.hero-lockup {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 118px; /* espaço para o ALEGRIA posicionado abaixo */
}
.hero-lockup::after {
  /* brilho difuso atrás dos logos */
  content: '';
  position: absolute;
  inset: -8% -6% 10%;
  z-index: -1;
  background: radial-gradient(ellipse 65% 70% at 50% 45%, rgba(37,110,255,0.30), transparent 70%);
  filter: blur(34px);
}
.logo-conf {
  width: 100%;
  height: auto;
  filter: drop-shadow(7px 8px 0 rgba(30, 91, 255, 0.6))
          drop-shadow(0 0 44px rgba(212,255,26,0.28));
}
.logo-alegria {
  position: absolute;
  right: 15%;
  bottom: 8px;
  width: 24%;
  max-width: 220px;
  height: auto;
  filter: drop-shadow(5px 6px 0 rgba(30, 91, 255, 0.6))
          drop-shadow(0 0 30px rgba(212,255,26,0.3));
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 52ch;
  margin: 20px auto 0;
}
.hero-tagline b { color: var(--white); font-weight: 700; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.hero-meta {
  margin-top: 34px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-meta .item .k {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--lime);
}
.hero-meta .item .l {
  font-size: 0.76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* -------------------- MARQUEE -------------------- */
.marquee {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(120,170,255,0.14);
  border-bottom: 1px solid rgba(120,170,255,0.14);
  background: rgba(212, 255, 26, 0.03);
  padding: 16px 0;
}
.marquee-track {
  display: flex;
  gap: 42px;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 42px;
}
.marquee-track span::after {
  content: '';
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--lime); box-shadow: var(--glow-lime);
}
/* Variante lime (faixa colorida, sentido invertido) */
.marquee-alt {
  background: var(--lime);
  border-color: rgba(3,11,38,0.25);
}
.marquee-alt .marquee-track { animation-direction: reverse; }
.marquee-alt .marquee-track span { color: var(--blue-950); }
.marquee-alt .marquee-track span::after { background: var(--blue-950); box-shadow: none; }

/* -------------------- CONTADOR REGRESSIVO (dentro do hero) -------------------- */
.hero-countdown { margin-top: 44px; }
.cd-label {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 28px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.cd-label::before, .cd-label::after {
  content: ''; width: 30px; height: 2px; background: var(--lime); box-shadow: var(--glow-lime);
}
.cd-grid { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cd-unit {
  position: relative;
  min-width: 128px;
  padding: 26px 18px 20px;
  border-radius: 20px;
  text-align: center;
  background: linear-gradient(160deg, rgba(37,110,255,0.2), rgba(3,11,38,0.65));
  border: 1px solid rgba(120,170,255,0.22);
  box-shadow: inset 0 0 34px rgba(37,110,255,0.16);
  transition: transform .35s var(--ease-out), border-color .35s;
}
.cd-unit:hover { transform: translateY(-4px); border-color: var(--lime); }
.cd-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--lime);
  text-shadow: 0 0 30px rgba(212,255,26,0.4);
  font-variant-numeric: tabular-nums;
}
.cd-lbl {
  display: block; margin-top: 10px;
  font-family: var(--font-display);
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
}

/* -------------------- SECTIONS GENERAL -------------------- */
section { position: relative; }
section[id] { scroll-margin-top: 92px; }
.section-pad { padding: 110px 0; }
.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head.center { margin-inline: auto; text-align: center; position: relative; }
.section-head.center::before {
  content: '';
  position: absolute; left: 50%; top: -30px; transform: translateX(-50%);
  width: min(360px, 80%); height: 260px; z-index: -1; pointer-events: none;
  background: radial-gradient(circle, rgba(212,255,26,0.07), transparent 68%);
}
.sec-lime .section-head.center::before,
.sec-yellow .section-head.center::before { display: none; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 7vw, 3.8rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin: 18px 0 18px;
  overflow-wrap: break-word;
  /* padrão extrudado: amarelo com sombra azul 3D (à esquerda/baixo) */
  color: #f2e600;
  text-shadow:
    -1px 1px 0 var(--blue-500),
    -2px 2px 0 var(--blue-600),
    -3px 3px 0 var(--blue-600),
    -4px 4px 0 var(--blue-700),
    -5px 5px 0 var(--blue-800);
}
.section-title em { color: #fff; font-style: normal; }
.section-sub { color: var(--muted); font-size: 1.08rem; }

/* -------------------- TEMAS DE SEÇÃO (cores da marca + texturas) -------------------- */
.sec-dark { background: var(--blue-950); position: relative; isolation: isolate; }
.sec-dark::before {
  content: '';
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: url('../assets/TEXTURA.png') center/cover;
  mix-blend-mode: overlay;
  opacity: 0.35;
}

.sec-lime, .sec-yellow, .sec-light { color: var(--blue-950); }
.sec-lime  { background: var(--lime); }
.sec-yellow{ background: #f2e600; }
.sec-light { background: #eaf0fb; }

/* textura de papel amassado sobre as seções coloridas */
.sec-paper { position: relative; isolation: isolate; }
.sec-paper::before {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: var(--paper, url('../assets/TEXTURA.png')) center/cover;
  mix-blend-mode: multiply;
  opacity: 1;
  filter: contrast(1.6) brightness(0.94);
}
.sec-paper > .container { position: relative; z-index: 1; }

/* overrides de tipografia para seções claras (texto escuro) */
.sec-lime .eyebrow, .sec-yellow .eyebrow, .sec-light .eyebrow { color: var(--blue-800); }
.sec-lime .eyebrow::before, .sec-yellow .eyebrow::before, .sec-light .eyebrow::before { background: var(--blue-800); box-shadow: none; }
.sec-lime .section-title, .sec-yellow .section-title, .sec-light .section-title {
  color: var(--blue-700);
  text-shadow:
    -1px 1px 0 #fff,
    -2px 2px 0 #fff,
    -3px 3px 0 rgba(255,255,255,0.9),
    -4px 4px 0 rgba(3,11,38,0.15);
}
.sec-lime .section-title em, .sec-yellow .section-title em, .sec-light .section-title em { color: var(--blue-950); }
.sec-lime .section-sub, .sec-yellow .section-sub { color: rgba(3,11,38,0.72); }
.sec-light .section-sub { color: #4a5c86; }
.sec-lime .text-lime, .sec-yellow .text-lime { color: var(--blue-900); }

/* Versículo sobre bloco lime — texto escuro */
.verse.sec-lime blockquote { color: var(--blue-950); }
.verse.sec-lime blockquote b { color: var(--blue-800); font-weight: 800; }
.verse.sec-lime .quote-mark { color: var(--blue-900); opacity: 0.35; }
.verse.sec-lime cite { color: var(--blue-800); }

/* -------------------- SOBRE -------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-text p { color: var(--muted); margin-bottom: 18px; font-size: 1.05rem; }
.about-text p b { color: var(--white); }
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.stat-card {
  border: 1px solid rgba(120,170,255,0.18);
  border-radius: var(--radius);
  padding: 28px 24px;
  background: linear-gradient(160deg, rgba(15,63,196,0.16), rgba(3,11,38,0.4));
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-out), border-color .35s;
}
.stat-card:hover { transform: translateY(-6px); border-color: var(--lime); }
.stat-card .num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--lime);
  line-height: 1;
}
.stat-card .lbl { color: var(--muted); font-size: 0.9rem; margin-top: 8px; }
.stat-card::after {
  content: '';
  position: absolute; right: -30px; bottom: -30px;
  width: 90px; height: 90px; border-radius: 50%;
  border: 1px solid rgba(212,255,26,0.2);
}

/* -------------------- PROGRAMAÇÃO -------------------- */
.days-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.day-card {
  border: 1px solid rgba(120,170,255,0.18);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  background: linear-gradient(180deg, rgba(15,63,196,0.14), rgba(3,11,38,0.5));
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s;
}
.day-card:hover {
  transform: translateY(-8px);
  border-color: var(--lime);
  box-shadow: var(--glow-lime);
}
.day-card .daynum {
  font-family: var(--font-display);
  font-size: 4.4rem;
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 2px var(--lime);
  transition: color .4s;
}
.day-card:hover .daynum { color: var(--lime); }
.day-card .dayname {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  color: var(--muted);
  margin: 6px 0 22px;
}
.day-card h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 18px;
  color: var(--white);
}
.day-card ul li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(120,170,255,0.12);
  color: var(--muted);
  font-size: 0.96rem;
}
.day-card ul li time {
  font-family: var(--font-display);
  font-size: 0.72rem;
  color: var(--lime);
  min-width: 52px;
  padding-top: 3px;
  letter-spacing: 0.05em;
}

/* -------------------- INGRESSOS -------------------- */
.tickets-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 50px;
  align-items: start;
}
.tickets-list { display: flex; flex-direction: column; gap: 18px; }
.ticket {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(120,170,255,0.2);
  border-left: 5px solid var(--tier);
  border-radius: var(--radius);
  padding: 24px 26px;
  background: linear-gradient(100deg, rgba(15,63,196,0.14), rgba(3,11,38,0.42));
  transition: transform .3s var(--ease-out), box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.ticket:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.ticket[data-tier="frente"] { --tier: var(--tier-frente); }
.ticket[data-tier="inter"]  { --tier: var(--tier-inter); }
.ticket[data-tier="galeria"]{ --tier: var(--tier-galeria); }
.ticket .swatch {
  width: 20px; height: 20px; border-radius: 6px;
  background: var(--tier);
  box-shadow: 0 0 18px var(--tier);
}
.ticket .info h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.ticket .info p { color: var(--muted); font-size: 0.88rem; }
.ticket .price { text-align: right; }
.ticket .price .val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
}
.ticket .price .from { font-size: 0.72rem; color: var(--muted-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.ticket.featured {
  border-color: var(--lime);
  background: linear-gradient(100deg, rgba(212,255,26,0.08), rgba(3,11,38,0.5));
}
.ticket .tag-pop {
  position: absolute; top: 0; right: 0;
  font-family: var(--font-display);
  font-size: 0.58rem; letter-spacing: 0.14em;
  background: var(--lime); color: var(--blue-950);
  padding: 4px 12px; border-radius: 0 0 0 12px;
}

.map-figure {
  border: 1px solid rgba(120,170,255,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  position: sticky;
  top: 100px;
}
.map-figure img { width: 100%; }
.map-figure figcaption {
  padding: 16px 20px;
  font-size: 0.84rem;
  color: var(--muted);
  display: flex; align-items: center; gap: 10px;
  background: rgba(3,11,38,0.6);
}
.map-figure figcaption .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); }

/* -------------------- SPEAKERS / MOMENTOS -------------------- */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.highlight {
  border: 1px solid rgba(120,170,255,0.16);
  border-radius: var(--radius);
  padding: 30px 24px;
  background: linear-gradient(180deg, rgba(15,63,196,0.12), rgba(3,11,38,0.4));
  transition: transform .35s var(--ease-out), border-color .35s;
}
.highlight:hover { transform: translateY(-6px); border-color: var(--lime); }
.highlight .ic {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(212,255,26,0.1);
  border: 1px solid rgba(212,255,26,0.3);
  margin-bottom: 18px;
}
.highlight .ic svg { width: 26px; height: 26px; stroke: var(--lime); }
.highlight h4 { font-family: var(--font-body); font-weight: 800; font-size: 1.12rem; margin-bottom: 8px; }
.highlight p { color: var(--muted); font-size: 0.92rem; }

/* -------------------- VERSÍCULO (tema) -------------------- */
.verse {
  position: relative;
  padding: 76px 0;
  text-align: center;
  overflow: hidden;
  --paper: url('../assets/TEXTURA3.png');
}
.verse .container { max-width: 900px; }
.verse blockquote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 3.4vw, 2.1rem);
  line-height: 1.5;
  color: var(--white);
  position: relative;
}
.verse blockquote b { color: var(--lime); font-style: normal; }
.verse .quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--lime);
  line-height: 0.6;
  display: block;
  margin-bottom: 6px;
  opacity: 0.5;
}
.verse cite {
  display: block;
  margin-top: 22px;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: var(--lime);
}

/* -------------------- LINEUP / PRELETORES -------------------- */
/* TEXTURA5 como plano de fundo (atrás das fotos) — glow igual ao hero */
#lineup { position: relative; overflow: hidden; }
#lineup::before {
  content: '';
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: url('../assets/TEXTURA5.png') center / cover no-repeat;
  filter: invert(1) brightness(1.15) contrast(1.05);
  mix-blend-mode: screen;
  opacity: 0.4;
  /* degradê de opacidade nas bordas (some no topo/base e laterais) */
  -webkit-mask-image:
    linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%),
    radial-gradient(ellipse 92% 100% at 50% 50%, #000 55%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%),
    radial-gradient(ellipse 92% 100% at 50% 50%, #000 55%, transparent 100%);
  mask-composite: intersect;
}
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
/* Card = só a foto (borda, arte e nome já vêm na própria imagem) */
.speaker {
  position: relative;
  aspect-ratio: 3 / 4;
}
.speaker img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;          /* mostra a arte inteira, sem cortar */
  object-position: center;
  display: block;
  transition: transform .45s var(--ease-out), filter .45s;
}
/* hover na própria imagem */
.speaker:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 14px 34px rgba(212,255,26,0.32));
}
/* sem caixa/borda e sem texto de nome — a imagem já traz tudo */
.speaker .placeholder,
.speaker figcaption { display: none; }
.lineup-note {
  text-align: center;
  margin-top: 30px;
  color: var(--muted-dim);
  font-size: 0.88rem;
}

/* -------------------- LOCAL -------------------- */
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}
.local-card {
  border: 1px solid rgba(120,170,255,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 38px;
  background: linear-gradient(160deg, rgba(15,63,196,0.18), rgba(3,11,38,0.5));
}
.local-card .addr {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 22px 0 28px;
}
.local-card .addr .pin {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(212,255,26,0.1);
  border: 1px solid rgba(212,255,26,0.3);
}
.local-card .addr .pin svg { width: 24px; height: 24px; stroke: var(--lime); }
.local-card .addr h4 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 4px; }
.local-card .addr p { color: var(--muted); font-size: 0.98rem; }
.local-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(120,170,255,0.25);
  aspect-ratio: 4 / 3;
  position: relative;
  box-shadow: 0 22px 55px rgba(0,0,0,0.4);
}
.local-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.25) contrast(1.05);
}
.local-map .map-open {
  position: absolute;
  left: 16px; bottom: 16px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  border-radius: 100px;
  background: var(--lime);
  color: var(--blue-950);
  font-family: var(--font-display);
  font-size: 0.72rem; letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--glow-lime);
  transition: transform .2s var(--ease-out);
}
.local-map .map-open:hover { transform: translateY(-2px); }
.local-map .map-open svg { width: 16px; height: 16px; }

/* Coluna de localização (endereço + mapa empilhados) */
.local-left { display: flex; flex-direction: column; gap: 20px; }
.local-left .local-map { aspect-ratio: 16 / 10; }

/* Formulário WhatsApp */
.local-form-card {
  border: 1px solid rgba(120,170,255,0.22);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  background: linear-gradient(160deg, rgba(37,110,255,0.18), rgba(3,11,38,0.55));
  box-shadow: var(--glow-blue);
}
.local-form-card h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin: 10px 0 6px;
}
.local-form-card .form-sub { color: var(--muted); font-size: 0.96rem; margin-bottom: 24px; }
.wa-form { display: flex; flex-direction: column; gap: 16px; }
.wa-field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.wa-field input, .wa-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(3,11,38,0.5);
  border: 1px solid rgba(120,170,255,0.25);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.wa-field input::placeholder, .wa-field textarea::placeholder { color: var(--muted-dim); }
.wa-field input:focus, .wa-field textarea:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(212,255,26,0.15);
}
.wa-field textarea { min-height: 120px; resize: vertical; }
.wa-field.error input, .wa-field.error textarea { border-color: #ff5c7a; }
.wa-form .btn { margin-top: 6px; width: 100%; }

/* -------------------- RECAP 2025 (vídeo) -------------------- */
/* textura TEXTURA3 comprimida no fundo do recap */
#recap::before {
  background: url('../assets/TEXTURA3.png') center / cover no-repeat !important;
  mix-blend-mode: overlay !important;
  opacity: 0.7 !important;
}
.recap-embed {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(120,170,255,0.25);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 70px rgba(37,110,255,0.2);
}
.recap-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
/* Pôster clicável (fallback quando o embed é bloqueado) */
.recap-link {
  display: grid;
  place-items: center;
  gap: 16px;
  background-color: var(--blue-900);
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
  position: relative;
  transition: transform .35s var(--ease-out);
}
.recap-link::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(3,11,38,0.55), rgba(3,11,38,0.8));
}
.recap-link:hover { transform: translateY(-4px); }
.recap-play {
  position: relative;
  width: 84px; height: 84px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--lime); color: var(--blue-950);
  box-shadow: var(--glow-lime);
  transition: transform .3s var(--ease-out);
}
.recap-link:hover .recap-play { transform: scale(1.08); }
.recap-play svg { width: 38px; height: 38px; margin-left: 4px; }
.recap-cap {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
}

/* -------------------- VALORES / LOTES -------------------- */
#valores { --paper: url('../assets/TEXTURA2.png'); }
/* textura mais comprimida (repetida) para ficar mais visível */
#valores::before { background-size: 620px auto; background-repeat: repeat; }
.lotes-schedule {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin-bottom: 52px;
}
.lote-chip {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 14px 24px; border-radius: 16px;
  background: rgba(3,11,38,0.05);
  border: 1px solid rgba(3,11,38,0.14);
}
.lote-chip .l { font-family: var(--font-display); font-size: 0.92rem; color: var(--blue-900); letter-spacing: 0.03em; }
.lote-chip .d { font-size: 0.8rem; color: #4a5c86; }
/* Lote atual (destacado) */
.lote-chip.current { background: var(--blue-900); border-color: var(--blue-900); box-shadow: 0 8px 24px rgba(3,11,38,0.25); }
.lote-chip.current .l { color: var(--lime); }
.lote-chip.current .d { color: #c3d3f5; }
/* Lote esgotado */
.lote-chip.past { opacity: 0.5; }
.lote-chip.past .l { text-decoration: line-through; }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(3,11,38,0.14);
  border: 1px solid rgba(3,11,38,0.08);
  border-top: 5px solid var(--tier, var(--blue-600));
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.price-card:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(3,11,38,0.22); }
.price-card[data-tier="frente"]  { --tier: var(--tier-frente); }
.price-card[data-tier="inter"]   { --tier: var(--tier-inter); }
.price-card[data-tier="galeria"] { --tier: var(--tier-galeria); }
.price-card .ph {
  padding: 24px 26px 18px; display: flex; align-items: center; gap: 13px;
}
.price-card .ph .sw { width: 18px; height: 18px; border-radius: 6px; background: var(--tier); box-shadow: 0 0 16px var(--tier); flex-shrink: 0; }
.price-card .ph h4 { font-family: var(--font-display); font-size: 1.25rem; color: var(--blue-950); line-height: 1.1; }
.price-card .ph h4 small { display: block; font-family: var(--font-body); font-weight: 400; color: #4a5c86; font-size: 0.74rem; letter-spacing: 0; margin-top: 2px; }
.price-rows { padding: 4px 26px 22px; }
.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 13px 0; border-top: 1px solid rgba(3,11,38,0.08);
}
.price-row .lt { font-family: var(--font-display); font-size: 0.76rem; color: #6b7ba3; letter-spacing: 0.05em; }
.price-row .vl { font-family: var(--font-display); font-size: 1.2rem; color: var(--blue-950); }
/* Lote esgotado (00) */
.price-row.past { opacity: 0.55; }
.price-row.past .vl { text-decoration: line-through; color: #8a97b8; }
.price-row.past .lt::after {
  content: 'ESGOTADO';
  display: inline-block; margin-left: 8px;
  font-size: 0.58rem; letter-spacing: 0.08em;
  background: #8a97b8; color: #fff;
  padding: 2px 8px; border-radius: 20px; vertical-align: middle;
}
/* Lote atual (01) */
.price-row.current .lt { color: var(--blue-900); }
.price-row.current .vl { color: var(--blue-700); font-size: 1.4rem; }
.price-row.current .lt::after {
  content: 'LOTE ATUAL';
  display: inline-block; margin-left: 8px;
  font-size: 0.58rem; letter-spacing: 0.08em;
  background: var(--tier); color: #fff;
  padding: 2px 8px; border-radius: 20px; vertical-align: middle;
}
.price-card .buy {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 0 26px 26px; padding: 13px;
  border-radius: 100px;
  font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--blue-950); color: #fff;
  transition: transform .25s var(--ease-out), background .25s;
}
.price-card .buy:hover { transform: translateY(-2px); background: var(--blue-700); }
.price-card .buy svg { width: 16px; height: 16px; }

/* -------------------- CTA FINAL -------------------- */
.cta-final {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 80px 40px;
  text-align: center;
  background: linear-gradient(140deg, var(--blue-700), var(--blue-900));
  border: 1px solid rgba(120,170,255,0.25);
}
.cta-final::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(212,255,26,0.16) 1.4px, transparent 1.8px);
  background-size: 18px 18px;
  mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, #000 20%, transparent 75%);
}
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 7vw, 4.4rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 20px;
  position: relative;
  overflow-wrap: break-word;
  color: #f2e600;
  text-shadow:
    -1px 1px 0 var(--blue-500),
    -2px 2px 0 var(--blue-600),
    -3px 3px 0 var(--blue-700),
    -4px 4px 0 var(--blue-800);
}
.cta-final h2 em { color: #fff; font-style: normal; }
.cta-final p { color: var(--muted); max-width: 46ch; margin: 0 auto 34px; position: relative; }
.cta-final .hero-actions { justify-content: center; position: relative; }

/* -------------------- FAQ -------------------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(120,170,255,0.18);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  background: rgba(3,11,38,0.4);
  transition: border-color .3s;
}
.faq-item.open { border-color: var(--lime); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 26px;
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  text-align: left;
}
.faq-q .plus { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ''; position: absolute; background: var(--lime);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq-q .plus::before { width: 16px; height: 2.5px; }
.faq-q .plus::after { width: 2.5px; height: 16px; transition: transform .3s; }
.faq-item.open .plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease-out);
}
.faq-a p { padding: 0 26px 24px; color: var(--muted); }
.faq-contact {
  max-width: 820px;
  margin: 40px auto 0;
  text-align: center;
}
.faq-contact p {
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 20px;
}
.faq-contact-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* -------------------- FOOTER -------------------- */
.footer {
  padding: 70px 0 40px;
  border-top: 1px solid rgba(120,170,255,0.14);
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .nav-logo img { height: 44px; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 32ch; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: 0.72rem; letter-spacing: 0.2em;
  color: var(--lime); margin-bottom: 18px;
}
.footer-col a { display: block; color: var(--muted); font-size: 0.92rem; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  border: 1px solid rgba(120,170,255,0.25);
  transition: .25s;
}
.footer-social a:hover { border-color: var(--lime); background: rgba(212,255,26,0.08); transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; stroke: var(--muted); }
.footer-social a:hover svg { stroke: var(--lime); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 26px; border-top: 1px solid rgba(120,170,255,0.1);
  color: var(--muted-dim); font-size: 0.84rem; flex-wrap: wrap; gap: 12px;
}

/* -------------------- SCROLL REVEAL -------------------- */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* -------------------- ANIMAÇÕES -------------------- */
@keyframes pulse {
  0%,100% { opacity: 1; box-shadow: var(--glow-lime); }
  50% { opacity: 0.4; box-shadow: 0 0 8px rgba(212,255,26,0.3); }
}
@keyframes radar-sweep { to { transform: rotate(360deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes float-y {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.floaty { animation: float-y 6s ease-in-out infinite; }

/* Glitch no título ao hover */
.glitch { position: relative; }
.glitch::before, .glitch::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
}
.glitch:hover::before {
  opacity: 0.9; color: var(--blue-glow);
  animation: glitch-x .3s steps(2) infinite;
  clip-path: inset(0 0 55% 0);
}
.glitch:hover::after {
  opacity: 0.9; color: #ff3d7f;
  animation: glitch-x .25s steps(2) infinite reverse;
  clip-path: inset(55% 0 0 0);
}
@keyframes glitch-x {
  0% { transform: translate(0); }
  50% { transform: translate(-3px, 1px); }
  100% { transform: translate(3px, -1px); }
}

/* -------------------- RESPONSIVO -------------------- */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .tickets-layout { grid-template-columns: 1fr; }
  .map-figure { position: static; order: -1; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .local-grid { grid-template-columns: 1fr; gap: 30px; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { gap: 8px; }
  .nav-cta .btn-primary { padding: 11px 16px; font-size: 0.72rem; min-height: 42px; }
  .nav-logo img { height: 26px; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(3,11,38,0.97);
    backdrop-filter: blur(14px);
    padding: 24px; gap: 20px;
    border-bottom: 1px solid rgba(120,170,255,0.15);
  }
  .section-pad { padding: 80px 0; }
  .days-grid { grid-template-columns: 1fr; }
  .lineup-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .speaker { border-radius: 18px; }
  .hero { padding: 120px 0 60px; }
  .hero-meta { gap: 22px; }
  .cta-final { padding: 56px 24px; }
}

@media (max-width: 480px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .ticket { grid-template-columns: auto 1fr; }
  .ticket .price { grid-column: 2; text-align: left; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; }
  .logo-alegria { width: 30%; bottom: 6px; right: 8%; }
  .hero-date-badge .days { font-size: 1.4rem; }
  .hero-lockup { padding-bottom: 84px; }
  .cd-unit { flex: 1 1 40%; min-width: 0; padding: 22px 12px 16px; }
  .cd-num { font-size: 2.5rem; }
}

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