/* ============================================================
   LAYOUT — nova diagramação (camada final, vence as anteriores)
   Objetivos do cliente:
   1) espaçamento entre seções muito menor
   2) cabeçalhos editoriais (numerados, alinhados à esquerda, régua)
   3) hero repensada (conteúdo ancorado embaixo + barra de meta + CTA)
   Só estilo/estrutura visual: o painel de conteúdo segue intacto.
   ============================================================ */

/* ---------- 1. ESPAÇAMENTO ENTRE SEÇÕES (bem menor) ---------- */
:root{
  --section-gap: clamp(40px, 5vw, 78px);
}
.section{ padding-block: var(--section-gap); }
.section--tight{ padding-block: clamp(26px, 3.4vw, 46px); }

/* âncoras não passam atrás do header-pílula fixo */
main > section[id]{ scroll-margin-top: 96px; }

/* respiro interno dos cabeçalhos mais enxuto */
.cx-h2{ margin-top: 8px; }
.cx-figures__grid{ margin-top: 20px; }

/* ---------- 2. CABEÇALHOS DE SEÇÃO — editoriais ----------
   "(0X)  // LABEL ————————————" alinhado à esquerda.
   Numera automaticamente cada eyebrow de seção.            */
body{ counter-reset: sec; }

.cx-kicker{
  counter-increment: sec;
  display: flex; align-items: center; gap: .72em;
  width: 100%; margin-bottom: 16px;
}
.cx-kicker--center{
  display: flex !important; justify-content: flex-start !important;
  text-align: left !important; margin: 0 0 16px 0 !important;
}
.cx-kicker::before{
  content: counter(sec, decimal-leading-zero);
  flex: none; line-height: 1;
  font-family: var(--font-mono); font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  color: var(--color-accent-hi);
  padding: .38em .58em; border: 1px solid rgba(221,178,74,.42); border-radius: 6px;
}
.cx-kicker::after{
  content: ""; flex: 1 1 auto; min-width: 24px; height: 1px;
  background: linear-gradient(90deg, rgba(221,178,74,.5), rgba(228,50,43,.28), transparent);
}

/* títulos: alinhados à esquerda (fim do layout centralizado) */
.cx-h2--center{
  text-align: left !important; max-width: 26ch !important;
  margin-left: 0 !important; margin-right: 0 !important;
  padding-bottom: 0 !important;
}
.cx-deliver .cx-h2--center{ max-width: 32ch !important; }
.cx-h2--center::after{ display: none !important; }

/* wrappers antes centralizados -> alinhados à esquerda */
.cx-blocks__head{ text-align: left !important; max-width: none !important; margin: 0 !important; }
.cx-blocks__intro{ max-width: 60ch; }

/* introduções/legendas de seção mais contidas */
.cx-vspk__sub, .cx-forces__lede, .cx-gal__sub{ margin-top: 12px; }

/* ---------- 3. HERO — repensada ---------- */
.hero{
  justify-content: flex-end;
  padding-top: calc(var(--announce-h,0px) + 92px);
  padding-bottom: clamp(26px, 3.6vw, 44px);
}
.hero__inner{ display: flex; flex-direction: column; gap: clamp(26px, 4vw, 46px); }
.hero__copy{ max-width: 940px; }

.hero__eventmark{ margin-bottom: 20px !important; }
.hero__title{
  font-size: clamp(2.15rem, 5.4vw, 4.5rem) !important;
  line-height: 1.02 !important; letter-spacing: -.03em;
  margin-top: 10px; max-width: 18ch;
}
.hero__lead{
  font-size: clamp(.92rem, 1.05vw, 1.06rem) !important;
  max-width: 58ch; margin-top: 20px; color: rgba(255,255,255,.82) !important;
}

/* linha de ações: CTA primário + baixar programação (secundário) */
.hero__actions-row{ display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 30px; }
.hero__cta{ font-size: 1rem; }

.hero__actions-row .hero__download{
  margin-top: 0; padding: 9px 22px 9px 9px; gap: 12px; animation: none;
  background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.2);
  box-shadow: none;
}
.hero__actions-row .hero__download:hover{
  transform: translateY(-2px);
  border-color: rgba(221,178,74,.6); background: rgba(255,255,255,.09);
}
.hero__actions-row .hero__download-ic{
  width: 42px; height: 42px; background: transparent;
  border: 1px solid rgba(221,178,74,.5); color: var(--color-accent-hi); box-shadow: none;
}
.hero__actions-row .hero__download-ic .ic{ width: 20px; height: 20px; }
.hero__actions-row .hero__download-main{ font-size: .95rem; }
.hero__actions-row .hero__download-sub{ font-size: .72rem; }

