/* ============================================================
   Imersão Varejo Raiz 2026 — Standalone CSS
   Glassmorphism + Apple Design (sem dependências externas)
   ============================================================ */

:root {
  /* Paleta */
  --dirt: #0a0908;
  --dirt-2: #12110f;
  --bark: #1c1a17;
  --bark-light: #2a2622;
  --cream: #faf3ea;
  --orange: #e8721c;
  --orange-deep: #b8500f;
  --orange-glow: #f4a15c;
  --orange-rgb: 232, 114, 28;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.055);
  --glass-bg-strong: rgba(255, 255, 255, 0.09);
  --glass-border: rgba(255, 255, 255, 0.13);
  --glass-border-hover: rgba(244, 161, 92, 0.5);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --glass-shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.55);
  --blur: blur(24px) saturate(180%);
  --blur-heavy: blur(40px) saturate(200%);

  /* Geometria */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --radius-pill: 980px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Tipografia */
  --font-display: 'Kanit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-text: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1140px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 96px;
}

@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;
  }
}

body {
  background: var(--dirt);
  color: var(--cream);
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  padding-bottom: 76px; /* espaço pra barra fixa de countdown */
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { position: relative; }

/* ── Orbs de fundo ── */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
}
.bg-orb--1 {
  width: 640px; height: 640px;
  top: -220px; right: -120px;
  background: radial-gradient(circle, rgba(232, 114, 28, 0.16) 0%, transparent 70%);
}
.bg-orb--2 {
  width: 520px; height: 520px;
  bottom: 15%; left: -160px;
  background: radial-gradient(circle, rgba(184, 80, 15, 0.13) 0%, transparent 70%);
}

main { position: relative; z-index: 1; }

/* ── Utilitários glass ── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* ── Tipografia ── */
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
}
.section-title .accent { color: var(--orange-glow); }

.section-sub {
  color: rgba(250, 243, 234, 0.65);
  font-size: 16.5px;
  max-width: 660px;
  margin: 18px auto 0;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-glow);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--orange-glow);
}

/* ── Botões ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 20px rgba(var(--orange-rgb), 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 34px rgba(var(--orange-rgb), 0.55);
}

.btn-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-color: var(--glass-border);
  color: var(--cream);
}
.btn-glass:hover {
  background: rgba(var(--orange-rgb), 0.18);
  border-color: var(--glass-border-hover);
  transform: translateY(-1px);
}

.btn-sm { padding: 10px 22px; font-size: 13.5px; }

/* ── Navbar flutuante ── */
.site-nav {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 300;
  padding: 0 16px;
  pointer-events: none;
}

.nav-inner {
  pointer-events: auto;
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px 10px 22px;
  background: rgba(14, 13, 11, 0.72);
  backdrop-filter: var(--blur-heavy);
  -webkit-backdrop-filter: var(--blur-heavy);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  box-shadow: var(--glass-shadow-lg);
}

.brand {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.05;
  flex-shrink: 0;
  /* altura só do nome → alinha com o menu; a edição fica abaixo sem empurrar */
  padding-bottom: 0;
}
.brand-logo {
  display: block;
  height: 28px;
  width: auto;
}
.brand-edition {
  display: block;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  font-family: var(--font-text);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(250, 243, 234, 0.55);
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(250, 243, 234, 0.72);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  position: relative;
  flex-shrink: 0;
}
.nav-toggle span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), top 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 24px; }
.nav-toggle.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: rgba(14, 13, 11, 0.92);
    backdrop-filter: var(--blur-heavy);
    -webkit-backdrop-filter: var(--blur-heavy);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 15px; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 48px;
  overflow: hidden;
}

