/**
 * Colibex — Apresentação de vendas fullscreen · landscape · alta qualidade
 */
:root {
  --cbx-primary: #2563eb;
  --cbx-primary-dark: #1d4ed8;
  --cbx-primary-darker: #1e40af;
  --cbx-light: #dbeafe;
  --cbx-light-soft: #eff6ff;
  --cbx-dark: #0b1220;
  --cbx-muted: #475569;
  --cbx-white: #ffffff;
  --cbx-cyan: #60a5fa;
  --cbx-blue: #2563eb;
  --cbx-violet: #7c3aed;
  --cbx-lime: #fbbf24;
  --cbx-coral: #f43f5e;
  --cbx-grad-brand-soft: linear-gradient(120deg, #2563eb, #60a5fa);
  --cbx-grad-aurora: linear-gradient(120deg, #2563eb, #60a5fa 60%, #1d4ed8);
  --cbx-glow: 0 18px 50px rgba(37, 99, 235, 0.22);
  --cbx-pad-x: clamp(2.5rem, 7vw, 6rem);
  --cbx-pad-y: clamp(2rem, 5vh, 3.5rem);
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body.cbx-doc {
  margin: 0;
  height: 100%;
  overflow: hidden;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--cbx-dark);
  background: var(--cbx-dark);
  -webkit-font-smoothing: antialiased;
}

.cbx-doc h1,
.cbx-doc h2,
.cbx-doc h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0;
}

.cbx-gradient-text {
  background: var(--cbx-grad-aurora);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Scroll fullscreen — navegação controlada via JS (sem snap nativo) */
.cbx-doc-scroll {
  height: 100vh;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-snap-type: none;
  scroll-behavior: auto;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
}

/* Cada página = exatamente uma tela (evita scroll preso em slides altos) */
.cbx-page {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  scroll-snap-align: none;
  display: flex;
  flex-direction: column;
  padding: var(--cbx-pad-y) var(--cbx-pad-x);
  overflow: hidden;
  box-sizing: border-box;
  background: var(--cbx-white);
}

.cbx-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(37, 99, 235, 0.08), transparent 70%);
}

.cbx-page.is-active::before {
  opacity: 1;
}

.cbx-page__inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
  overflow: hidden;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cbx-page__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.cbx-page__col {
  min-width: 0;
}

.cbx-page__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  margin-top: auto;
  max-width: 1280px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid rgba(191, 219, 254, 0.75);
  font-size: 0.72rem;
  color: var(--cbx-muted);
  position: relative;
  z-index: 1;
}

.cbx-page__num {
  font-weight: 700;
  color: var(--cbx-primary);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

/* Logo — proporção correta, nunca achatado */
.cbx-page__logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 2.5rem;
}

.cbx-page--final .cbx-page__logo {
  height: 52px;
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
  object-position: center center;
}

/* Fundos */
.cbx-page--mesh {
  background:
    radial-gradient(ellipse 80% 70% at 0% 0%, rgba(37, 99, 235, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 60% at 100% 100%, rgba(96, 165, 250, 0.14), transparent 50%),
    linear-gradient(135deg, #f0f6ff 0%, var(--cbx-white) 60%);
}

.cbx-page--light {
  background: linear-gradient(135deg, var(--cbx-light-soft) 0%, var(--cbx-white) 100%);
}

.cbx-page--accent {
  background:
    radial-gradient(ellipse 65% 55% at 0% 100%, rgba(37, 99, 235, 0.14), transparent 50%),
    linear-gradient(135deg, var(--cbx-light) 0%, var(--cbx-light-soft) 45%, var(--cbx-white) 100%);
}

.cbx-page--dark {
  background: linear-gradient(125deg, #0b1220 0%, var(--cbx-primary-darker) 40%, var(--cbx-primary) 85%, var(--cbx-blue) 130%);
  color: var(--cbx-white);
}

.cbx-page--dark .cbx-page__footer {
  border-top-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
}

.cbx-page--dark .cbx-page__num {
  color: var(--cbx-cyan);
}

/* Tipografia */
.cbx-page__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cbx-primary-darker);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.12), rgba(96, 165, 250, 0.1));
  border: 1px solid rgba(37, 99, 235, 0.22);
  margin-bottom: 1.25rem;
  width: fit-content;
}