/* barra de meta (data · local · edição · escassez) — usa dados do painel */
.hero__bar{
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.14);
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .07em;
  text-transform: uppercase; color: rgba(255,255,255,.72);
}
.hero__bar-item{ display: inline-flex; align-items: center; gap: 8px; }
.hero__bar-item .ic{ width: 15px; height: 15px; color: var(--color-accent-hi); }
.hero__bar-sep{ width: 1px; height: 14px; background: rgba(255,255,255,.22); }
.hero__bar-item--scarcity{ margin-left: auto; color: var(--color-accent-hi); font-weight: 700; }

/* cue de scroll some (a barra assume o rodapé da hero) */
.hero__scroll{ display: none !important; }

@media (max-width: 680px){
  .hero__bar-sep{ display: none; }
  .hero__bar-item--scarcity{ margin-left: 0; width: 100%; }
  .hero__actions-row{ gap: 12px; }
  .hero__title{ max-width: none; }
}

/* ---------- 4. FAQ em CARROSSEL ---------- */
.cx-faqc{ max-width: 760px; margin: 26px auto 0; }
.cx-faqc__viewport{ overflow: hidden; border-radius: 20px; }
.cx-faqc__track{
  display: flex; align-items: stretch;
  transition: transform .6s cubic-bezier(.16,1,.3,1); will-change: transform;
}
.cx-faqc__card{
  flex: 0 0 100%; min-width: 100%;
  display: flex; flex-direction: column;
  padding: clamp(28px, 4vw, 46px);
  background: linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.12);
}
.cx-faqc__idx{
  font-family: var(--font-mono); font-size: .74rem; font-weight: 700; letter-spacing: .14em;
  color: var(--color-accent-hi); margin-bottom: 14px;
}
.cx-faqc__idx i{ font-style: normal; color: rgba(255,255,255,.35); margin: 0 .25em; }
.cx-faqc__q{
  font-family: var(--font-heading); font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.2; letter-spacing: -.01em;
  color: #fff; margin-bottom: 14px;
}
.cx-faqc__a{ color: rgba(255,255,255,.72); line-height: 1.62; font-size: .95rem; }
.cx-faqc__a p + p{ margin-top: 10px; }
.cx-faqc__nav{ display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 22px; }
.cx-faqc__arrow{
  width: 46px; height: 46px; flex: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04); border: 1px solid rgba(221,178,74,.4);
  color: var(--color-accent-hi); transition: background .3s, border-color .3s, transform .3s;
}
.cx-faqc__arrow:hover{ background: rgba(228,50,43,.14); border-color: var(--color-accent); transform: translateY(-2px); }
.cx-faqc__arrow .ic{ width: 20px; height: 20px; }
.cx-faqc__arrow--prev .ic{ transform: scaleX(-1); }
.cx-faqc__dots{ display: flex; align-items: center; gap: 9px; }
.cx-faqc__dots button{
  width: 8px; height: 8px; padding: 0; border: none; border-radius: 50%; cursor: pointer;
  background: rgba(255,255,255,.22); transition: background .3s, transform .3s;
}
.cx-faqc__dots button.is-active{ background: var(--color-accent); transform: scale(1.7); }

/* ---------- 5. PALESTRANTES — espaço para a foto ---------- */
.cx-vspk__photo{
  width: 78px; height: 94px; flex: none; border-radius: 14px; overflow: hidden; position: relative;
  border: 1px solid rgba(228,50,43,.3);
  background: linear-gradient(135deg, rgba(228,50,43,.18), rgba(221,178,74,.06));
  display: flex; align-items: center; justify-content: center;
}
.cx-vspk__photo img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.cx-vspk__photo .cx-vspk__mono{
  width: 100%; height: 100%; border: none; border-radius: 0; background: transparent;
  font-size: 1.55rem; color: var(--color-accent-hi);
}
.cx-vspk__card.is-active .cx-vspk__photo{ border-color: rgba(221,178,74,.6); }
.cx-vspk__card.is-active .cx-vspk__photo .cx-vspk__mono{ background: transparent; color: var(--color-accent-hi); }