/* Efeitos de fundo do hero */
.hero-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/bc-hero.jpg');
  background-image: -webkit-image-set(
    url('img/bc-hero.webp') type('image/webp'),
    url('img/bc-hero.jpg') type('image/jpeg')
  );
  background-image: image-set(
    url('img/bc-hero.webp') type('image/webp'),
    url('img/bc-hero.jpg') type('image/jpeg')
  );
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.1) brightness(0.72);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.45) 0%, rgba(10, 9, 8, 0.5) 55%, var(--dirt) 100%),
    linear-gradient(100deg, rgba(10, 9, 8, 0.72) 0%, rgba(10, 9, 8, 0.25) 60%, transparent 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: orb-float 14s ease-in-out infinite;
}
.hero-orb--1 {
  width: 480px; height: 480px;
  top: -140px; left: 8%;
  background: radial-gradient(circle, rgba(232, 114, 28, 0.22) 0%, transparent 70%);
}
.hero-orb--2 {
  width: 420px; height: 420px;
  top: 30%; right: -120px;
  background: radial-gradient(circle, rgba(184, 80, 15, 0.18) 0%, transparent 70%);
  animation-delay: -5s;
}
.hero-orb--3 {
  width: 340px; height: 340px;
  bottom: -80px; left: 30%;
  background: radial-gradient(circle, rgba(244, 161, 92, 0.12) 0%, transparent 70%);
  animation-delay: -9s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -24px) scale(1.06); }
  66%      { transform: translate(-24px, 18px) scale(0.96); }
}

.hero-beam {
  position: absolute;
  top: -20%;
  left: 50%;
  width: 1px;
  height: 60%;
  background: linear-gradient(180deg, transparent, rgba(244, 161, 92, 0.5), transparent);
  transform: rotate(24deg);
  box-shadow: 0 0 40px 2px rgba(232, 114, 28, 0.25);
  animation: beam-sway 10s ease-in-out infinite alternate;
}

@keyframes beam-sway {
  from { transform: rotate(20deg) translateX(-60px); opacity: 0.5; }
  to   { transform: rotate(28deg) translateX(60px);  opacity: 1; }
}

.hero-inner { position: relative; z-index: 1; width: 100%; }

.hero-columns {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange-glow);
  border: 1px solid rgba(244, 161, 92, 0.35);
  background: rgba(244, 161, 92, 0.06);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 26px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange-glow);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 2 / 3;
  max-height: 560px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow-lg);
  background: var(--bark);
}

.hero-media-img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 960px) {
  .hero-media { max-height: 400px; }
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 9, 8, 0.15) 0%, rgba(10, 9, 8, 0.7) 100%);
  pointer-events: none;
}

.hero-details {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-detail {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.hero-detail:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}
.hero-detail .label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange-glow);
  margin-bottom: 5px;
}
.hero-detail .value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.hero-detail .sub {
  font-size: 13px;
  color: rgba(250, 243, 234, 0.55);
  margin-top: 2px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-align: left;
  color: #fff;
}
.hero-title strong { font-weight: 800; }

#typed {
  font-weight: 800;
  background: linear-gradient(135deg, var(--orange-glow), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--orange);
}

.word-rotator {
  display: inline-block;
  position: relative;
  vertical-align: bottom;
  height: 1.1em;
  min-width: 17ch;
}