.cbx-page__kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cbx-cyan);
  box-shadow: 0 0 8px rgba(6, 214, 196, 0.6);
}

.cbx-page__title {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  margin-bottom: 0.85rem;
  max-width: 14ch;
}

.cbx-page__title--wide {
  max-width: none;
}

.cbx-page--final .cbx-page__title {
  max-width: none;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}

.cbx-page__subtitle {
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  font-weight: 600;
  color: var(--cbx-primary-darker);
  margin-bottom: 1rem;
}

.cbx-page--dark .cbx-page__subtitle {
  color: rgba(255, 255, 255, 0.92);
}

.cbx-page__lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: var(--cbx-muted);
  max-width: 36rem;
  margin: 0;
}

.cbx-page--dark .cbx-page__lead {
  color: rgba(255, 255, 255, 0.82);
}

/* Problema */
.cbx-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0;
  list-style: none;
  padding: 0;
}

.cbx-problem-grid li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  border: 1px solid var(--cbx-light);
  font-weight: 600;
  font-size: 0.95rem;
}

.cbx-problem-grid .bi {
  color: var(--cbx-coral);
  flex-shrink: 0;
  font-size: 1.1rem;
}

.cbx-callout {
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(6, 214, 196, 0.12), rgba(31, 142, 241, 0.08));
  border-left: 4px solid var(--cbx-primary);
  font-size: 1.05rem;
  line-height: 1.55;
  margin-top: 1rem;
}

/* Fluxo — comparação + funil dinâmico */
.cbx-flow-compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.25rem;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
}

.cbx-flow-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cbx-primary);
  font-size: 1.5rem;
  padding: 0 0.25rem;
}

.cbx-flow-panel {
  border-radius: 18px;
  padding: 1.35rem 1.15rem 1.15rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cbx-flow-panel--old {
  background: rgba(239, 246, 255, 0.92);
  border: 1px dashed rgba(147, 197, 253, 0.85);
}

.cbx-flow-panel--new {
  position: relative;
  background: linear-gradient(165deg, rgba(219, 234, 254, 0.95), rgba(239, 246, 255, 0.85));
  border: 2px solid rgba(37, 99, 235, 0.22);
  box-shadow: var(--cbx-glow);
  overflow: hidden;
}

.cbx-flow-panel--new::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.12), transparent 55%);
  pointer-events: none;
}

.cbx-flow-panel__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: var(--cbx-muted);
}

.cbx-flow-panel__head--brand {
  color: var(--cbx-primary-darker);
}

.cbx-flow-panel__head .bi {
  font-size: 1.05rem;
}

.cbx-flow-panel__note {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--cbx-muted);
  margin: 0.85rem 0 0;
  letter-spacing: 0.02em;
}

.cbx-flow-panel__note--brand {
  color: var(--cbx-primary-darker);
}

.cbx-flow-flat {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 240px;
}

.cbx-flow-flat__step {
  width: 100%;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: var(--cbx-white);
  border: 1px solid #d5dfe0;
  font-weight: 600;
  font-size: 0.88rem;
  color: #6b7f80;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.cbx-flow-flat__step--end {
  background: #e8ecee;
  border-style: dashed;
}

.cbx-flow-flat__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.55rem 0;
  color: #a8b8b9;
}

.cbx-flow-flat__line {
  width: 2px;
  height: 24px;
  background: #c5d0d1;
  border-radius: 2px;
}

.cbx-funnel {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 240px;
  padding: 0.2rem 0 0.3rem;
}

.cbx-funnel__beam {
  position: absolute;
  top: 0.4rem;
  bottom: 4rem;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(6, 214, 196, 0.15), rgba(31, 142, 241, 0.45));
  border-radius: 999px;
  overflow: hidden;
}

.cbx-funnel__pulse {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(6, 214, 196, 0.55), transparent);
  animation: cbx-funnel-pulse 2.4s ease-in-out infinite;
}