/* ---------- 6. FOOTER — alinhado à esquerda (fim do centralizado) ---------- */
.cx-footer__top{ grid-template-columns: 1.4fr 1fr !important; text-align: left !important; justify-items: stretch !important; }
.cx-footer__brand{ align-items: flex-start !important; text-align: left !important; }
.cx-footer__tag{ margin-inline: 0 !important; }
.cx-footer__date{ justify-content: flex-start !important; }
.cx-footer__actions{ justify-content: flex-start !important; }
.cx-footer__cta{ margin-inline: 0 !important; }
.cx-footer__cols{ max-width: none !important; margin: 0 !important; text-align: left !important; }
.cx-footer__bottom{ flex-direction: row !important; flex-wrap: wrap; justify-content: space-between !important; text-align: left !important; align-items: center; }
@media (max-width: 768px){
  .cx-footer__top{ grid-template-columns: 1fr !important; }
  .cx-footer__bottom{ flex-direction: column !important; align-items: flex-start !important; }
}

/* ---------- 7. SEÇÃO DO FORMULÁRIO — sem barras + centralizada ---------- */
.cx-final__tape, .cx-footer__tape{ display: none !important; }
.cx-final{ padding-top: var(--section-gap) !important; }
.cx-final__grid{
  grid-template-columns: 1fr !important; max-width: 720px; margin-inline: auto !important;
  gap: clamp(26px, 4vw, 40px) !important; text-align: center;
}
.cx-final__copy{ text-align: center; }
.cx-final__copy .cx-kicker{ justify-content: center; }
.cx-final__copy .cx-kicker::after{ display: none; }
.cx-final__title{ margin-inline: auto; }
.cx-final__lead{ margin-inline: auto; }
.cx-final__list{ justify-content: center; }
.cx-final .cx-final__cd{ text-align: center; }
.cx-final .countdown{ justify-content: center; }
.cx-final__form{ width: 100%; max-width: 560px; margin-inline: auto; text-align: left; }

/* ---------- 8. AGENDA — botão de download (gated pelo formulário) ---------- */
.cx-agenda__dl{ display: flex; justify-content: center; margin-top: clamp(28px, 4vw, 44px); }
.cx-agenda__download{ margin-top: 0 !important; }

/* ============================================================
   REFERÊNCIA (Claude Design) — só ideias: fontes, cards do hero,
   blocos com imagem tratada. Aplicado sobre a base atual.
   ============================================================ */

/* ---------- Fontes: Space Grotesk + Instrument Serif (itálico) + Space Mono ---------- */
:root{
  --font-heading:"Space Grotesk","Montserrat",system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
  --font-display:"Space Grotesk","Montserrat",system-ui,sans-serif;
  --font-body:"Space Grotesk","Montserrat",system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
  --font-mono:"Space Mono",ui-monospace,"SF Mono",Menlo,Consolas,monospace;
  --font-serif:"Instrument Serif",Georgia,serif;
}
/* palavra-acento em itálico serifado (mantém o degradê já existente) */
.accent{font-family:var(--font-serif)!important;font-style:italic!important;font-weight:400!important;letter-spacing:0!important}

