/* ============================================================
   PRODUTO BOM NÃO SALVA NEGÓCIO — Edição João Pessoa
   Sistema visual espelhado da referência (ifoodmove.com.br):
   fundo fluido + glass cards 40px + pills 100px + container 1320
   Marca: preto de palco + laranja brasa (poster oficial)
   ============================================================ */

@font-face {
  font-family: 'Gobold High';
  src: url('assets/fonts/GoboldHighBold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'New Science';
  src: url('assets/fonts/NewScience-Bold.otf') format('opentype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'New Science';
  src: url('assets/fonts/NewScience-Thin.otf') format('opentype');
  font-weight: 300;
  font-display: swap;
}

:root {
  --ember: #ff6b1a;
  --ember-deep: #e8501f;
  --ember-dark: #b93a10;
  --espresso: #1c0d04;
  --paper: #fdf6ee;
  --glass: rgba(97, 41, 9, 0.42);
  --glass-strong: rgba(58, 24, 6, 0.55);
  --white: #ffffff;

  /* teste tipográfico: títulos em Poppins (voltar pra 'Gobold High' é trocar a linha abaixo) */
  --font-display: 'Poppins', 'Arial Black', sans-serif;
  --font-body: 'New Science', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
  background-color: #120602;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* fundo fluido fixo (espelha o bg de textura da referência) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 85% 60% at 82% 6%, rgba(255, 107, 26, 0.55), transparent 62%),
    radial-gradient(ellipse 70% 55% at 12% 22%, rgba(20, 12, 40, 0.9), transparent 70%),
    radial-gradient(ellipse 90% 70% at 68% 48%, rgba(232, 80, 31, 0.42), transparent 66%),
    radial-gradient(ellipse 80% 60% at 22% 78%, rgba(185, 58, 16, 0.5), transparent 64%),
    radial-gradient(ellipse 70% 55% at 85% 95%, rgba(255, 138, 46, 0.38), transparent 66%),
    #120602;
}

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.container {
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 24px;
}

section { padding: 26px 0; }

strong { font-weight: 700; }

/* ---------- botões (pills da referência) ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}
.btn--primary {
  background: var(--ember-deep);
  border-color: var(--ember-deep);
  color: var(--paper);
}
.btn--primary:hover { background: var(--ember); border-color: var(--ember); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  border-color: rgba(253, 246, 238, 0.35);
  color: var(--paper);
}
.btn--outline:hover { border-color: var(--paper); transform: translateY(-2px); }
/* CTA branco quadrado-arredondado da referência (radius 12) */
.btn--white {
  background: var(--white);
  color: var(--ember-deep);
  border-radius: 12px;
  text-transform: uppercase;
  padding: 14px 28px;
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3); }

a:focus-visible, button:focus-visible { outline: 3px solid var(--ember); outline-offset: 2px; }

/* faixa brilhante passando nos CTAs de ingresso (como no biolink) */
a.btn[href*="sympla.com.br"],
.lead-modal form .btn {
  position: relative;
  overflow: hidden;
}
a.btn[href*="sympla.com.br"]::after,
.lead-modal form .btn::after {
  content: '';
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -90%;
  width: 55%;
  background: linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.5) 50%, transparent 82%);
  transform: skewX(-20deg);
  animation: btn-shine 3.4s ease-in-out infinite;
  pointer-events: none;
}
/* nos botões brancos a listra é alaranjada pra aparecer */
a.btn--white[href*="sympla.com.br"]::after {
  background: linear-gradient(105deg, transparent 18%, rgba(232, 80, 31, 0.28) 50%, transparent 82%);
}
@keyframes btn-shine {
  0% { left: -90%; }
  55%, 100% { left: 140%; }
}