.cbx-funnel__dot {
  position: absolute;
  left: 50%;
  width: 7px;
  height: 7px;
  margin-left: -3.5px;
  border-radius: 50%;
  background: var(--cbx-cyan);
  box-shadow: 0 0 10px rgba(6, 214, 196, 0.8);
  animation: cbx-funnel-dot 2.8s linear infinite;
}

.cbx-funnel__dot--2 {
  animation-delay: 0.9s;
  background: var(--cbx-blue);
  box-shadow: 0 0 10px rgba(31, 142, 241, 0.7);
}

.cbx-funnel__dot--3 {
  animation-delay: 1.8s;
  width: 5px;
  height: 5px;
  margin-left: -2.5px;
}

.cbx-funnel__list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.cbx-funnel__item {
  width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: translateY(14px) scale(0.98);
}

.cbx-page.is-active .cbx-funnel__item {
  animation: cbx-funnel-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(0.12s + var(--i) * 0.09s);
}

.cbx-funnel__stage {
  width: var(--w);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(48, 177, 176, 0.22);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--cbx-dark);
  box-shadow: 0 6px 18px rgba(48, 177, 176, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cbx-funnel__stage .bi {
  color: var(--cbx-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.cbx-funnel__out {
  position: relative;
  z-index: 2;
  margin-top: 0.55rem;
  width: 58%;
  min-width: 138px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  background: var(--cbx-grad-brand-soft);
  color: var(--cbx-white);
  font-weight: 800;
  font-size: 0.88rem;
  text-align: center;
  box-shadow: 0 12px 32px rgba(48, 177, 176, 0.35);
  opacity: 0;
  transform: translateY(16px) scale(0.96);
}

.cbx-funnel__out .bi {
  font-size: 1.05rem;
}

.cbx-funnel__out em {
  font-style: normal;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.88;
}

.cbx-page.is-active .cbx-funnel__out {
  animation: cbx-funnel-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards;
}

@keyframes cbx-funnel-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cbx-funnel-dot {
  0% {
    top: 0;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

@keyframes cbx-funnel-pulse {
  0%, 100% {
    transform: translateY(-100%);
    opacity: 0;
  }
  50% {
    transform: translateY(100%);
    opacity: 1;
  }
}

.cbx-contrast-headline {
  text-align: left;
  margin-bottom: 0;
}

.cbx-contrast-headline .cbx-page__title {
  max-width: none;
}

.cbx-contrast-headline .cbx-page__subtitle {
  margin-bottom: 0;
}

/* Checklist */
.cbx-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cbx-check-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 500;
  line-height: 1.4;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.5);
}

.cbx-check-grid .bi-check-circle-fill {
  color: var(--cbx-primary);
  flex-shrink: 0;
  margin-top: 0.15rem;
  font-size: 1.1rem;
}

.cbx-page--light .cbx-check-grid li,
.cbx-page--accent .cbx-check-grid li {
  background: rgba(255, 255, 255, 0.7);
}

/* Lead card */
.cbx-lead-sheet {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  border: 1px solid rgba(48, 177, 176, 0.2);
  box-shadow: 0 20px 60px rgba(6, 214, 196, 0.15);
  overflow: hidden;
}

.cbx-lead-sheet__bar {
  background: var(--cbx-grad-brand-soft);
  color: white;
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cbx-lead-sheet__body {
  padding: 0.5rem 1.25rem 1rem;
}

.cbx-lead-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--cbx-light);
  font-size: 0.92rem;
  align-items: start;
}

.cbx-lead-row:last-child {
  border-bottom: none;
}

.cbx-lead-row__label {
  color: var(--cbx-muted);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cbx-lead-row__value {
  font-weight: 600;
  line-height: 1.45;
}

.cbx-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--cbx-lime), var(--cbx-cyan));
  color: #06332f;
  font-size: 0.85rem;
  font-weight: 800;
}