.cursor {
  display: inline-block;
  width: 3px;
  height: 0.8em;
  background: var(--orange-glow);
  margin-left: 2px;
  vertical-align: middle;
  border-radius: 1px;
  animation: blink 0.7s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

@media (max-width: 768px) {
  .hero-title { font-size: clamp(28px, 8vw, 42px); }
  .word-rotator { min-width: 14ch; }
}

.hero-sub {
  max-width: 540px;
  margin: 24px 0 0;
  text-align: left;
  font-size: 16.5px;
  color: rgba(250, 243, 234, 0.72);
}

.hero-ctas {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* ── Faixa agenda ── */
.strip {
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px 0;
}
.strip-label {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ── Tickets (empilhamento GSAP) ── */
.tickets { padding: 40px 0 0; }

.scroll-trigger-tickets { height: 180vh; position: relative; }

.sticky-tickets-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 26px;
  /* compensa a navbar fixa (topo) e a barra de countdown (base) */
  padding-top: 96px;
  padding-bottom: 88px;
}

.tickets-header { text-align: center; }

.tickets .section-title { font-size: clamp(30px, 3.4vw, 40px); }

.tickets-hours {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Telas baixas: compacta pra caber tudo entre navbar e countdown */
@media (max-height: 860px) and (min-width: 769px) {
  .sticky-tickets-wrapper { gap: 20px; padding-top: 88px; padding-bottom: 80px; }
  .tickets .section-title { font-size: clamp(26px, 3vw, 34px); }
  .tickets .section-sub { font-size: 14.5px; }
  .tickets-hours { margin-top: 14px; }
  .hour-chip { padding: 9px 16px; }
  .ticket-card { min-height: 288px; padding: 24px; gap: 16px; }
  .ticket-list { gap: 9px; padding-top: 16px; }
}

.hour-chip {
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  text-align: center;
  transition: transform 0.3s var(--ease);
}
.hour-chip:hover { transform: translateY(-2px); }
.hour-chip .d {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}
.hour-chip .h {
  font-size: 12.5px;
  color: rgba(250, 243, 234, 0.6);
  margin-top: 2px;
}
.hour-chip--accent {
  background: rgba(var(--orange-rgb), 0.16);
  border-color: rgba(var(--orange-rgb), 0.35);
}

/* Brilhos atrás dos cards — dão matéria pro vidro refratar */
.tickets-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.tickets-glow .tg {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.tickets-glow .tg-1 {
  width: 380px; height: 380px;
  top: 50%; left: 50%;
  transform: translate(-85%, -35%);
  background: radial-gradient(circle, rgba(232, 114, 28, 0.32) 0%, transparent 65%);
  animation: orb-float 12s ease-in-out infinite;
}
.tickets-glow .tg-2 {
  width: 300px; height: 300px;
  top: 50%; left: 50%;
  transform: translate(5%, -10%);
  background: radial-gradient(circle, rgba(244, 161, 92, 0.22) 0%, transparent 65%);
  animation: orb-float 14s ease-in-out infinite reverse;
}
.tickets-glow .tg-3 {
  width: 260px; height: 260px;
  top: 55%; left: 50%;
  transform: translate(-40%, 10%);
  background: radial-gradient(circle, rgba(184, 80, 15, 0.28) 0%, transparent 65%);
  animation: orb-float 16s ease-in-out infinite;
  animation-delay: -6s;
}

.tickets-cards {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.ticket {
  position: relative;
  transform-origin: center center;
  width: min(350px, 88vw);
  margin: 0 -36px;
}
.ticket:nth-child(1) { z-index: 2; }
.ticket:nth-child(2) { z-index: 4; }
.ticket:nth-child(3) { z-index: 1; }

.ticket-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 320px;
  overflow: hidden;

  background: linear-gradient(165deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.04) 45%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: var(--blur-heavy);
  -webkit-backdrop-filter: var(--blur-heavy);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 0 0 0.5px rgba(255, 255, 255, 0.04),
    0 24px 60px -18px rgba(0, 0, 0, 0.6);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

/* Reflexo diagonal sutil no vidro */
.ticket-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.05) 42%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.05) 58%, transparent 70%);
  pointer-events: none;
}

.ticket-card.featured {
  border-color: rgba(244, 161, 92, 0.4);
  background: linear-gradient(165deg, rgba(244, 161, 92, 0.13) 0%, rgba(255, 255, 255, 0.05) 40%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 0 0 0.5px rgba(244, 161, 92, 0.15),
    0 30px 80px -20px rgba(232, 114, 28, 0.35),
    0 24px 60px -18px rgba(0, 0, 0, 0.6);
}

.ticket-card.muted {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 60px -18px rgba(0, 0, 0, 0.5);
}
.ticket-card.muted > *:not(.ticket-foot) { opacity: 0.55; }

.ticket-head { display: flex; flex-direction: column; align-items: flex-start; }

.ticket-badge {
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(250, 243, 234, 0.6);
  margin-bottom: 14px;
}
.ticket-badge.accent {
  background: rgba(232, 114, 28, 0.16);
  border-color: rgba(244, 161, 92, 0.4);
  color: var(--orange-glow);
}

.ticket-lote {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: #fff;
}
.ticket-card.featured .ticket-lote {
  background: linear-gradient(120deg, #fff 30%, var(--orange-glow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ticket-sub {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: rgba(250, 243, 234, 0.5);
  margin-top: 6px;
}

.ticket-list {
  display: grid;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.ticket-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: rgba(250, 243, 234, 0.8);
}
.ticket-list li::before {
  content: '';
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 3px;
  background-color: var(--orange-glow);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpath d='M22 4 12 14.01l-3-3'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpath d='M22 4 12 14.01l-3-3'/%3E%3C/svg%3E") center / contain no-repeat;
}
.ticket-card.muted .ticket-list li::before {
  background-color: rgba(250, 243, 234, 0.35);
}

.ticket-foot { margin-top: auto; }

.ticket-deal {
  margin-bottom: 28px !important;
  text-align: center;
}
.ticket-deal-label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}
.ticket-deal-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1.15;
}
.ticket-deal-from {
  font-size: 14px;
  font-weight: 500;
  color: rgba(250, 243, 234, 0.55);
}
.ticket-deal-from s {
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}
.ticket-deal-now {
  font-size: 15px;
  font-weight: 500;
  color: rgba(250, 243, 234, 0.78);
}
.ticket-deal-now strong {
  display: inline-block;
  margin-left: 4px;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  vertical-align: -2px;
}

.ticket-btn {
  width: 100%;
  padding: 13px 24px;
  font-size: 14px;
}

.ticket-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(250, 243, 234, 0.45);
}