/* ---------- header (fixo, 92px, como a referência) ---------- */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  height: 92px;
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background-color 250ms ease, backdrop-filter 250ms ease;
}
.site-header.is-scrolled {
  background: rgba(18, 6, 2, 0.82);
  backdrop-filter: blur(18px);
}
.site-header__inner {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.site-header__brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.site-header__brand img { height: 56px; width: auto; }
.site-header__meta {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--paper);
  border-left: 1px solid rgba(253, 246, 238, 0.3);
  padding-left: 14px;
}
.site-header__nav { display: none; margin-left: auto; gap: 28px; }
.site-header__nav a {
  color: var(--paper);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: color 160ms;
}
.site-header__nav a:hover { color: var(--ember); }
.site-header__cta { display: none; }
.site-header__burger {
  margin-left: auto;
  background: none; border: 0; cursor: pointer;
  display: flex; flex-direction: column; gap: 5px; padding: 10px;
}
.site-header__burger span { width: 24px; height: 2px; background: var(--paper); transition: transform 220ms, opacity 180ms; }
.site-header__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 92px; inset-inline: 0;
  z-index: 99;
  background: rgba(18, 6, 2, 0.97);
  backdrop-filter: blur(18px);
  padding: 24px;
  flex-direction: column;
  gap: 18px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a { color: var(--paper); text-decoration: none; font-weight: 700; font-size: 17px; }
.mobile-menu .btn { align-self: flex-start; }

@media (min-width: 992px) {
  .site-header__nav { display: flex; }
  .site-header__cta { display: inline-flex; }
  .site-header__burger, .mobile-menu { display: none !important; }
}

/* ---------- hero (card 40px com foto, como a referência) ---------- */

.hero { padding: 92px 0 14px; }
.hero__card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: calc(100svh - 136px);
  background:
    linear-gradient(180deg, rgba(18, 6, 2, 0.78) 0%, rgba(18, 6, 2, 0.42) 48%, rgba(18, 6, 2, 0) 78%),
    url('assets/psd/bg-clean.jpg') center top / cover no-repeat #170a03;
}
.hero__selo {
  position: absolute;
  top: 0;
  right: clamp(20px, 6vw, 90px);
  width: 96px;
  padding: 44px 0 30px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(180deg, #7e2f10 0%, #a84318 55%, #7a2d0e 100%);
  text-align: center;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.4));
  z-index: 5;
}
.hero__selo strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 42px;
  line-height: 1;
  color: var(--white);
}
.hero__selo span {
  display: block;
  margin-top: 2px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}
/* fileira dos 4 palestrantes na base, como no poster */
/* colagem dos 11 palestrantes — composição única exportada do PSD */
.hero__people {
  position: relative;
  order: 2;
  width: min(760px, 100%);
  margin-top: 14px;
  pointer-events: none;
}
.hero__people img {
  width: 100%;
  height: auto;
  display: block;
}
.hero__content {
  position: relative;
  z-index: 3;
  order: 1;
  padding: 36px clamp(28px, 5vw, 80px) 0;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__logo {
  width: min(250px, 60%);
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 14px 44px rgba(0, 0, 0, 0.45));
}
.hero__text {
  font-size: clamp(16px, 0.9rem + 0.4vw, 18px);
  line-height: 1.5;
  color: var(--paper);
  margin-bottom: 18px;
  max-width: 52ch;
}
.hero__text strong { font-weight: 700; }
.hero__cta-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 18px; }
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--paper);
}
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta .tri { color: var(--ember); font-size: 12px; }

@media (max-width: 860px) {
  .hero { padding-top: 104px; }
  /* hero preenche a primeira dobra inteira no mobile */
  .hero__card { min-height: calc(100svh - 118px); justify-content: space-between; }
  .hero__selo { width: 72px; right: 18px; padding: 32px 0 20px; }
  .hero__selo strong { font-size: 30px; }
  .hero__selo span { font-size: 12px; }
  .hero__content { padding: 84px 24px 0; }
}

/* ---------- glass cards (assinatura da referência) ---------- */

.glass-card {
  background: var(--glass);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 40px;
}

/* ---------- big numbers ---------- */