.cbx-approach {
  display: block;
  padding: 0.85rem 1rem;
  background: var(--cbx-light-soft);
  border-radius: 10px;
  border-left: 4px solid var(--cbx-primary);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--cbx-muted);
  font-weight: 500;
}

.cbx-lead-sheet--wide {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.cbx-lead-sheet__body--grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  padding: 1rem 1.25rem 1.15rem;
}

.cbx-lead-sheet__col {
  min-width: 0;
}

.cbx-lead-wa {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--cbx-light);
  margin-bottom: 0.85rem;
}

.cbx-lead-wa strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cbx-muted);
  margin-bottom: 0.35rem;
}

.cbx-lead-wa p {
  margin: 0;
  font-size: 0.85rem;
}

.cbx-lead-wa__num {
  font-weight: 700;
}

.cbx-lead-wa__demo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: var(--cbx-light-soft);
  border: 1px solid var(--cbx-light);
  color: var(--cbx-primary-darker);
  font-size: 0.78rem;
  font-weight: 700;
}

.cbx-lead-demo-tag {
  margin-left: auto;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cbx-lead-wa__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.cbx-lead-qual strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cbx-muted);
  margin-bottom: 0.4rem;
}

.cbx-lead-qual p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--cbx-muted);
}

.cbx-lead-table-wrap {
  height: 100%;
}

.cbx-lead-table__title {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cbx-muted);
  margin-bottom: 0.45rem;
}

.cbx-lead-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
}

.cbx-lead-table th,
.cbx-lead-table td {
  padding: 0.38rem 0.55rem;
  text-align: left;
  border-bottom: 1px solid var(--cbx-light);
}

.cbx-lead-table th {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: var(--cbx-muted);
  background: var(--cbx-light-soft);
}

.cbx-lead-table td:first-child {
  font-weight: 600;
  font-size: 0.74rem;
  color: var(--cbx-muted);
  width: 46%;
}

.cbx-lead-table td:last-child {
  font-weight: 600;
}

.cbx-qual-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(142, 224, 74, 0.2);
  color: var(--cbx-primary-darker);
  font-weight: 800;
  font-size: 0.78rem;
}

/* Piloto */
.cbx-pilot-badges {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.cbx-pilot-badge {
  flex: 1;
  text-align: center;
  padding: 1.1rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(6, 214, 196, 0.4);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--cbx-primary-darker);
  box-shadow: 0 8px 28px rgba(6, 214, 196, 0.14);
}

/* CTA */
.cbx-page__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2rem;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: var(--cbx-white);
  color: var(--cbx-primary-darker);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  text-decoration: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.cbx-page__cta-btn:hover {
  transform: translateY(-2px);
  color: var(--cbx-primary-darker);
}

.cbx-page--final {
  text-align: center;
}

.cbx-page--final .cbx-page__inner {
  align-items: center;
}

.cbx-page--final .cbx-page__subtitle {
  max-width: 24rem;
}

.cbx-page--dark .cbx-page__title {
  color: var(--cbx-white);
}

/* Progresso fixo — discreto */
.cbx-deck-progress {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  pointer-events: none;
}

.cbx-deck-progress__bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
}

.cbx-deck-progress__fill {
  height: 100%;
  width: 11.11%;
  background: var(--cbx-grad-brand-soft);
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 12px rgba(6, 214, 196, 0.5);
}

.cbx-deck-progress__label {
  position: absolute;
  bottom: 10px;
  right: clamp(1.5rem, 4vw, 3rem);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cbx-primary-darker);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6px);
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
}

body.cbx-doc--on-dark .cbx-deck-progress__label {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.25);
}

/* Hint teclado — some após scroll */
.cbx-deck-hint {
  position: fixed;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  font-size: 0.72rem;
  color: var(--cbx-muted);
  opacity: 0.7;
  pointer-events: none;
  animation: cbx-hint-fade 4s ease forwards;
}

@keyframes cbx-hint-fade {
  0%, 60% { opacity: 0.7; }
  100% { opacity: 0; visibility: hidden; }
}

.cbx-page--intel {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(29, 78, 216, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 45% at 0% 100%, rgba(96, 165, 250, 0.1), transparent 45%),
    linear-gradient(135deg, var(--cbx-light-soft) 0%, var(--cbx-white) 100%);
}