/* ---------- Cards flutuantes no hero ---------- */
@keyframes cx-floaty{0%,100%{transform:translateY(0) rotate(0deg)}50%{transform:translateY(-16px) rotate(-1.1deg)}}
@keyframes cx-fl-pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.35;transform:scale(.7)}}
.hero__floaters{position:absolute;top:0;right:0;width:360px;height:100%;z-index:2;pointer-events:none}
.hero__fl{
  position:absolute;padding:14px 16px;border-radius:10px;
  background:rgba(14,8,7,.58);-webkit-backdrop-filter:blur(9px);backdrop-filter:blur(9px);
  border:1px solid rgba(228,50,43,.32);box-shadow:0 22px 60px rgba(0,0,0,.55);
  animation:cx-floaty 7s ease-in-out infinite;animation-delay:var(--d,0s);
}
.hero__fl--gold{border-color:rgba(221,178,74,.4);box-shadow:0 22px 60px rgba(0,0,0,.55),0 0 30px rgba(221,178,74,.12)}
.hero__fl--row{display:flex;align-items:center;gap:10px}
.hero__fl b{display:block;font-family:var(--font-heading);font-weight:700;font-size:20px;letter-spacing:-.02em;color:var(--color-accent-hi)}
.hero__fl small{display:block;font-family:var(--font-mono);font-size:10px;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.6);margin-top:4px}
.hero__fl-num{font-size:26px!important}
.hero__fl-red{font-family:var(--font-mono);font-weight:700;font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:#E4322B}
.hero__fl-big{display:block;font-size:16px;margin-top:2px}
.hero__fl-k{font-weight:600;font-size:13px;color:#fff}
.hero__fl-k em{font-style:normal;color:var(--color-accent-hi)}
.hero__fl-mono{font-family:var(--font-mono);font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.6)}
.hero__fl-dot{width:8px;height:8px;border-radius:50%;background:#E4322B;box-shadow:0 0 12px #E4322B;flex:none;animation:cx-fl-pulse 1.8s ease-in-out infinite}
@media (max-width:1220px){.hero__floaters{display:none}}
@media (prefers-reduced-motion:reduce){.hero__fl{animation:none}}

/* ---------- Blocos com imagem tratada ao lado ---------- */
.cx-stack__inner{padding:0!important;overflow:hidden;display:grid;grid-template-columns:1fr .4fr;align-items:stretch}
.cx-stack__content{padding:clamp(28px,3.6vw,46px);min-width:0}
.cx-stack__media{position:relative;background:#0a0605;min-height:100%}
.cx-stack__img{position:absolute;inset:0;background-size:cover;background-position:center;filter:grayscale(.6) brightness(.55) contrast(1.1) sepia(.32) hue-rotate(-14deg) saturate(1.4)}
.cx-stack__media::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,#1a0a0d,rgba(26,10,13,.25) 42%,transparent),linear-gradient(0deg,rgba(160,32,20,.35),transparent 55%)}
@media (max-width:700px){
  .cx-stack__inner{grid-template-columns:1fr}
  .cx-stack__media{min-height:150px;order:-1}
}

/* ============================================================
   NOVOS AJUSTES — carrossel "entrega", fix do lote, fundo animado
   ============================================================ */

/* ---------- Fundo animado (partículas) visível na LP inteira ---------- */
#fxbg{position:fixed;inset:0;width:100%;height:100%;z-index:-3;pointer-events:none}
#bg-canvas{background:transparent!important;z-index:-2}
html,body{background:#050404}
/* seções ficam semitransparentes para o fundo animado bleed através */
.cx-editions.section-bg,.cx-faq.section-bg,.cx-final.section-bg,
.cx-pricing.section-bg,.cx-vspk.section-bg,.cx-blocks.section-bg,
.cx-agenda.section-bg,.cx-deliver.section-bg,.cx-verdict.section-bg,
.cx-forces.section-bg,.cx-figures.section-bg,.cx-proof.section-bg,
.authority.section-bg,.cx-red.section-bg{background:rgba(6,4,5,.6)!important}
.cx-band.section-bg{background:rgba(6,4,5,.34)!important}
.cx-footer.section-bg{background:rgba(3,2,2,.86)!important}
.cx-bigmq{background:rgba(6,4,5,.5)!important}
.hero.section-bg{background:transparent!important}
/* o brilho global no mouse fica redundante com o canvas -> remove */
.fx-glow{display:none!important}

/* ---------- Lote: retângulo "Lote atual" não pode cortar ---------- */
.cx-pricing__grid{overflow:visible}
.cx-price{overflow:visible!important}
.cx-price__tag{top:-12px;z-index:4;box-shadow:0 6px 18px -6px rgba(228,50,43,.6)}
/* o featured sobe um pouco: garante espaço pra tag acima da grade */
.cx-pricing__grid{padding-top:14px}

/* ---------- "O que a imersão entrega" em CARROSSEL ---------- */
.cx-delc{position:relative;margin-top:clamp(30px,4vw,48px)}
.cx-delc__viewport{
  display:flex;gap:16px;overflow-x:auto;scroll-snap-type:x mandatory;
  padding:6px 2px 16px;scrollbar-width:none;-ms-overflow-style:none;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 2.5%,#000 97.5%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 2.5%,#000 97.5%,transparent);
}
.cx-delc__viewport::-webkit-scrollbar{display:none}
.cx-delc__card{
  flex:0 0 clamp(260px,80vw,330px);scroll-snap-align:start;
  display:flex;flex-direction:column;min-height:230px;
  border:1px solid rgba(255,255,255,.12);border-radius:18px;padding:26px;
  background:linear-gradient(160deg,rgba(74,14,22,.28),rgba(255,255,255,.02));
  transition:border-color .3s,transform .3s,background .3s,box-shadow .3s;
}
.cx-delc__card:hover{
  border-color:var(--color-accent);transform:translateY(-4px);
  background:linear-gradient(160deg,rgba(74,14,22,.44),rgba(255,255,255,.03));
  box-shadow:0 26px 60px -30px rgba(228,50,43,.5);
}
.cx-delc__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px}
.cx-delc__n{font-family:var(--font-mono);font-size:.82rem;font-weight:700;color:rgba(255,255,255,.35)}
.cx-delc__card h3{font-family:var(--font-heading);font-weight:700;font-size:clamp(1.15rem,1.7vw,1.4rem);color:#fff;margin-bottom:10px;letter-spacing:-.01em}
.cx-delc__card p{color:rgba(255,255,255,.72);line-height:1.55;font-size:.92rem}
.cx-delc__nav{display:flex;justify-content:flex-end;gap:12px;margin-top:10px}

/* ============================================================
   VEREDITO — título separado em cada card + mobile
   ============================================================ */
.cx-verdict__head{
  display:flex;align-items:center;gap:10px;
  font-family:var(--font-heading)!important;font-weight:700;
  font-size:clamp(1.05rem,1.9vw,1.45rem);line-height:1.18;letter-spacing:-.01em;
  color:#fff;margin:0 0 16px;padding-bottom:16px;border-bottom:1px solid rgba(255,255,255,.12);
}
.cx-verdict__ic{flex:none;width:30px;height:30px;border-radius:8px;display:flex;align-items:center;justify-content:center}
.cx-verdict__ic .ic{width:16px;height:16px}
.cx-verdict__side--in .cx-verdict__ic{background:rgba(221,178,74,.15);border:1px solid rgba(221,178,74,.45);color:var(--color-accent-hi)}
.cx-verdict__side--out .cx-verdict__ic{background:rgba(228,50,43,.12);border:1px solid rgba(228,50,43,.4);color:#E4322B}
.cx-verdict__side--out .cx-verdict__head{color:rgba(255,255,255,.72)}

/* ============================================================
   MOBILE — ajustes de respiro/legibilidade das seções
   ============================================================ */
@media (max-width:600px){
  /* kicker numerado mais compacto (não quebra tão feio) */
  .cx-kicker{font-size:.64rem;letter-spacing:.13em;gap:.5em}
  .cx-kicker::before{padding:.34em .5em}
  /* veredito empilha com respiro */
  .cx-verdict__split{gap:16px}
  .cx-verdict__side{padding:22px 20px!important}
  /* lote featured não estoura a largura no mobile */
  .cx-price--featured,.cx-price--featured:hover{transform:none!important}
  /* pilha "A pressão": menos deslocamento sticky no mobile */
  .cx-fstack__panel{top:calc(78px + (var(--i) - 1) * 12px)}
}

/* ============================================================
   GALERIA — corrige o mobile (repaginação do night.css sem media
   query estava travando 2 colunas e esticando o vídeo)
   ============================================================ */
@media (max-width:900px){
  .cx-gal__text, .cx-gal__media{ min-width:0; }
  .cx-gal__grid{ grid-template-columns:1fr !important; gap:24px !important; }
  .cx-gal__media{ height:min(56vh,420px) !important; }
}
@media (max-width:560px){
  .cx-gal__cols{ display:none !important; }
  .cx-gal__media{ height:auto !important; display:block !important; }
  .cx-gal__video{ order:0 !important; flex:1 1 auto !important; width:100%; aspect-ratio:16/10; }
  .cx-gal__text .cx-h2{ max-width:none !important; }
}

/* ============================================================
   AGENDA — abre só ao clicar no dia (setinha indicadora)
   ============================================================ */
.cx-agenda__tab{ cursor:pointer; }
.cx-agenda__tab-row{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.cx-agenda__tab-ic{ display:inline-flex; flex:none; color:var(--color-accent-hi); transition:transform .3s ease; }
.cx-agenda__tab-ic .ic{ width:18px; height:18px; }
.cx-agenda__tab[aria-expanded="true"] .cx-agenda__tab-ic{ transform:rotate(180deg); }
.cx-agenda__panels{ scroll-margin-top:120px; }

/* ============================================================
   HERO — palavras-chave em Instrument Serif itálico (grad/vermelho)
   ============================================================ */
.hero-em{ font-family:var(--font-serif); font-style:italic; font-weight:400; letter-spacing:0; text-shadow:none; }
.hero-em--grad{
  background:linear-gradient(95deg,#E4322B 0%,#E8B24A 100%);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
}
.hero-em--red{ color:#E4322B; }

/* ============================================================
   HERO — overlay mais preto do que vermelho
   ============================================================ */
.hero__veil{
  background:linear-gradient(180deg,
    rgba(0,0,0,.96) 0%,
    rgba(0,0,0,.80) 48%,
    rgba(8,0,1,.94) 100%)!important;
}
.hero__gradient{
  background:
    radial-gradient(880px 540px at 18% 36%, rgba(150,16,20,.22), transparent 64%),
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(38,4,6,.28) 42%, transparent 72%)!important;
  mix-blend-mode:normal!important;
}

/* ============================================================
   HERO — pontos de luz vermelhos
   ============================================================ */
.hero__reddots{ position:absolute; inset:0; pointer-events:none; z-index:2 }
.hero__reddot{
  position:absolute; width:var(--s,180px); height:var(--s,180px); border-radius:50%;
  background:radial-gradient(circle, rgba(228,50,43,.3) 0%, rgba(228,50,43,.1) 40%, transparent 72%);
  filter:blur(22px); transform:translate(-50%,-50%); mix-blend-mode:screen;
  animation:hero-reddot 6.5s ease-in-out infinite; animation-delay:var(--d,0s);
}
@keyframes hero-reddot{
  0%,100%{ opacity:.4; transform:translate(-50%,-50%) scale(1) }
  50%{ opacity:.18; transform:translate(-50%,-50%) scale(1.12) }
}
@media (prefers-reduced-motion:reduce){ .hero__reddot{ animation:none } }

/* ============================================================
   NÚMEROS — card com a logo EBDI no espaço que sobrou
   ============================================================ */
.cx-fig--logo{ display:flex; align-items:center; justify-content:center; }
.cx-fig--logo .cx-fig__logo{ width:auto; height:clamp(30px,3.4vw,46px); opacity:.92; }
.cx-fig--logo:hover .cx-fig__logo{ opacity:1; }

/* ============================================================
   PALESTRANTES — lista + painel que abre no hover
   ============================================================ */
.cx-vspk .cx-vspk__intro{ max-width:760px; margin-bottom:clamp(26px,4vw,42px); }
.cx-spkx{ display:grid; grid-template-columns:0.82fr 1.18fr; gap:clamp(18px,3vw,38px); align-items:stretch; }
.cx-spkx__list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:4px; max-height:520px; overflow-y:auto; }
.cx-spkx__row{
  width:100%; display:flex; align-items:center; gap:13px; text-align:left; cursor:pointer;
  padding:11px 14px; border:1px solid transparent; border-radius:12px; background:transparent; color:#fff;
  transition:background .25s, border-color .25s;
}
.cx-spkx__row:hover, .cx-spkx__row.is-active{ background:rgba(255,255,255,.045); border-color:rgba(221,178,74,.42); }
.cx-spkx__ini{
  width:38px; height:38px; flex:none; border-radius:9px; display:flex; align-items:center; justify-content:center;
  font-family:var(--font-mono); font-weight:700; font-size:.82rem; color:var(--color-accent-hi);
  background:rgba(228,50,43,.14); border:1px solid rgba(228,50,43,.3); transition:background .25s,color .25s;
}
.cx-spkx__row.is-active .cx-spkx__ini{ background:linear-gradient(135deg,var(--color-accent-hi),#E4322B); color:#161616; border-color:transparent; }
.cx-spkx__rowtxt{ display:flex; flex-direction:column; flex:1; min-width:0; }
.cx-spkx__rowname{ font-family:var(--font-heading); font-weight:700; font-size:1rem; line-height:1.2; }
.cx-spkx__rowco{ font-size:.76rem; color:rgba(255,255,255,.55); }
.cx-spkx__rowar{ opacity:0; transform:translateX(-5px); transition:opacity .25s,transform .25s; color:var(--color-accent-hi); flex:none; }
.cx-spkx__rowar .ic{ width:16px; height:16px; }
.cx-spkx__row:hover .cx-spkx__rowar, .cx-spkx__row.is-active .cx-spkx__rowar{ opacity:1; transform:none; }

.cx-spkx__stage{ position:relative; min-height:360px; border:1px solid rgba(221,178,74,.35); border-radius:20px; overflow:hidden; background:linear-gradient(150deg,#1E0507,#0d0506); box-shadow:0 34px 80px -40px rgba(228,50,43,.5); }
.cx-spkx__card{ position:absolute; inset:0; display:grid; grid-template-columns:0.92fr 1.08fr; opacity:0; visibility:hidden; transition:opacity .4s ease; pointer-events:none; }
.cx-spkx__card.is-active{ opacity:1; visibility:visible; pointer-events:auto; }
.cx-spkx__photo{ position:relative; background:#0a0605; overflow:hidden; display:flex; align-items:center; justify-content:center; }
.cx-spkx__photo img{ width:100%; height:100%; object-fit:cover; }
.cx-spkx__photomono{ font-family:var(--font-heading); font-weight:700; font-size:clamp(3rem,6vw,5rem); color:rgba(221,178,74,.45); }
.cx-spkx__photo::after{ content:""; position:absolute; inset:0; background:linear-gradient(115deg,transparent 42%,rgba(13,5,6,.92)); }
.cx-spkx__info{ padding:clamp(24px,3vw,38px); display:flex; flex-direction:column; justify-content:center; position:relative; z-index:1; }
.cx-spkx__name{ font-family:var(--font-heading); font-weight:700; font-size:clamp(1.4rem,2.4vw,2rem); color:#fff; letter-spacing:-.01em; line-height:1.1; }
.cx-spkx__role{ color:var(--color-accent-hi); font-weight:600; font-size:.9rem; margin-top:7px; }
.cx-spkx__co{ font-family:var(--font-mono); font-size:.74rem; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.55); margin-top:3px; }
.cx-spkx__talk{ color:rgba(255,255,255,.78); line-height:1.55; font-size:.95rem; margin-top:16px; }
@media (max-width:860px){
  .cx-spkx{ grid-template-columns:1fr; gap:16px; }
  .cx-spkx__stage{ order:-1; min-height:0; }
  .cx-spkx__card{ position:relative; display:block; }
  .cx-spkx__card:not(.is-active){ display:none; }
  .cx-spkx__photo{ height:210px; }
  .cx-spkx__photo::after{ background:linear-gradient(0deg,rgba(13,5,6,.92),transparent 60%); }
  .cx-spkx__list{ max-height:none; }
}

/* ============================================================
   PALESTRANTES — tela flutuante no hover (imagem, cargo, descrição)
   ============================================================ */
.cx-vspk__float{
  position:fixed; z-index:130; left:0; top:0; width:300px; pointer-events:none;
  opacity:0; transform:translateY(10px) scale(.98); transition:opacity .2s ease, transform .2s ease;
  background:linear-gradient(160deg,#241014,#12070a); border:1px solid rgba(221,178,74,.45);
  border-radius:16px; overflow:hidden;
  box-shadow:0 34px 80px -28px rgba(0,0,0,.9), 0 0 46px -12px rgba(228,50,43,.55);
}
.cx-vspk__float.is-on{ opacity:1; transform:none; }
.cx-vspk__float-photo{ height:190px; background:#0a0605; display:flex; align-items:center; justify-content:center; position:relative; }
.cx-vspk__float-photo img{ width:100%; height:100%; object-fit:cover; }
.cx-vspk__float-ini{ font-family:var(--font-heading); font-weight:700; font-size:3.4rem; color:rgba(221,178,74,.5); }
.cx-vspk__float-photo::after{ content:""; position:absolute; inset:0; background:linear-gradient(0deg,rgba(18,7,10,.92),transparent 55%); }
.cx-vspk__float-body{ padding:16px 18px 20px; }
.cx-vspk__float-name{ font-family:var(--font-heading); font-weight:700; font-size:1.2rem; color:#fff; line-height:1.15; }
.cx-vspk__float-role{ font-family:var(--font-mono); font-size:.72rem; letter-spacing:.06em; text-transform:uppercase; color:var(--color-accent-hi); margin-top:5px; }
.cx-vspk__float-desc{ color:rgba(255,255,255,.8); font-size:.9rem; line-height:1.5; margin-top:11px; }
@media (hover:none),(pointer:coarse){ .cx-vspk__float{ display:none !important; } }

/* ============================================================
   COTAS DE PATROCÍNIO — carrossel infinito por cota (Supreme→Emerge)
   ============================================================ */
.cx-cotas__sub{ text-align:left; color:rgba(255,255,255,.62); max-width:60ch; margin:14px 0 0; line-height:1.6; }
.cx-cotas__list{ display:flex; flex-direction:column; gap:14px; margin-top:clamp(30px,4vw,48px); }
.cx-cota{
  display:grid; grid-template-columns:190px 1fr; align-items:center; gap:20px;
  border:1px solid var(--bd,rgba(255,255,255,.1)); border-radius:16px; padding:16px 20px;
  background:linear-gradient(120deg,rgba(255,255,255,.03),rgba(255,255,255,.01));
}
.cx-cota__label{ display:flex; align-items:center; gap:12px; }
.cx-cota__rank{ font-family:var(--font-mono); font-size:.72rem; font-weight:700; color:rgba(255,255,255,.4); border:1px solid rgba(255,255,255,.14); border-radius:6px; padding:.34em .5em; }
.cx-cota__name{ font-family:var(--font-heading); font-weight:700; letter-spacing:-.01em; color:var(--ac,#fff); font-size:var(--nm,1.3rem); }
.cx-cota__marquee{ overflow:hidden; position:relative; -webkit-mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent); mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent); }
.cx-cota__track{ display:flex; align-items:center; gap:14px; width:max-content; animation:cx-cota-marq var(--sp,32s) linear infinite; }
.cx-cota:hover .cx-cota__track{ animation-play-state:paused; }
.cx-cota__slot{ flex:none; height:var(--h,72px); width:calc(var(--h,72px) * 2); border-radius:10px; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08); overflow:hidden; }
.cx-cota__slot img{ max-width:78%; max-height:66%; object-fit:contain; }
.cx-cota__slot--empty{ border:1px dashed var(--bd,rgba(221,178,74,.32)); background:rgba(255,255,255,.015); }
.cx-cota__slot--empty span{ font-family:var(--font-mono); font-size:.6rem; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.28); }
@keyframes cx-cota-marq{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

/* tamanho/cor por cota — da maior (Supreme) para a menor (Emerge) */
.cx-cota--supreme{ --h:98px; --nm:1.7rem; --ac:#F2D27A; --bd:rgba(221,178,74,.55); --sp:30s; box-shadow:0 20px 60px -34px rgba(221,178,74,.5); background:linear-gradient(120deg,rgba(221,178,74,.08),rgba(255,255,255,.01)); }
.cx-cota--elite{ --h:84px; --nm:1.5rem; --ac:#E4322B; --bd:rgba(228,50,43,.45); --sp:34s; }
.cx-cota--prime{ --h:72px; --nm:1.32rem; --ac:#DDB24A; --bd:rgba(221,178,74,.34); --sp:38s; }
.cx-cota--vision{ --h:62px; --nm:1.18rem; --ac:#E88b86; --bd:rgba(228,50,43,.28); --sp:42s; }
.cx-cota--emerge{ --h:54px; --nm:1.06rem; --ac:rgba(255,255,255,.75); --bd:rgba(255,255,255,.16); --sp:46s; }

@media (max-width:680px){
  .cx-cota{ grid-template-columns:1fr; gap:12px; }
  .cx-cota__label{ justify-content:flex-start; }
}

/* ============================================================
   FOTOS DOS PALESTRANTES — ancora no topo (não cortar a cabeça)
   ============================================================ */
.cx-vspk__photo img,
.cx-vspk__float-photo img,
.cx-spkx__photo img{ object-position: center top; }
.cx-vspk__float-photo{ height: 340px; }

/* ============================================================
   TELA FLUTUANTE — horizontal (foto à esquerda) · só desktop
   ============================================================ */
.cx-vspk__float{ width: 470px; display: flex; align-items: stretch; min-height: 210px; }
.cx-vspk__float-photo{ width: 186px; height: auto !important; flex: none; align-self: stretch; }
.cx-vspk__float-photo::after{ background: linear-gradient(90deg, transparent 52%, rgba(18,7,10,.6)) !important; }
.cx-vspk__float-body{ flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; padding: 18px 22px; }
/* garante desktop-only */
@media (hover:none),(pointer:coarse){ .cx-vspk__float{ display: none !important; } }

/* ---------- Logos com altura custom (campo "h" no painel) ---------- */
#logoTrack .logo-img[style*="--lh"]{ height: var(--lh) !important; width: auto; }
@media (max-width:600px){ #logoTrack .logo-img[style*="--lh"]{ height: calc(var(--lh) * 0.74) !important; } }

/* ---------- Cotas: só rola se as logos transbordam o retângulo ---------- */
.cx-cota--static .cx-cota__track{ animation:none !important; width:100% !important; justify-content:center; }