.bignum__card {
  border-radius: 20px;
  padding: clamp(36px, 5vw, 64px) clamp(24px, 4.5vw, 60px);
}
.bignum__grid {
  display: grid;
  gap: 36px;
  align-items: center;
  margin-bottom: 44px;
}
@media (min-width: 992px) {
  .bignum__grid { grid-template-columns: 1fr 1.05fr; gap: 56px; }
}
.bignum__grid .btn { margin-top: 28px; }
.bignum__track-title {
  font-family: var(--font-display);
  color: var(--ember);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 14px;
  margin-bottom: 18px;
}
.bignum__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 1.5rem + 1.4vw, 40px);
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  max-width: 640px;
}
.bignum__headline em { font-style: normal; color: var(--ember); }

/* trilho de temas em scroll lateral */
.bignum__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 2px 20px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--ember) transparent;
}
.bignum__track > * { scroll-snap-align: start; }

/* card de estatísticas (sem foto): 12 palestrantes + números do evento */
.bignum__frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  align-self: stretch;
  display: flex;
  background:
    radial-gradient(ellipse 90% 60% at 50% 110%, rgba(232, 80, 31, 0.35), transparent 70%),
    #170a03;
}
.bignum__stat-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  gap: clamp(24px, 3vw, 40px) clamp(20px, 3vw, 44px);
  padding: clamp(28px, 3.5vw, 44px);
}
.bignum__stat { border-left: 2px solid rgba(255, 122, 26, 0.55); padding-left: 16px; }
.bignum__stat strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 2rem + 2.4vw, 64px);
  line-height: 1;
  display: block;
  color: var(--white);
}
.bignum__stat span {
  display: block;
  margin-top: 6px;
  font-weight: 700;
  font-size: 14.5px;
  color: rgba(253, 246, 238, 0.82);
}

.theme-card {
  flex: 0 0 300px;
  border-radius: 20px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 110% 80% at 100% -10%, rgba(232, 80, 31, 0.28), transparent 58%),
    #1c0c03;
  border: 1px solid rgba(253, 246, 238, 0.08);
  transition: transform 250ms ease, border-color 250ms ease;
}
.theme-card:hover { transform: translateY(-4px); border-color: rgba(255, 122, 26, 0.45); }
.theme-card__num {
  font-family: var(--font-display);
  color: var(--ember);
  font-size: 15px;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.theme-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 21px;
  line-height: 1.08;
  margin-bottom: 10px;
}
.theme-card p { font-size: 14.5px; line-height: 1.55; color: rgba(253, 246, 238, 0.82); }
.theme-card__hook {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(253, 246, 238, 0.14);
  font-weight: 700;
  color: var(--ember) !important;
  font-size: 14.5px;
}

/* ---------- ingressos ---------- */

.tickets__card {
  padding: clamp(40px, 5vw, 60px) clamp(20px, 3vw, 32px);
}
.tickets__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 1.6rem + 2.2vw, 52px);
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 40px;
}
.tickets__title em { font-style: normal; color: var(--ember); }
.tickets__tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.tickets__tab {
  border-radius: 100px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  border: 1px solid rgba(253, 246, 238, 0.35);
  background: transparent;
}
.tickets__tab.is-active {
  background: var(--white);
  color: var(--ember-deep);
  border-color: var(--white);
}
.tickets__grid {
  display: grid;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 40px;
}
@media (min-width: 860px) {
  .tickets__grid { grid-template-columns: 1fr 1fr; }
}