/* —— Componentes visuais enriquecidos —— */

.cbx-stat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.cbx-stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(6, 214, 196, 0.3);
  font-size: 0.82rem;
  color: var(--cbx-muted);
}

.cbx-stat-chip .bi {
  color: var(--cbx-primary);
  font-size: 1rem;
}

.cbx-stat-chip strong {
  color: var(--cbx-dark);
}

.cbx-visual-panel {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 20px;
  border: 1px solid rgba(48, 177, 176, 0.18);
  box-shadow: 0 24px 64px rgba(6, 214, 196, 0.14);
  overflow: hidden;
}

.cbx-visual-panel__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.15rem;
  background: var(--cbx-grad-brand-soft);
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
}

.cbx-visual-panel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cbx-lime);
}

.cbx-visual-panel__dot--live {
  animation: cbx-pulse-dot 2s ease infinite;
}

@keyframes cbx-pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(142, 224, 74, 0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(142, 224, 74, 0); }
}

.cbx-preview-stack {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cbx-preview-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: var(--cbx-light-soft);
  border: 1px solid var(--cbx-light);
}

.cbx-preview-card strong {
  display: block;
  font-size: 0.88rem;
  color: var(--cbx-dark);
}

.cbx-preview-card span {
  font-size: 0.78rem;
  color: var(--cbx-muted);
}

.cbx-preview-card--hi {
  background: linear-gradient(120deg, rgba(6, 214, 196, 0.12), rgba(31, 142, 241, 0.08));
  border-color: rgba(6, 214, 196, 0.35);
}

.cbx-preview-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--cbx-grad-brand-soft);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cbx-preview-card__icon--blue { background: linear-gradient(135deg, var(--cbx-blue), var(--cbx-violet)); }
.cbx-preview-card__icon--hi { background: linear-gradient(135deg, var(--cbx-lime), var(--cbx-cyan)); color: #06332f; }

.cbx-section-mini-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cbx-muted);
  margin: 0 0 0.85rem;
}

.cbx-icon-tiles {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.cbx-icon-tiles li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: white;
  border-radius: 14px;
  border: 1px solid var(--cbx-light);
  font-weight: 600;
  font-size: 0.9rem;
}

.cbx-icon-tiles__ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 107, 107, 0.12);
  color: var(--cbx-coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.cbx-context-box {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.2rem;
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(6, 214, 196, 0.1), rgba(31, 142, 241, 0.06));
  border-left: 4px solid var(--cbx-primary);
  margin-top: 1.25rem;
}

.cbx-context-box .bi {
  font-size: 1.5rem;
  color: var(--cbx-primary);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.cbx-context-box p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  font-weight: 500;
}

.cbx-data-bar {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--cbx-light);
  margin-top: 1rem;
}

.cbx-data-bar .bi {
  font-size: 1.4rem;
  color: var(--cbx-primary);
}

.cbx-data-bar strong {
  display: block;
  font-size: 0.88rem;
}

.cbx-data-bar span {
  font-size: 0.78rem;
  color: var(--cbx-muted);
}

.cbx-data-bar--warn .bi { color: var(--cbx-coral); }
.cbx-data-bar--warn { border-color: rgba(255, 107, 107, 0.25); background: rgba(255, 107, 107, 0.06); }

.cbx-page__head-center {
  text-align: center;
  margin-bottom: 1.75rem;
}

.cbx-page__head-center .cbx-page__title,
.cbx-page__head-center .cbx-page__subtitle {
  max-width: none;
}

.cbx-metric-duo {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.cbx-metric-box {
  flex: 1;
  padding: 1rem;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--cbx-light);
  text-align: center;
}

.cbx-metric-box__val {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--cbx-grad-aurora);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cbx-metric-box__lbl {
  font-size: 0.72rem;
  color: var(--cbx-muted);
  font-weight: 600;
}

.cbx-benefit-cards {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.cbx-benefit-cards li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--cbx-light);
  font-weight: 600;
  font-size: 0.88rem;
}