@media (max-width: 768px) {
  .scroll-trigger-tickets { height: auto; }
  .sticky-tickets-wrapper {
    position: relative;
    height: auto;
    overflow: visible;
    padding: 48px 0;
  }
  .tickets-cards { flex-direction: column; gap: 20px; }
  .ticket { margin: 0; }
  .ticket:nth-child(1), .ticket:nth-child(3) { display: none; }
}

/* ── Sobre ── */
.about { padding: 72px 0; }
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.about-text {
  max-width: 800px;
  margin: 22px auto 0;
  text-align: center;
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(250, 243, 234, 0.72);
}
.about-text p + p { margin-top: 14px; }
.about-text strong { color: #fff; }

.about-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; gap: 22px; }
}

.about-narrative {
  padding: 8px 8px 0 0;
}
.about-lead,
.about-copy {
  font-size: 15.5px;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(250, 243, 234, 0.68);
  max-width: 560px;
  text-align: justify;
}
.about-lead { margin-bottom: 18px; }
.about-highlight {
  position: relative;
  margin-top: 28px;
  padding: 18px 20px 18px 22px;
  border-left: 3px solid var(--orange);
  background: linear-gradient(90deg, rgba(232, 114, 28, 0.12), transparent 85%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(250, 243, 234, 0.9);
  font-weight: 500;
  text-align: justify;
}

.about-audience {
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.about-audience-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-glow);
  margin-bottom: 8px;
}
.about-audience-head h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
}
.about-audience-head p {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(250, 243, 234, 0.62);
  margin-bottom: 20px;
}
.about-audience-list {
  display: grid;
  gap: 8px;
}
.about-audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(250, 243, 234, 0.82);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.about-audience-list li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.45em;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 114, 28, 0.18);
}
.about-audience-list li:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(244, 161, 92, 0.28);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 860px) { .about-cards { grid-template-columns: 1fr; } }

.about-card {
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.about-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
}
.about-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--orange-glow);
  margin-bottom: 10px;
}
.about-card p {
  font-size: 14.5px;
  color: rgba(250, 243, 234, 0.72);
}

/* ── Pilares (cc-cards) ── */
.pillars { padding: 72px 0; overflow: hidden; }
.pillars .container { margin-bottom: 36px; }

.cc-wrap { overflow: hidden; padding-left: max(24px, calc((100vw - var(--container)) / 2 + 24px)); }

.cc-track {
  display: flex;
  gap: 12px;
  align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-right: 120px;
}
.cc-track::-webkit-scrollbar { display: none; }