.ticket-card {
  border-radius: 24px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  color: var(--white);
}
.ticket-card--lote1 {
  background:
    radial-gradient(ellipse 120% 90% at 85% -10%, rgba(255, 170, 90, 0.5), transparent 55%),
    linear-gradient(160deg, var(--ember) 0%, var(--ember-deep) 55%, var(--ember-dark) 100%);
  box-shadow: 0 24px 60px rgba(232, 80, 31, 0.35);
}
.ticket-card--promo {
  background: rgba(23, 10, 3, 0.72);
  border: 1px solid rgba(253, 246, 238, 0.14);
}
.ticket-card__name {
  font-family: var(--font-display);
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 6px;
}
.ticket-card__sub { font-size: 14px; opacity: 0.9; margin-bottom: 22px; }
.ticket-card__price {
  font-family: var(--font-display);
  font-size: clamp(46px, 2.2rem + 2vw, 68px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.ticket-card__price .cur { font-size: 0.35em; vertical-align: super; margin-right: 6px; }
.ticket-card__tax { font-size: 13px; opacity: 0.85; margin-bottom: 26px; }
.ticket-card .btn { align-self: stretch; margin-bottom: 30px; }
.ticket-card--promo .btn {
  background: rgba(253, 246, 238, 0.1);
  color: rgba(253, 246, 238, 0.55);
  border-radius: 12px;
  text-transform: uppercase;
  pointer-events: none;
}
.ticket-card__badge {
  align-self: flex-start;
  background: rgba(253, 246, 238, 0.12);
  border: 1px solid rgba(253, 246, 238, 0.3);
  color: var(--paper);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 18px;
}
.ticket-card--promo .ticket-card__price { opacity: 0.85; }
.ticket-card__badge--alert {
  background: var(--white);
  color: var(--ember-deep);
  border-color: var(--white);
  animation: badge-pulse 1.8s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* timer do lote 1 — faixa de destaque no topo do card */
.ticket-timer {
  align-self: stretch;
  margin: -30px -28px 22px;
  background: rgba(21, 10, 2, 0.55);
  padding: 14px 16px 12px;
  border-radius: 24px 24px 0 0;
  text-align: center;
}
.ticket-timer__label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}
.ticket-timer__units {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}
.ticket-timer__unit { display: flex; flex-direction: column; align-items: center; min-width: 56px; }
.ticket-timer__unit strong {
  font-family: var(--font-display);
  font-size: clamp(26px, 1.6rem + 0.8vw, 34px);
  line-height: 1;
}
.ticket-timer__unit span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-top: 5px;
  opacity: 0.85;
}
.ticket-timer__sep {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.2;
  opacity: 0.55;
}

/* preço em destaque */
.ticket-card__from { font-weight: 700; font-size: 16px; min-height: 24px; }
.ticket-card__from s { opacity: 0.8; }
.ticket-card--lote1 .ticket-card__price { text-shadow: 0 8px 30px rgba(0, 0, 0, 0.28); }

/* faixa do topo no card do lote 2 (par da faixa do timer) */
.ticket-card__band {
  align-self: stretch;
  margin: -30px -28px 22px;
  background: rgba(253, 246, 238, 0.06);
  border-radius: 24px 24px 0 0;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(253, 246, 238, 0.7);
}

/* distribuição idêntica dos elementos nos dois cards (linha a linha) */
@supports (grid-template-rows: subgrid) {
  @media (min-width: 860px) {
    .ticket-card {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: span 10;
      align-content: start;
    }
    .ticket-card__badge { justify-self: start; align-self: center; }
    .ticket-card__price { align-self: end; }
    .ticket-card .btn { align-self: center; }
  }
}
.ticket-card__includes-title { font-weight: 700; font-size: 15px; margin-bottom: 14px; }
.ticket-card__includes { list-style: none; display: grid; gap: 10px; }
.ticket-card__includes li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  line-height: 1.45;
}
.ticket-card__includes li::before {
  content: '';
  flex: 0 0 auto;
  width: 18px; height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--white);
  clip-path: polygon(14% 44%, 0 60%, 40% 100%, 100% 16%, 84% 4%, 40% 70%);
}
.ticket-card--promo .ticket-card__includes li::before { background: rgba(253, 246, 238, 0.4); }


/* ---------- palestrantes ---------- */

.speakers__card { padding: clamp(44px, 6vw, 64px) 0; }
.speakers__head { padding-inline: clamp(24px, 4vw, 60px); text-align: center; margin-bottom: 40px; }
.speakers__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 1.6rem + 2.2vw, 52px);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
}
.speakers__title em { font-style: normal; color: var(--ember); display: block; }
.speakers__sub { margin-top: 12px; font-size: 16px; color: var(--paper); }
.speakers__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px clamp(24px, 4vw, 60px) 26px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--ember) transparent;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-x pan-y;
}
.speakers__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.speakers__track img { pointer-events: none; }