.cbx-benefit-cards li > .bi {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 8px;
  background: var(--cbx-grad-brand-soft);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.cbx-check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}

.cbx-check-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(221, 236, 239, 0.8);
}

.cbx-check-list li:last-child { border-bottom: none; }

.cbx-check-list .bi-check-circle-fill {
  color: var(--cbx-primary);
  font-size: 1.1rem;
}

.cbx-lead-row__label .bi {
  margin-right: 0.3rem;
  color: var(--cbx-primary);
}

.cbx-chat-mock {
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(48, 177, 176, 0.2);
  box-shadow: 0 20px 50px rgba(6, 214, 196, 0.12);
  overflow: hidden;
}

.cbx-chat-mock__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.15rem;
  background: var(--cbx-light-soft);
  border-bottom: 1px solid var(--cbx-light);
}

.cbx-chat-mock__avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--cbx-grad-brand-soft);
  color: white;
  font-weight: 800;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cbx-chat-mock__head strong {
  display: block;
  font-size: 0.88rem;
}

.cbx-chat-mock__status {
  font-size: 0.72rem;
  color: var(--cbx-primary);
  font-weight: 600;
}

.cbx-chat-mock__status .bi {
  font-size: 0.45rem;
  vertical-align: middle;
  margin-right: 0.25rem;
}

.cbx-chat-mock__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-height: 280px;
}

.cbx-chat-bubble {
  max-width: 88%;
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  font-size: 0.8rem;
  line-height: 1.45;
}

.cbx-chat-bubble--in {
  align-self: flex-start;
  background: var(--cbx-light-soft);
  border-bottom-left-radius: 4px;
}

.cbx-chat-bubble--out {
  align-self: flex-end;
  background: var(--cbx-grad-brand-soft);
  color: white;
  border-bottom-right-radius: 4px;
}

.cbx-chat-bubble--sys {
  align-self: center;
  background: rgba(142, 224, 74, 0.15);
  color: var(--cbx-primary-darker);
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  max-width: 100%;
}

.cbx-dash-mock {
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(48, 177, 176, 0.18);
  box-shadow: 0 20px 50px rgba(6, 214, 196, 0.1);
  padding: 1.15rem;
}

.cbx-dash-mock__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.cbx-dash-kpi {
  text-align: center;
  padding: 0.65rem 0.5rem;
  border-radius: 10px;
  background: var(--cbx-light-soft);
}

.cbx-dash-kpi .bi {
  color: var(--cbx-primary);
  font-size: 1rem;
}

.cbx-dash-kpi strong {
  display: block;
  font-size: 1.25rem;
  color: var(--cbx-dark);
}

.cbx-dash-kpi span {
  font-size: 0.65rem;
  color: var(--cbx-muted);
  font-weight: 600;
}

.cbx-dash-bars {
  margin-bottom: 1rem;
}

.cbx-dash-bar {
  display: grid;
  grid-template-columns: 100px 1fr 28px;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
}

.cbx-dash-bar__track {
  height: 8px;
  border-radius: 999px;
  background: var(--cbx-light);
  overflow: hidden;
}

.cbx-dash-bar__fill {
  height: 100%;
  border-radius: 999px;
  background: var(--cbx-grad-brand-soft);
}

.cbx-dash-bar__fill--low {
  background: linear-gradient(90deg, var(--cbx-coral), #ffb020);
}

.cbx-dash-bar em {
  font-style: normal;
  color: var(--cbx-primary);
  font-weight: 800;
}

.cbx-kanban-mock {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.cbx-kanban-col span {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cbx-muted);
  margin-bottom: 0.35rem;
}

.cbx-kanban-card {
  padding: 0.45rem 0.5rem;
  border-radius: 8px;
  background: var(--cbx-light-soft);
  font-size: 0.68rem;
  font-weight: 600;
  border: 1px solid var(--cbx-light);
}

.cbx-kanban-card--hi {
  background: rgba(6, 214, 196, 0.15);
  border-color: rgba(6, 214, 196, 0.35);
  color: var(--cbx-primary-darker);
}

.cbx-pilot-visual {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.cbx-pilot-visual .cbx-pilot-badge {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
}

.cbx-pilot-visual .cbx-pilot-badge .bi {
  font-size: 1.75rem;
  color: var(--cbx-primary);
}

.cbx-pilot-steps {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
}

.cbx-pilot-step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--cbx-light);
}