.cc-card {
  position: relative;
  flex-shrink: 0;
  flex-basis: 320px;
  min-width: 320px;
  min-height: 380px;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  scroll-snap-align: start;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  transition: flex-basis 0.4s var(--ease), background 0.4s var(--ease), padding-top 0.4s var(--ease), border-color 0.3s var(--ease);
}

.cc-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: rgba(250, 243, 234, 0.35);
  z-index: 1;
}

.cc-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
  transition: opacity 0.25s ease;
}

.cc-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color 0.35s ease;
}

.cc-desc {
  position: relative;
  z-index: 1;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
  transition: opacity 0.25s ease 0.08s, max-height 0.3s ease;
}

@media (hover: hover) {
  .cc-card:hover {
    flex-basis: 360px;
    justify-content: flex-start;
    padding-top: 30px;
    background: rgba(var(--orange-rgb), 0.09);
    border-color: var(--glass-border-hover);
  }
  .cc-card:hover .cc-img { display: none; }
  .cc-card:hover .cc-title { color: var(--orange-glow); }
  .cc-card:hover .cc-desc {
    opacity: 1;
    max-height: 220px;
    margin-top: 12px;
  }
}

.cc-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}
.slider-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), opacity 0.3s;
}
.slider-arrow:hover {
  background: rgba(var(--orange-rgb), 0.25);
  transform: scale(1.06);
}
.slider-arrow svg { width: 20px; height: 20px; stroke: #fff; }

@media (max-width: 768px) {
  .cc-wrap { padding-left: 24px; padding-right: 24px; }
  .cc-track {
    overflow: hidden;
    position: relative;
    scroll-snap-type: none;
    gap: 0;
    padding-right: 0;
  }
  .cc-card {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    flex-basis: 100%;
    min-width: 100%;
    min-height: 420px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(30px);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  .cc-card.mob-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
    z-index: 2;
  }
  .cc-card.mob-exit-left {
    opacity: 0;
    transform: translateX(-30px);
    z-index: 1;
  }
  .cc-card.is-active {
    justify-content: flex-start;
    padding-top: 30px;
    background: rgba(var(--orange-rgb), 0.09);
    border-color: var(--glass-border-hover);
  }
  .cc-card.is-active .cc-img { display: none; }
  .cc-card.is-active .cc-title { color: var(--orange-glow); }
  .cc-card.is-active .cc-desc {
    opacity: 1;
    max-height: 220px;
    margin-top: 12px;
  }
}

/* ── Palestrantes ── */
.speakers { padding: 72px 0; }

.stats-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 40px 0 8px;
}
.stat-pill {
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(250, 243, 234, 0.85);
}
.stat-pill strong { color: var(--orange-glow); font-weight: 700; }

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.speakers-grid--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1024px) {
  .speakers-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 820px) {
  .speakers-grid, .speakers-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .speakers-grid, .speakers-grid--3 { grid-template-columns: 1fr; }
}

.speaker-card {
  cursor: pointer;
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 16px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.3s var(--ease);
}
@media (hover: hover) {
  .speaker-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--glass-shadow-lg);
    border-color: var(--glass-border-hover);
  }
}

.speaker-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 14px;
}
.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.speaker-card:hover .speaker-photo img { transform: scale(1.05); }

.speaker-photo--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(232, 114, 28, 0.18), rgba(255, 255, 255, 0.04)),
    var(--bark);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.speaker-photo--placeholder span {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(250, 243, 234, 0.35);
}
.speaker-card--pending {
  opacity: 0.92;
}

.speaker-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.speaker-role {
  font-size: 13px;
  font-weight: 500;
  color: var(--orange-glow);
  margin-top: 3px;
}
.speaker-company {
  font-size: 12px;
  color: rgba(250, 243, 234, 0.5);
  margin-top: 2px;
}

.speakers-past-header { margin-top: 64px; }
.speakers-past-header .section-title { font-size: clamp(22px, 3vw, 30px); }