.bignum__track {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-x pan-y;
}
.bignum__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.bignum__track img { pointer-events: none; }
.speaker-card {
  flex: 0 0 250px;
  scroll-snap-align: start;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse 90% 55% at 50% 108%, rgba(232, 80, 31, 0.55), transparent 70%),
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(97, 41, 9, 0.85), transparent 70%),
    #1a0b03;
}
.speaker-card:nth-child(even) {
  background:
    radial-gradient(ellipse 90% 55% at 50% 108%, rgba(255, 122, 26, 0.4), transparent 70%),
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(58, 24, 6, 0.9), transparent 70%),
    #160902;
}
.speaker-card img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 94%;
  max-width: none;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.5));
  transition: transform 300ms ease;
}
.speaker-card:hover img { transform: translateX(-50%) scale(1.05); }
/* nome (título) + subtítulo sobre a base do card */
.speaker-card::after {
  content: '';
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(180deg, rgba(20, 8, 2, 0) 0%, rgba(20, 8, 2, 0.9) 78%);
  pointer-events: none;
}
.speaker-card__label {
  position: absolute;
  z-index: 2;
  inset-inline: 0;
  bottom: 0;
  padding: 14px 16px 16px;
  text-align: center;
}
.speaker-card__label strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.15;
  color: var(--white);
}
.speaker-card__label span {
  display: block;
  margin-top: 3px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  line-height: 1.35;
  color: rgba(253, 246, 238, 0.75);
}
/* card com foto de estúdio (retrato retangular, cobre o card inteiro) */
.speaker-card--photo img {
  position: absolute;
  inset: 0;
  left: 0;
  transform: none;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  filter: none;
}
.speaker-card--photo:hover img { transform: scale(1.05); }
.speakers__foot { text-align: center; padding-inline: 24px; margin-top: 26px; }

/* ---------- as chaves da virada ---------- */

.keys__card {
  padding: clamp(44px, 6vw, 72px) clamp(24px, 5vw, 80px);
  background-image: radial-gradient(ellipse 70% 60% at 100% 0%, rgba(232, 80, 31, 0.14), transparent 60%);
}
.keys__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 1.6rem + 2.2vw, 52px);
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--white);
}
.keys__title em { font-style: normal; color: var(--ember); }
.keys__sub { font-size: 17px; font-weight: 700; margin: 12px 0 26px; color: var(--paper); }
.keys__list {
  list-style: none;
  display: grid;
  gap: 12px;
}
.keys__list li {
  display: flex;
  gap: clamp(18px, 3vw, 40px);
  align-items: baseline;
  padding: clamp(18px, 2.2vw, 26px) clamp(18px, 2.5vw, 30px);
  border-radius: 16px;
  border: 1px solid transparent;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), border-color 200ms ease;
}
.keys__list li:hover { transform: translateX(10px); border-color: rgba(255, 122, 26, 0.4); }
/* variação em crescendo: neutro → âmbar → neutro → âmbar forte → gradiente cheio */
.keys__list li:nth-child(odd) { background: rgba(253, 246, 238, 0.045); }
.keys__list li:nth-child(2) {
  background: rgba(255, 122, 26, 0.1);
  border-color: rgba(255, 122, 26, 0.16);
}
.keys__list li:nth-child(4) {
  background: rgba(232, 80, 31, 0.18);
  border-color: rgba(255, 122, 26, 0.26);
}
.keys__list li:nth-child(5) {
  background: linear-gradient(120deg, var(--ember) 0%, var(--ember-deep) 100%);
  border-color: transparent;
  box-shadow: 0 14px 40px rgba(232, 80, 31, 0.28);
}
.keys__list li:nth-child(5) .keys__num { color: rgba(21, 10, 2, 0.8); }
.keys__list li:nth-child(5) p { color: rgba(255, 255, 255, 0.92); }
.keys__num {
  font-family: var(--font-display);
  color: var(--ember);
  font-size: clamp(22px, 1.2rem + 1vw, 32px);
  flex: 0 0 auto;
}
.keys__list h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(20px, 1rem + 1.4vw, 30px);
  line-height: 1.1;
  display: inline;
  margin-right: 10px;
}
.keys__list p {
  display: inline;
  font-size: clamp(15px, 0.9rem + 0.3vw, 17px);
  color: rgba(253, 246, 238, 0.78);
}
.keys__cta { margin-top: 32px; text-align: center; }
@media (max-width: 600px) {
  .keys__list h3, .keys__list p { display: block; }
  .keys__list p { margin-top: 4px; }
}