.cbx-pilot-step > span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cbx-grad-brand-soft);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cbx-pilot-step strong {
  display: block;
  font-size: 0.78rem;
}

.cbx-pilot-step small {
  font-size: 0.65rem;
  color: var(--cbx-muted);
}

.cbx-final-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0 0.5rem;
}

.cbx-final-icons span {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--cbx-cyan);
}

/* Mobile / portrait — empilha */
@media (max-width: 900px), (max-aspect-ratio: 1/1) {
  .cbx-page__inner--split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cbx-flow-compare {
    grid-template-columns: 1fr;
  }

  .cbx-flow-vs {
    transform: rotate(90deg);
  }

  .cbx-flow-flat,
  .cbx-funnel {
    min-height: auto;
  }

  .cbx-funnel__out {
    width: 68%;
  }

  .cbx-benefit-cards,
  .cbx-icon-tiles {
    grid-template-columns: 1fr;
  }

  .cbx-metric-duo,
  .cbx-pilot-visual,
  .cbx-pilot-steps {
    flex-direction: column;
  }

  .cbx-dash-mock__row,
  .cbx-kanban-mock {
    grid-template-columns: 1fr;
  }

  .cbx-stat-strip {
    flex-direction: column;
  }

  .cbx-check-grid,
  .cbx-problem-grid {
    grid-template-columns: 1fr;
  }

  .cbx-lead-sheet__body--grid {
    grid-template-columns: 1fr;
  }

  .cbx-lead-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .cbx-pilot-badges {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .cbx-doc-scroll {
    scroll-behavior: auto;
  }

  .cbx-deck-hint {
    animation: none;
    display: none;
  }

  .cbx-funnel__dot,
  .cbx-funnel__pulse {
    animation: none;
  }

  .cbx-funnel__item,
  .cbx-funnel__out {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Impressão landscape A4 — opcional */
@media print {
  @page {
    size: A4 landscape;
    margin: 0;
  }

  body.cbx-doc {
    overflow: visible;
    background: white;
  }

  .cbx-deck-progress,
  .cbx-deck-hint {
    display: none !important;
  }

  .cbx-doc-scroll {
    height: auto;
    overflow: visible;
    scroll-snap-type: none;
  }

  .cbx-page {
    width: 297mm;
    height: 210mm;
    min-height: 210mm;
    max-height: 210mm;
    padding: 14mm 18mm;
    page-break-after: always;
    break-after: page;
    page-break-inside: avoid;
  }

  .cbx-page:last-child {
    page-break-after: auto;
  }
}


/* Fontes self-hosted Colibex */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/plus-jakarta-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/plus-jakarta-sans-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/plus-jakarta-sans-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/plus-jakarta-sans-800.woff2') format('woff2');
}

/* Screenshot — proporção natural, sem achatar */
.cbx-screenshot-wrap {
  width: 100%;
  align-self: start;
  flex: 0 0 auto;
  line-height: 0;
}

.cbx-screenshot {
  width: 100%;
  height: auto !important;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
  object-position: top center;
  border-radius: 14px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12);
  display: block;
}

.cbx-page__inner--split.cbx-page__inner--media {
  align-items: start;
}

.cbx-page__inner--split.cbx-page__inner--media .cbx-page__col {
  height: auto;
  align-self: start;
}

.cbx-page__inner--split.cbx-page__inner--media .cbx-page__col:last-child {
  align-self: start;
}

/* Texto + screenshot empilhados — cabe na tela sem achatar */
.cbx-page__inner--media-stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.65rem, 1.5vh, 1.25rem);
  align-items: stretch;
  min-height: 0;
  overflow: hidden;
}