.speakers-panel-header {
  margin-top: 56px;
  margin-bottom: 8px;
  text-align: center;
}
.speakers-panel-header .section-title {
  font-size: clamp(22px, 3vw, 30px);
}
.speakers-panel-header + .speakers-grid {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.speakers-panel-header + .speakers-grid .speaker-card {
  flex: 0 1 280px;
  width: 100%;
  max-width: 280px;
}
@media (max-width: 820px) {
  .speakers-panel-header + .speakers-grid .speaker-card {
    flex: 0 1 calc(50% - 8px);
    max-width: none;
  }
}
@media (max-width: 480px) {
  .speakers-panel-header + .speakers-grid .speaker-card {
    flex: 1 1 100%;
    max-width: 320px;
  }
}

/* ── Modal palestrante ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 20px;
}
.modal-overlay.is-open { display: flex; }

.modal-box {
  position: relative;
  width: 100%;
  max-width: 600px;
  max-height: 86vh;
  overflow-y: auto;
  background: rgba(24, 22, 19, 0.92);
  backdrop-filter: var(--blur-heavy);
  -webkit-backdrop-filter: var(--blur-heavy);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow-lg);
  padding: 30px;
}

.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--glass-border);
}
.modal-head h2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 243, 234, 0.6);
}

.modal-close {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-glow);
  font-size: 16px;
  transition: background 0.3s var(--ease);
}
.modal-close:hover { background: rgba(var(--orange-rgb), 0.25); }

.modal-profile {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.modal-photo {
  position: relative;
  width: 110px; height: 110px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bark);
}
.modal-photo img { width: 100%; height: 100%; object-fit: cover; }
.modal-photo img[hidden],
.modal-photo-placeholder[hidden] { display: none; }
.modal-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(232, 114, 28, 0.18), rgba(255, 255, 255, 0.04)),
    var(--bark);
}
.modal-photo-placeholder span {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(250, 243, 234, 0.4);
}

.modal-profile-info { min-width: 0; flex: 1; }
.modal-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}
.modal-meta {
  font-size: 14px;
  font-weight: 500;
  color: var(--orange-glow);
  margin-top: 6px;
  line-height: 1.4;
}
.modal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.modal-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(250, 243, 234, 0.8);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.modal-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.modal-link:hover {
  color: #fff;
  border-color: rgba(244, 161, 92, 0.5);
  background: rgba(232, 114, 28, 0.16);
}
.modal-link.is-placeholder {
  opacity: 0.42;
  cursor: default;
  pointer-events: none;
}
.modal-link.is-placeholder:hover {
  color: rgba(250, 243, 234, 0.8);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.modal-link[hidden],
.modal-links[hidden] { display: none !important; }

.modal-bio h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250, 243, 234, 0.45);
  margin-bottom: 10px;
}
.modal-bio p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(250, 243, 234, 0.78);
  text-align: justify;
}
.modal-bio p[hidden],
.modal-logo-placeholder[hidden],
.modal-logos[hidden] { display: none; }

.modal-placeholder {
  color: rgba(250, 243, 234, 0.38) !important;
  font-style: italic;
  text-align: left !important;
}

.modal-brand {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  min-height: 48px;
}
.modal-brand[hidden] { display: none; }
.modal-logos {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 20px;
  width: max-content;
  max-width: 100%;
}
.modal-logo-item {
  flex: 0 0 auto;
  width: 110px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-logo-item img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  /* Logos já vêm com fundo escuro / branco — sem inverter */
  filter: none;
  opacity: 1;
}
.modal-logo-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(250, 243, 234, 0.35);
}

/* ── Recap 1ª edição ── */
.recap { padding: 72px 0; }
.recap-intro {
  max-width: 720px;
  margin: 22px auto 0;
  text-align: center;
}
.recap-intro p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(250, 243, 234, 0.72);
}
.recap-intro p + p { margin-top: 12px; }

.recap-block-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 22px;
}

.recap-stage { margin-top: 56px; }