/* ---------- apoio / patrocinadores ---------- */

.sponsors__card {
  padding: clamp(44px, 6vw, 60px) clamp(24px, 5vw, 80px);
  text-align: center;
}
.sponsors__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 1.4rem + 1.4vw, 40px);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 8px;
}
.sponsors__ifood {
  width: 130px;
  margin: 14px auto 36px;
}
.sponsors__box {
  list-style: none;
  background: rgba(23, 10, 3, 0.6);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 34px 52px;
}
/* cada logo escala proporcional à arte original (--h = altura natural na faixa de 67px) */
.sponsors__box img {
  height: calc(var(--h, 40) / 67 * 58px);
  width: auto;
}

/* ---------- local ---------- */

.local__card {
  padding: clamp(40px, 5vw, 64px) clamp(24px, 4.5vw, 60px);
  display: grid;
  gap: 36px;
  align-items: center;
}
@media (min-width: 900px) {
  .local__card { grid-template-columns: 1fr 1.1fr; gap: 56px; }
}
.local__eyebrow {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  color: var(--ember);
  margin-bottom: 12px;
}
.local__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 1.5rem + 1.6vw, 44px);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 18px;
}
.local__card address { font-style: normal; font-size: 17px; line-height: 1.6; margin-bottom: 10px; }
.local__hours { font-weight: 700; margin-bottom: 26px; }
/* mapa como thumbnail estática (clique abre o Google Maps) */
.local__map {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1100 / 508;
  background: #170a03;
}
.local__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}
.local__map:hover img { transform: scale(1.04); }
.local__map-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(18, 6, 2, 0.85);
  color: var(--paper);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border-radius: 999px;
}

/* ---------- cta final ---------- */

.final { text-align: center; padding: 80px 0 100px; }
.final__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 2rem + 3vw, 64px);
  line-height: 1.22;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.final__title em { font-style: normal; color: var(--ember); }
.final__sub { font-size: 17px; color: var(--paper); margin-bottom: 32px; }

/* ---------- footer ---------- */

.site-footer {
  background: rgba(12, 4, 1, 0.92);
  backdrop-filter: blur(25px);
  padding: 80px 0 40px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 24px;
}
/* no mobile, o bloco da logo ocupa a linha inteira e as colunas de links ficam lado a lado */
.site-footer__grid > div:first-child { grid-column: 1 / -1; }
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
  .site-footer__grid > div:first-child { grid-column: auto; }
}
.site-footer__logo { width: 170px; margin-bottom: 18px; }
.site-footer h2 {
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; display: grid; gap: 8px; }
.site-footer a { color: var(--paper); text-decoration: none; font-size: 15px; }
.site-footer a:hover { color: var(--ember); }
.site-footer p { font-size: 14px; color: rgba(253, 246, 238, 0.75); line-height: 1.6; }
.site-footer__credit {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(253, 246, 238, 0.12);
  text-align: center;
}
.site-footer__credit a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: rgba(253, 246, 238, 0.7);
}
.site-footer__credit a:hover { color: var(--ember); }
.site-footer__credit svg { color: var(--ember); }
.site-footer__credit strong { color: var(--paper); }

/* ---------- ajustes mobile ---------- */