.cbx-page__inner--media-stack .cbx-page__media-copy {
  max-width: 44rem;
  flex-shrink: 0;
}

.cbx-page__inner--media-stack .cbx-screenshot-wrap {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cbx-page__inner--media-stack .cbx-screenshot {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  margin-inline: auto;
  object-fit: contain;
  object-position: center center;
}

/* Frame com aspect-ratio fixo — nunca achata */
.cbx-screenshot-frame {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12);
  overflow: hidden;
  background: #fff;
  line-height: 0;
}

.cbx-page__inner--media-stack .cbx-screenshot-frame {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.cbx-screenshot-frame .cbx-screenshot {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.cbx-page--media .cbx-page__title {
  font-size: clamp(1.65rem, 3.2vw, 2.5rem);
}

.cbx-page--media .cbx-page__lead {
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
}

.cbx-page--media .cbx-check-list {
  margin-top: 0.85rem;
}

.cbx-page--media .cbx-check-list li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
}

/* Slide dedicado — só modelos */
.cbx-page--models .cbx-page__inner {
  justify-content: center;
  gap: clamp(0.65rem, 1.5vh, 1rem);
  min-height: 0;
  overflow: hidden;
}

.cbx-model-grid--deck {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  align-content: center;
}

.cbx-page--models .cbx-page__head-center {
  margin-bottom: 0;
}

.cbx-page--models .cbx-page__title {
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  margin-bottom: 0.35rem;
}

.cbx-page--models .cbx-page__subtitle {
  font-size: clamp(0.95rem, 1.45vw, 1.1rem);
  margin-bottom: 0;
}

.cbx-model-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.cbx-model-grid--deck {
  gap: clamp(0.65rem, 1.4vw, 1rem);
  width: 100%;
}

.cbx-model-thumb {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--cbx-light);
  background: white;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.cbx-model-grid--deck .cbx-model-thumb {
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
}

.cbx-model-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.cbx-model-grid--deck .cbx-model-thumb img {
  aspect-ratio: auto;
}

.cbx-model-thumb span {
  display: block;
  padding: 0.35rem 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-align: center;
  color: var(--cbx-muted);
}

.cbx-model-grid--deck .cbx-model-thumb span {
  padding: 0.45rem 0.5rem;
  font-size: 0.75rem;
}

.cbx-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.cbx-page__cta-btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.cbx-page__cta-btn--secondary:hover {
  color: white;
  background: rgba(255, 255, 255, 0.22);
}

/* Hub /apresentacao */
body.cbx-hub {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background:
    radial-gradient(ellipse 80% 70% at 0% 0%, rgba(37, 99, 235, 0.12), transparent 55%),
    linear-gradient(135deg, #eff6ff 0%, #ffffff 60%);
  color: var(--cbx-dark);
  -webkit-font-smoothing: antialiased;
}

.cbx-hub__wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(2rem, 6vh, 4rem) clamp(1.5rem, 5vw, 3rem);
}

.cbx-hub__logo {
  height: 44px;
  width: auto;
  margin-bottom: 2rem;
}

.cbx-hub__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.cbx-hub__lead {
  color: var(--cbx-muted);
  font-size: 1.05rem;
  margin: 0 0 2rem;
  max-width: 36rem;
}

.cbx-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cbx-hub__card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.35rem;
  border-radius: 16px;
  background: white;
  border: 1px solid var(--cbx-light);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.08);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cbx-hub__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.14);
}

.cbx-hub__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cbx-grad-brand-soft);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.cbx-hub__card strong {
  font-size: 1.05rem;
}

.cbx-hub__card span {
  font-size: 0.85rem;
  color: var(--cbx-muted);
  line-height: 1.45;
}

.cbx-hub__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cbx-primary-darker);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.cbx-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.cbx-flow-trio {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0.75rem;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .cbx-metrics-row,
  .cbx-flow-trio {
    grid-template-columns: 1fr;
  }

  .cbx-flow-trio .cbx-flow-vs {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .cbx-hub__grid,
  .cbx-model-grid,
  .cbx-model-grid--deck {
    grid-template-columns: 1fr;
  }
}