.recap-group-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
 /* border: 1px solid var(--glass-border);
  background:
    linear-gradient(145deg, rgba(232, 114, 28, 0.12), rgba(255, 255, 255, 0.03)),
    var(--bark);*/
  margin-bottom: 28px;
}
.recap-group-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.recap-group-photo-ph {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(250, 243, 234, 0.4);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: inherit;
  margin: 12px;
}
.recap-group-photo.is-empty .recap-group-photo-ph {
  display: flex;
}

.recap-stage-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .recap-stage-list { grid-template-columns: 1fr; }
}
.recap-stage-list li {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.recap-stage-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.recap-stage-meta {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(250, 243, 234, 0.58);
}

.recap-photos {
  margin-top: 48px;
  text-align: center;
}

.recap-video {
  margin-top: 48px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.recap-video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  min-width: 0;
  flex-basis: auto;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}
.recap-video-card .vc-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.recap-video-card:hover .vc-thumb { transform: scale(1.04); }

.vc-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.35s var(--ease-spring), background 0.35s var(--ease);
}
.vc-play::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}
.recap-video-card:hover .vc-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(var(--orange-rgb), 0.85);
  border-color: transparent;
}

/* ── Modal de vídeo ── */
.video-modal-inner {
  position: relative;
  width: 88%;
  max-width: 900px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow-lg);
}
.video-modal-inner iframe { width: 100%; height: 100%; border: none; }
.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
}

/* ── Local ── */
.location { padding: 72px 0 0; }

.location-cards {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 40px 0 56px;
}

.location-card {
  width: min(420px, 100%);
  background: var(--glass-bg);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.location-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
}
.location-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--orange-glow);
  margin-bottom: 12px;
}
.location-card p {
  font-size: 14.5px;
  color: rgba(250, 243, 234, 0.75);
}

/* ── Marquee ── */
.marquee-wrap {
  overflow: hidden;
  width: 100%;
  padding: 10px 0 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
.marquee-img {
  flex-shrink: 0;
  width: 280px;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-right: 12px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Parceiros ── */
.support { padding: 72px 0; }

.partners-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px 24px;
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  align-items: center;
}
@media (max-width: 1024px) {
  .partners-list { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 800px) {
  .partners-list { grid-template-columns: repeat(3, 1fr); gap: 24px 18px; }
}
@media (max-width: 560px) {
  .partners-list { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; }
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
}
.partner-item img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  /*filter: brightness(0) invert(1);*/
  opacity: 0.88;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.partner-item:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.support-cta { text-align: center; margin-top: 40px; }

/* ── Barra fixa countdown ── */
.countdown-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 250;
  background: rgba(10, 9, 8, 0.78);
  backdrop-filter: var(--blur-heavy);
  -webkit-backdrop-filter: var(--blur-heavy);
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
  padding: 12px 0;
}

.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: nowrap;
}

.countdown-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--orange-glow);
}

.countdown-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.countdown-units {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cd-unit { text-align: center; min-width: 34px; }
.cd-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.cd-lbl {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(250, 243, 234, 0.5);
  margin-top: 3px;
}
.cd-sep { width: 1px; height: 22px; background: var(--glass-border); }

@media (max-width: 640px) {
  .countdown-inner { justify-content: center; }
  .countdown-label { display: none; }
}

/* ── Footer ── */
footer {
  background: var(--dirt-2);
  border-top: 1px solid var(--glass-border);
  padding: 44px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-logo {
  display: block;
  height: 32px;
  width: auto;
}
.footer-edition {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(250, 243, 234, 0.5);
}
.footer-copy {
  font-size: 13px;
  color: rgba(250, 243, 234, 0.5);
  margin-top: 10px;
}
.footer-legal {
  color: rgba(250, 243, 234, 0.45);
  font-size: 12px;
  line-height: 1.5;
  margin-top: 8px;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  flex-wrap: wrap;
}
.footer-links a {
  color: rgba(250, 243, 234, 0.7);
  transition: color 0.25s var(--ease);
}
.footer-links a:hover { color: var(--orange-glow); }
.footer-link-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-link-icon svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: block;
}

/* ── Reveal on scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