@media (max-width: 600px) {
  .site-header__meta { font-size: 11px; }
  /* primeira dobra compacta: hero inteiro visível no viewport do celular */
  .hero { padding-top: 96px; }
  .hero__selo { width: 58px; right: 14px; padding: 24px 0 16px; }
  .hero__selo strong { font-size: 24px; }
  .hero__selo span { font-size: 10px; }
  .hero__logo { width: 54%; margin-bottom: 16px; }
  .hero__content { padding: 52px 22px 0; }
  .hero__text { font-size: 14.5px; margin-bottom: 16px; max-width: 40ch; }
  .hero__cta-row { gap: 10px; margin-bottom: 16px; }
  .hero__cta-row .btn { padding: 11px 20px; font-size: 14px; }
  .hero__meta { font-size: 12.5px; gap: 4px 14px; }
  .hero__people { width: 112%; margin: 6px auto 0; }
  /* CTAs centralizados no mobile */
  .bignum__grid .btn { display: flex; width: max-content; margin-inline: auto; }
  .keys__cta { text-align: center; }
  .bignum__stat strong { font-size: 38px; }
  /* cards de palestrante um pouco menores (mais "peek" do próximo) */
  .speaker-card { flex: 0 0 210px; }
  /* patrocinadores em destaque: logos maiores quebrando linha */
  .sponsors__box { gap: 24px 32px; padding: 28px 20px; }
  .sponsors__box img { height: calc(var(--h, 40) / 67 * 64px); }
  .final__title { line-height: 1.14; }
}

/* ---------- reveal ---------- */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* cards entrando pelas laterais */
.reveal-side { opacity: 0; transform: translateX(-56px); transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-side--right { transform: translateX(56px); }
.reveal-side.is-visible { opacity: 1; transform: none; }
.bignum__track .theme-card:nth-child(2) { transition-delay: 90ms; }
.bignum__track .theme-card:nth-child(3) { transition-delay: 180ms; }
.bignum__track .theme-card:nth-child(4) { transition-delay: 270ms; }
.bignum__track .theme-card:nth-child(5) { transition-delay: 360ms; }
.keys__list li:nth-child(2) { transition-delay: 80ms; }
.keys__list li:nth-child(3) { transition-delay: 160ms; }
.keys__list li:nth-child(4) { transition-delay: 240ms; }
.keys__list li:nth-child(5) { transition-delay: 320ms; }

/* ---------- modal de lead ---------- */

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 4, 1, 0.78);
  backdrop-filter: blur(8px);
}
.lead-modal.is-open { display: flex; }
.lead-modal__card {
  width: min(440px, 100%);
  background:
    radial-gradient(ellipse 120% 90% at 85% -10%, rgba(232, 80, 31, 0.25), transparent 55%),
    #1c0c03;
  border: 1px solid rgba(255, 122, 26, 0.35);
  border-radius: 24px;
  padding: 34px 30px 30px;
  position: relative;
  animation: modal-in 260ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(22px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.lead-modal__close {
  position: absolute;
  top: 14px; right: 16px;
  background: none; border: 0;
  color: var(--paper);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 6px;
  opacity: 0.7;
}
.lead-modal__close:hover { opacity: 1; }
.lead-modal__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 8px;
  text-align: center;
  padding-inline: 20px;
}
.lead-modal__title em { font-style: normal; color: var(--ember); white-space: nowrap; }
.lead-modal__sub {
  font-size: 14.5px;
  color: rgba(253, 246, 238, 0.8);
  margin-bottom: 22px;
  text-align: center;
}
.lead-modal__field { margin-bottom: 14px; }
.lead-modal__field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  color: rgba(253, 246, 238, 0.85);
}
.lead-modal__field input {
  width: 100%;
  background: rgba(253, 246, 238, 0.06);
  border: 1px solid rgba(253, 246, 238, 0.2);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}
.lead-modal__field input::placeholder { color: rgba(253, 246, 238, 0.35); font-weight: 300; }
.lead-modal__field input:focus { outline: 2px solid var(--ember); border-color: transparent; }
.lead-modal__error { color: #ffb38a; font-size: 13px; margin: -6px 0 12px; display: none; }
.lead-modal__error.is-visible { display: block; }
.lead-modal .btn { width: 100%; margin-top: 6px; }
.lead-modal__skip {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: rgba(253, 246, 238, 0.6);
}
.lead-modal__skip:hover { color: var(--ember); }

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