/* ==== VARIANTE B DA HOME (experimento home_2026) ===================
   Escopo `.home-b-scope`, aplicado JUNTO com `.crm-com-ia-scope` (reuso do
   sistema visual `ia-*`). Só o que é exclusivo da B vive aqui. ==== */
.home-b-scope .hb-h1 {
  max-width: 22ch;
  margin-inline: auto;
}
.home-b-scope .hb-h1-break::after {
  content: "";
}
@media (max-width: 767px) {
  .home-b-scope .hb-h1-break::after {
    content: "\A";
    white-space: pre;
  }
}

/* Mockup do hero — HTML/CSS puro, conteúdo todo no SSR. */
.home-b-scope .hb-mock {
  display: grid;
  gap: 16px;
  text-align: left;
  border: 1px solid var(--ia-border);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, var(--ia-bg-blue));
  box-shadow: 0 32px 70px -44px rgba(0, 48, 160, 0.4);
  padding: 20px;
}
@media (min-width: 900px) {
  .home-b-scope .hb-mock {
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 20px;
    padding: 28px;
  }
}
.home-b-scope .hb-mock-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  border-radius: 18px;
  background-color: #ffffff;
  border: 1px solid var(--ia-border);
  padding: 16px;
}
.home-b-scope .hb-mock-title {
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--ia-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.home-b-scope .hb-bubble {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.45;
  background-color: #f2f4f8;
}
.home-b-scope .hb-bubble b {
  font-size: 11px;
  font-weight: 600;
  color: var(--ia-muted);
}
.home-b-scope .hb-bubble-out {
  background-color: #e7fbef;
  align-self: flex-end;
}
.home-b-scope .hb-mock-tag {
  margin-top: auto;
  font-size: 12px;
  font-weight: 500;
  color: var(--ia-green-ink);
  background-color: rgba(82, 248, 150, 0.18);
  border-radius: 999px;
  padding: 5px 10px;
  align-self: flex-start;
}
.home-b-scope .hb-funnel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.home-b-scope .hb-funnel-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--ia-muted);
  margin-bottom: 6px;
}
.home-b-scope .hb-funnel-slot {
  min-height: 108px;
  border-radius: 12px;
  border: 1px dashed var(--ia-border);
  background-color: #fafbfe;
  padding: 6px;
}
.home-b-scope .hb-deal {
  display: flex;
  flex-direction: column;
  gap: 3px;
  border-radius: 10px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 48, 160, 0.18);
  box-shadow: 0 10px 22px -16px rgba(0, 48, 160, 0.5);
  padding: 8px;
  font-size: 11px;
  line-height: 1.35;
}
.home-b-scope .hb-deal b {
  font-size: 12px;
  color: var(--ia-strong);
}
.home-b-scope .hb-deal-step {
  color: var(--ia-blue);
  font-weight: 500;
}
.home-b-scope .hb-panel-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.home-b-scope .hb-panel-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}
.home-b-scope .hb-panel-row b {
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: 18px;
  color: var(--ia-strong);
}
.home-b-scope .hb-bar {
  height: 8px;
  border-radius: 999px;
  background-color: #eef1f7;
  overflow: hidden;
}
.home-b-scope .hb-bar-fill {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ia-blue), var(--ia-green));
  transform-origin: left center;
  transform: scaleX(1);
}
.home-b-scope .hb-panel-note {
  font-size: 12px;
  color: var(--ia-muted);
}

@keyframes hb-bubble-in {
  0%, 12% { opacity: 0; transform: translateY(8px); }
  26%, 100% { opacity: 1; transform: translateY(0); }
}
@keyframes hb-deal-move {
  0%, 20% { opacity: 0; transform: translate(-24px, 8px) scale(0.98); }
  38%, 78% { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 1; transform: translate(0, 0) scale(1); }
}
@keyframes hb-bar-grow {
  0%, 30% { transform: scaleX(0.18); }
  70%, 100% { transform: scaleX(1); }
}
@media (prefers-reduced-motion: no-preference) {
  .home-b-scope .hb-anim-bubble { animation: hb-bubble-in 7s ease-in-out infinite; }
  .home-b-scope .hb-anim-deal { animation: hb-deal-move 7s ease-in-out infinite; }
  .home-b-scope .hb-anim-bar { animation: hb-bar-grow 7s ease-in-out infinite; }
}

/* 02 · As três portas */
.home-b-scope .hb-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.home-b-scope .hb-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ia-strong);
  background-color: #ffffff;
  border: 1px solid var(--ia-border);
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out,
    transform 180ms ease-out, background-color 180ms ease-out;
}
.home-b-scope .hb-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 48, 160, 0.3);
}
.home-b-scope .hb-tab.is-active {
  background-color: var(--ia-blue);
  border-color: var(--ia-blue);
  color: #ffffff;
}
.home-b-scope .hb-tab-num {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  font-size: 12px;
  background-color: rgba(0, 48, 160, 0.1);
  color: var(--ia-blue);
}
.home-b-scope .hb-tab.is-active .hb-tab-num {
  background-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}
.home-b-scope .hb-painel {
  display: grid;
  gap: 24px;
  margin-top: 32px;
  border-radius: 28px;
  background-color: #ffffff;
  border: 1px solid var(--ia-border);
  box-shadow: 0 30px 64px -48px rgba(27, 29, 42, 0.4);
  padding: 32px 24px;
}
@media (min-width: 960px) {
  .home-b-scope .hb-painel {
    grid-template-columns: minmax(0, 720px) minmax(0, 1fr);
    gap: 48px;
    padding: 48px;
  }
}
.home-b-scope .hb-painel[data-active="false"] {
  display: none;
}
.home-b-scope .hb-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.home-b-scope .hb-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 16px;
  line-height: 1.55;
}
.home-b-scope .hb-bullets svg {
  flex: none;
  margin-top: 3px;
  color: var(--ia-blue);
}
.home-b-scope .hb-horizonte {
  border-left: 3px solid var(--ia-green);
  background-color: rgba(82, 248, 150, 0.08);
  border-radius: 0 14px 14px 0;
  padding: 14px 16px;
  font-size: 15px;
  line-height: 1.55;
}
.home-b-scope .hb-prova {
  margin: 0;
  align-self: start;
  border-radius: 20px;
  background-color: var(--ia-bg-sand);
  padding: 24px;
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.45;
  color: var(--ia-strong);
}
.home-b-scope .hb-prova blockquote {
  margin: 0;
}

/* 03 · Prova social — selos */
.home-b-scope .hb-selos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
/* Respiro entre os logos das plataformas de avaliação e os selos. */
.home-b-scope .hb-selos.mt-\[100px\] {
  margin-top: 100px;
}

.home-b-scope .hb-selos img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .home-b-scope .hb-selos img {
    height: 56px;
  }
}
/* Banner retangular (NEEX): precisa de mais altura para o logotipo ficar legível. */
.home-b-scope .hb-selos img.hb-selo-banner {
  border-radius: 10px;
  height: 60px;
}
@media (min-width: 768px) {
  .home-b-scope .hb-selos img.hb-selo-banner {
    height: 76px;
  }
}
/* KPMG: logotipo escuro precisa virar branco sobre a faixa navy. */
.home-b-scope .hb-selos img.hb-selo-branco {
  filter: brightness(0) invert(1);
}


.home-b-scope .hb-selo-txt {
  font-size: 13px;
  font-weight: 600;
  color: var(--ia-muted);
  border: 1px solid var(--ia-border);
  border-radius: 999px;
  padding: 8px 14px;
}

/* 04 · Cenários em mega-container */
.home-b-scope .hb-panel-mega {
  border-radius: 32px;
  background-color: var(--ia-bg-sand);
  padding: 56px 24px;
}
@media (min-width: 960px) {
  .home-b-scope .hb-panel-mega {
    padding: 80px 64px;
  }
}
.home-b-scope .hb-cenarios {
  display: grid;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 900px) {
  .home-b-scope .hb-cenarios {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.home-b-scope .hb-cenario {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background-color: #ffffff;
  border: 1px solid var(--ia-border);
  border-radius: 20px;
  padding: 28px 24px;
}
.home-b-scope .hb-cenario:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -30px rgba(27, 29, 42, 0.34);
}
.home-b-scope .hb-cenario-title {
  font-size: 22px;
  margin-bottom: 8px;
}
.home-b-scope .hb-cenario-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 12px;
}
.home-b-scope .hb-cenario-label-antes {
  color: var(--ia-coral);
}
.home-b-scope .hb-cenario-label-depois {
  color: var(--ia-blue);
}
.home-b-scope .hb-cenario-text {
  font-size: 15px;
  line-height: 1.6;
}
/* 04b · Pergunta de carteira: seção própria em duas colunas */
.home-b-scope .hb-pergunta-sec {
  padding-block: clamp(80px, 10vw, 140px);
}
.home-b-scope .hb-pergunta-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 960px) {
  .home-b-scope .hb-pergunta-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 64px;
  }
  /* Texto à esquerda, imagem à direita (no mobile a imagem segue em cima). */
  .home-b-scope .hb-pergunta-txt-col {
    order: 1;
  }
  .home-b-scope .hb-pergunta-foto {
    order: 2;
  }
}

.home-b-scope .hb-pergunta-foto {
  margin: 0;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--ia-border);
  box-shadow: 0 32px 70px -38px rgba(7, 21, 41, 0.45);
  background: var(--ia-bg-blue, #f9f9fe);
}
.home-b-scope .hb-pergunta-foto img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.home-b-scope .hb-pergunta-txt {
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ia-strong);
  max-width: 26ch;
}
@media (max-width: 959px) {
  .home-b-scope .hb-pergunta-txt {
    max-width: 100%;
  }
}

/* 04½ · Manifesto escuro */
.home-b-scope .hb-manifesto {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background: linear-gradient(180deg, var(--int-black), var(--int-navy-900) 55%, var(--int-navy-800));
  color: var(--int-offwhite);
  padding-block: 120px;
}
@media (max-width: 767px) {
  .home-b-scope .hb-manifesto {
    padding-block: 72px;
  }
}
.home-b-scope .hb-manifesto > .ia-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.home-b-scope .hb-manifesto-display {
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: clamp(40px, 7vw, 84px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #ffffff;
}
.home-b-scope .hb-manifesto-p {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--int-secondary);
  max-width: 720px;
}
.home-b-scope .hb-manifesto-fecho {
  margin-top: 40px;
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  color: var(--ia-green);
}

/* 05 · Depoimentos */
.home-b-scope .hb-depo-grid {
  display: grid;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 700px) {
  .home-b-scope .hb-depo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .home-b-scope .hb-depo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.home-b-scope .hb-depo {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: #ffffff;
  border: 1px solid var(--ia-border);
  border-radius: 22px;
  padding: 24px;
}
.home-b-scope .hb-depo:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -30px rgba(0, 48, 160, 0.3);
}
.home-b-scope .hb-depo-tag {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ia-blue);
  background-color: var(--ia-blue-soft);
  border-radius: 999px;
  padding: 6px 12px;
}
.home-b-scope .hb-depo-media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(140deg, var(--ia-bg-blue), var(--ia-bg-sand));
  display: grid;
  place-items: center;
}
.home-b-scope .hb-depo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-b-scope .hb-depo-mono {
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: 40px;
  font-weight: 500;
  color: rgba(0, 48, 160, 0.35);
  letter-spacing: 0.02em;
}
.home-b-scope .hb-depo-quote {
  margin: 0;
  margin-top: auto;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ia-strong);
}
.home-b-scope .hb-depo-autor {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  color: var(--ia-muted);
}
.home-b-scope .hb-depo-autor b {
  font-size: 14px;
  color: var(--ia-strong);
}

/* 06 · A escada de planos — 5 degraus subindo da esquerda para a direita */
.home-b-scope .hb-stair {
  display: grid;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
/* Escada deslocada 50px além do mt-14 padrão, para afastar o degrau Intelligence do texto acima. */
.home-b-scope .hb-stair-lower {
  margin-top: 106px;
}

.home-b-scope .hb-stair-step {
  display: flex;
  flex-direction: column;
}
.home-b-scope .hb-stair-base {
  display: none;
}
.home-b-scope .hb-stair-card {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  background-color: #ffffff;
  border: 1px solid var(--ia-border);
  border-radius: 20px;
  padding: 24px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.home-b-scope .hb-stair-step:hover .hb-stair-card {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -30px rgba(27, 29, 42, 0.35);
}
.home-b-scope .hb-stair-nivel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ia-muted);
}
.home-b-scope .hb-stair-nivel span {
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  color: var(--ia-blue);
  background-color: var(--ia-blue-soft);
  border-radius: 999px;
  padding: 3px 9px;
  letter-spacing: 0;
}
.home-b-scope .hb-stair-nome {
  font-size: 20px;
  line-height: 1.25;
}
.home-b-scope .hb-stair-preco {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: 30px;
  color: var(--ia-strong);
}
.home-b-scope .hb-stair-preco span {
  font-family: "Inter", "Inter Fallback", system-ui, sans-serif;
  font-size: 13px;
  color: var(--ia-muted);
}
.home-b-scope .hb-stair-para {
  font-size: 14px;
  font-weight: 500;
  color: var(--ia-strong);
}
.home-b-scope .hb-stair-recursos {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ia-muted);
  padding-bottom: 10px;
}
.home-b-scope .hb-stair-extra {
  margin-top: 12px;
  font-size: 13px;
}

/* Degrau Intelligence — paleta tech-noir */
.home-b-scope .hb-stair-step.is-intel .hb-stair-card {
  background: linear-gradient(160deg, var(--int-navy-900), var(--int-navy-800));
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--int-offwhite);
  box-shadow: 0 30px 60px -40px rgba(4, 8, 28, 0.8);
}
.home-b-scope .hb-stair-step.is-intel .hb-stair-nivel {
  color: var(--int-accent-light);
}
.home-b-scope .hb-stair-step.is-intel .hb-stair-nivel span {
  color: var(--int-offwhite);
  background-color: rgba(255, 255, 255, 0.12);
}
.home-b-scope .hb-stair-step.is-intel .hb-stair-nome {
  color: #ffffff;
}
.home-b-scope .hb-stair-step.is-intel .hb-stair-preco {
  color: var(--ia-green);
  font-size: 24px;
}
.home-b-scope .hb-stair-step.is-intel .hb-stair-preco span,
.home-b-scope .hb-stair-step.is-intel .hb-stair-recursos {
  color: var(--int-secondary);
}
.home-b-scope .hb-stair-step.is-intel .hb-stair-para {
  color: var(--int-offwhite);
}
.home-b-scope .hb-stair-step.is-intel .hb-stair-extra {
  color: var(--int-accent-light);
}

@media (min-width: 700px) {
  .home-b-scope .hb-stair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Metáfora da escada: só a partir do desktop, onde os 5 degraus cabem lado a lado. */
@media (min-width: 1100px) {
  .home-b-scope .hb-stair {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    align-items: end;
  }
  .home-b-scope .hb-stair-step {
    justify-content: flex-end;
  }
  .home-b-scope .hb-stair-base {
    display: block;
    height: calc(var(--step, 0) * 34px);
    margin-top: -14px;
    border-radius: 0 0 20px 20px;
    background: linear-gradient(
      180deg,
      color-mix(in oklab, var(--ia-blue) 14%, transparent),
      transparent
    );
    border-left: 1px solid var(--ia-border);
    border-right: 1px solid var(--ia-border);
    border-bottom: 1px solid var(--ia-border);
  }
  .home-b-scope .hb-stair-step.is-intel .hb-stair-base {
    background: linear-gradient(180deg, var(--int-navy-800), transparent);
    border-color: rgba(255, 255, 255, 0.14);
  }
  .home-b-scope .hb-stair-card {
    padding: 20px 18px;
    gap: 6px;
  }
  .home-b-scope .hb-stair-nome {
    font-size: 18px;
  }
  .home-b-scope .hb-stair-preco {
    font-size: 26px;
  }
  .home-b-scope .hb-stair-step.is-intel .hb-stair-preco {
    font-size: 21px;
  }
  .home-b-scope .hb-stair-nivel {
    font-size: 11px;
  }
}
@media (min-width: 700px) {
  .home-b-scope .hb-escada {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .home-b-scope .hb-escada {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
/* content-visibility abaixo da dobra (mesmo padrão do `.ia-cv-*`) */
.home-b-scope .hb-cv-media { content-visibility: auto; contain-intrinsic-size: auto 900px; }
.home-b-scope .hb-cv-alta { content-visibility: auto; contain-intrinsic-size: auto 1200px; }

@media (prefers-reduced-motion: reduce) {
  .home-b-scope .hb-anim-bubble,
  .home-b-scope .hb-anim-deal,
  .home-b-scope .hb-anim-bar {
    animation: none !important;
  }
  .home-b-scope .hb-cenario:hover,
  .home-b-scope .hb-depo:hover,
  .home-b-scope .hb-tab:hover {
    transform: none;
  }
}

/* ══════════════════════════════════════════════════════════════════════════
   HOME · VARIANTE B — Rodada 2 (seções 07–18)
   Mesmo escopo `.home-b-scope` (aplicado junto de `.crm-com-ia-scope`).
   ══════════════════════════════════════════════════════════════════════════ */

/* 07 · A jornada */
.home-b-scope .hb-jornada {
  display: grid;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: none;
}
@media (min-width: 900px) {
  .home-b-scope .hb-jornada {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .home-b-scope .hb-etapa.is-destaque {
    grid-column: span 2;
  }
}
.home-b-scope .hb-etapa {
  position: relative;
  background-color: #ffffff;
  border: 1px solid var(--ia-border);
  border-radius: 20px;
  padding: 24px 22px;
}
.home-b-scope .hb-etapa::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background-color: var(--ia-blue-soft);
}
.home-b-scope .hb-etapa.is-destaque {
  background: linear-gradient(140deg, var(--int-navy-900), var(--int-navy-800));
  border-color: transparent;
  color: var(--int-offwhite);
}
.home-b-scope .hb-etapa.is-destaque::before {
  background-color: var(--ia-green);
}
.home-b-scope .hb-etapa-marca {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background-color: var(--ia-blue-soft);
  color: var(--ia-blue);
  font-size: 13px;
  font-weight: 700;
}
.home-b-scope .hb-etapa.is-destaque .hb-etapa-marca {
  background-color: rgba(82, 248, 150, 0.16);
  color: var(--ia-green);
}
.home-b-scope .hb-etapa-nome {
  margin-top: 12px;
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ia-strong);
}
.home-b-scope .hb-etapa.is-destaque .hb-etapa-nome {
  color: #ffffff;
  font-size: 26px;
}
.home-b-scope .hb-etapa-kicker {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ia-green);
}
.home-b-scope .hb-etapa-texto {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.6;
}
.home-b-scope .hb-etapa.is-destaque .hb-etapa-texto {
  color: var(--int-secondary);
  font-size: 16px;
}
.home-b-scope .hb-cta-dupla {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* 08 · Ecossistema */
.home-b-scope .hb-eco-painel {
  display: grid;
  gap: 28px;
  margin-top: 28px;
  border-radius: 24px;
  background-color: #ffffff;
  border: 1px solid var(--ia-border);
  padding: 32px 24px;
}
@media (min-width: 960px) {
  .home-b-scope .hb-eco-painel {
    grid-template-columns: minmax(0, 1fr);
    padding: 44px 48px;
  }
  .home-b-scope .hb-eco-painel.is-noir {
    grid-template-columns: minmax(0, 1fr) 220px;
    align-items: center;
  }
}
.home-b-scope .hb-eco-painel[data-active="false"] {
  display: none;
}
.home-b-scope .hb-eco-painel.is-noir {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background:
    radial-gradient(60% 80% at 85% 20%, rgba(82, 248, 150, 0.14), transparent 70%),
    radial-gradient(70% 90% at 10% 90%, rgba(0, 48, 160, 0.35), transparent 70%),
    linear-gradient(160deg, #071529, var(--int-navy-900));
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--int-offwhite);
}
.home-b-scope .hb-eco-painel.is-noir .ia-h3 {
  color: #ffffff;
}
.home-b-scope .hb-eco-painel.is-noir .ia-prose {
  color: var(--int-secondary);
}
.home-b-scope .hb-eco-painel.is-noir .ia-link {
  color: var(--int-accent-light);
}
.home-b-scope .hb-eco-fato {
  border-left: 3px solid var(--ia-green);
  padding-left: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--int-secondary);
}
.home-b-scope .hb-eco-crave {
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ia-green);
  max-width: 34ch;
}
.home-b-scope .hb-eco-ava {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px) saturate(140%);
  padding: 22px 18px;
  text-align: center;
}
.home-b-scope .hb-eco-ava img {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
}
.home-b-scope .hb-eco-ava figcaption {
  font-size: 12px;
  line-height: 1.4;
  color: var(--int-secondary);
}

/* 09 · ERP */
/* Título em duas linhas com 50px de respiro entre as partes */
.home-b-scope .hb-erp-h2 {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.home-b-scope .hb-erp-h2-l1 {
  display: block;
  white-space: nowrap;
}
@media (max-width: 860px) {
  .home-b-scope .hb-erp-h2 {
    gap: 28px;
  }
  .home-b-scope .hb-erp-h2-l1 {
    white-space: normal;
  }
}
.home-b-scope .hb-erp-marquee .ia-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.home-b-scope .hb-erp-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 34px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.home-b-scope .hb-erp-logos img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
}
.home-b-scope .hb-erp-logo-txt {
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: 18px;
  color: var(--ia-muted);
}
.home-b-scope .hb-erp-caminhos {
  display: grid;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 700px) {
  .home-b-scope .hb-erp-caminhos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .home-b-scope .hb-erp-caminhos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.home-b-scope .hb-erp-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #ffffff;
  border: 1px solid var(--ia-border);
  border-radius: 20px;
  padding: 24px 22px;
  color: var(--ia-blue);
}
.home-b-scope .hb-erp-card-title {
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ia-strong);
}
.home-b-scope .hb-erp-card-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ia-body);
}

/* 11 · Segmentos — cabeçalho + carrossel COMPARTILHADO (tema claro).
   O carrossel é o mesmo componente da /produtos/crm-com-ia. */
.home-b-scope .hb-segmentos-wrap {
  padding-bottom: 0;
}
.home-b-scope .hb-segmentos-wrap .ia-segmentos {
  padding-top: 40px;
}

/* 12 · Segurança */
.home-b-scope .hb-seguranca {
  display: grid;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 700px) {
  .home-b-scope .hb-seguranca {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .home-b-scope .hb-seguranca {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.home-b-scope .hb-seguranca-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background-color: var(--ia-bg-sand);
  border-radius: 16px;
  padding: 18px 20px;
  font-size: 15px;
  line-height: 1.55;
}
.home-b-scope .hb-seguranca-item svg {
  flex: none;
  margin-top: 2px;
  color: var(--ia-blue);
}
.home-b-scope .hb-seguranca-fecho {
  text-align: center;
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.25;
  color: var(--ia-strong);
  max-width: 30ch;
  margin-inline: auto;
}

/* 13 · Números (escuro) */
.home-b-scope .hb-numeros {
  background: linear-gradient(180deg, var(--int-navy-900), var(--int-black));
  color: var(--int-offwhite);
  padding-block: 112px;
}
@media (max-width: 767px) {
  .home-b-scope .hb-numeros {
    padding-block: 64px;
  }
}
.home-b-scope .hb-numeros-h2 {
  color: #ffffff;
}
.home-b-scope .hb-numeros-grid {
  display: grid;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 700px) {
  .home-b-scope .hb-numeros-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .home-b-scope .hb-numeros-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.home-b-scope .hb-num {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 20px;
}
.home-b-scope .hb-num-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ia-green);
  background-color: rgba(82, 248, 150, 0.12);
  border-radius: 999px;
  padding: 5px 10px;
}
.home-b-scope .hb-num-valor {
  margin-top: 14px;
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-wrap: balance;
}
.home-b-scope .hb-num-texto {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--int-secondary);
}

/* 15 · Suporte — painel do número-herói + canais/métricas */
.home-b-scope .hb-sup {
  display: grid;
  gap: 20px;
}
@media (min-width: 960px) {
  .home-b-scope .hb-sup {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 24px;
    align-items: stretch;
  }
}
.home-b-scope .hb-sup-hero {
  background-color: #ffffff;
  border: 1px solid var(--ia-border);
  border-radius: 26px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
@media (max-width: 767px) {
  .home-b-scope .hb-sup-hero {
    padding: 28px 22px;
  }
}
.home-b-scope .hb-sup-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ia-muted);
}
.home-b-scope .hb-sup-tag svg {
  color: var(--ia-blue);
}
.home-b-scope .hb-sup-num {
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ia-blue);
}
.home-b-scope .hb-sup-num-legenda {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ia-body);
  max-width: 42ch;
}
.home-b-scope .hb-sup-selo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid var(--ia-border);
  background-color: var(--ia-bg-blue);
  padding: 10px 16px;
  font-size: 14px;
  color: var(--ia-strong);
}
.home-b-scope .hb-sup-selo svg {
  color: var(--ia-blue);
}
.home-b-scope .hb-sup-lado {
  display: grid;
  gap: 20px;
  align-content: start;
}
.home-b-scope .hb-sup-canais,
.home-b-scope .hb-sup-metricas {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
@media (min-width: 560px) {
  .home-b-scope .hb-sup-canais {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-b-scope .hb-sup-metricas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.home-b-scope .hb-sup-canais li {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #ffffff;
  border: 1px solid var(--ia-border);
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ia-strong);
}
.home-b-scope .hb-sup-canais svg {
  flex: none;
  color: var(--ia-blue);
}
.home-b-scope .hb-sup-metricas li {
  background-color: var(--ia-bg-blue);
  border: 1px solid var(--ia-border);
  border-radius: 18px;
  padding: 22px 20px;
}
.home-b-scope .hb-sup-metrica-valor {
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ia-strong);
}
.home-b-scope .hb-sup-metrica-texto {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ia-body);
}

/* 16 · Conhecimento */
.home-b-scope .hb-conhecimento {
  display: grid;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 700px) {
  .home-b-scope .hb-conhecimento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .home-b-scope .hb-conhecimento {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.home-b-scope .hb-conhecimento-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--ia-bg-sand);
  border-radius: 20px;
  padding: 26px 22px;
}
.home-b-scope .hb-conhecimento-nome {
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--ia-strong);
}
.home-b-scope .hb-conhecimento-texto {
  font-size: 15px;
  line-height: 1.6;
}

/* 17 · FAQ */
.home-b-scope .hb-faq-painel {
  max-width: 820px;
  margin-inline: auto;
  margin-top: 28px;
}
.home-b-scope .hb-faq-painel[data-active="false"] {
  display: none;
}
.home-b-scope .hb-faq-item {
  border-bottom: 1px solid var(--ia-border);
  padding: 18px 0;
}
.home-b-scope .hb-faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.35;
  color: var(--ia-strong);
}
.home-b-scope .hb-faq-item summary::-webkit-details-marker {
  display: none;
}
.home-b-scope .hb-faq-item summary::after {
  content: "+";
  float: right;
  margin-left: 16px;
  color: var(--ia-blue);
  font-size: 22px;
  line-height: 1;
}
.home-b-scope .hb-faq-item[open] summary::after {
  content: "–";
}
.home-b-scope .hb-faq-item p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ia-body);
  max-width: 68ch;
}

/* 18 · CTA final */
.home-b-scope .hb-cta-painel {
  position: relative;
  isolation: isolate;
  overflow: clip;
  border-radius: 32px;
  padding: 72px 24px;
  text-align: center;
  color: var(--int-offwhite);
  background:
    radial-gradient(60% 70% at 80% 10%, rgba(82, 248, 150, 0.18), transparent 70%),
    linear-gradient(140deg, #071529 0%, #0b1c3d 40%, #2c1c6b 78%, #0f2a4d 100%);
}
@media (min-width: 960px) {
  .home-b-scope .hb-cta-painel {
    padding: 104px 72px;
  }
}
.home-b-scope .hb-cta-h2 {
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: clamp(34px, 5.4vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  max-width: 22ch;
  margin-inline: auto;
}
.home-b-scope .hb-cta-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--int-secondary);
  max-width: 62ch;
  margin-inline: auto;
}
.home-b-scope .hb-cta-cards {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-inline: auto;
}
@media (min-width: 760px) {
  .home-b-scope .hb-cta-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.home-b-scope .hb-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-color: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px) saturate(140%);
  padding: 28px 22px;
}
.home-b-scope .hb-cta-ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}
.home-b-scope .hb-cta-ghost:hover {
  background-color: rgba(255, 255, 255, 0.12);
}
.home-b-scope .hb-cta-micro {
  font-size: 13px;
  line-height: 1.5;
  color: var(--int-secondary);
  max-width: 30ch;
}
.home-b-scope .hb-cta-assinatura {
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .home-b-scope .hb-erp-card:hover,
  .home-b-scope .hb-seg:hover,
  .home-b-scope .hb-materia:hover,
  .home-b-scope .hb-conhecimento-card:hover {
    transform: none;
  }
}

/* Rodada 3 — FAQ: pergunta como H3 sem alterar o visual do summary. */
.home-b-scope .hb-faq-item > summary > .hb-faq-q {
  display: inline;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
}
.home-b-scope .hb-faq-item > summary:focus-visible,
.home-b-scope .hb-tab:focus-visible {
  outline: 2px solid var(--ia-blue, #0030a0);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ══════════════════════════════════════════════════════════════════════════
   HOME · VARIANTE B, rodada de ajustes finos
   (vídeos com facade, prova social consolidada, mockup na aba de gestão)
   ══════════════════════════════════════════════════════════════════════════ */

/* Aba do Ecossistema em duas colunas: texto + mockup animado. */
@media (min-width: 960px) {
  .home-b-scope .hb-eco-painel.is-duplo {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
  }
}
.home-b-scope .hb-eco-visual {
  min-width: 0;
}
.home-b-scope .hb-eco-visual .hb-mock {
  padding: 16px;
  border-radius: 22px;
}
@media (min-width: 960px) {
  .home-b-scope .hb-eco-visual .hb-mock {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 20px;
  }
}

/* 01b · Vídeos: carrossel único (embla) com cards 16/9 e 9/16 no mesmo trilho */
.home-b-scope .hb-carrossel {
  position: relative;
}
.home-b-scope .hb-carrossel-vp {
  overflow: hidden;
  border-radius: 20px;
}
.home-b-scope .hb-carrossel-trilho {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  backface-visibility: hidden;
}
.home-b-scope .hb-vslide {
  flex: 0 0 auto;
  min-width: 0;
  width: min(86vw, 520px);
}
.home-b-scope .hb-vslide.is-vertical {
  width: min(52vw, 240px);
}
.home-b-scope .hb-vcard {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--ia-border);
  border-radius: 20px;
  background: var(--ia-bg-blue);
  cursor: pointer;
  padding: 0;
}
.home-b-scope .hb-vslide.is-vertical .hb-vcard {
  aspect-ratio: 9 / 16;
}
.home-b-scope .hb-vcard-capa {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-b-scope .hb-vcard-capa-gradiente {
  background:
    radial-gradient(70% 60% at 30% 15%, rgba(82, 248, 150, 0.25), transparent 70%),
    linear-gradient(160deg, #0030a0, #071529);
}
.home-b-scope .hb-vcard-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--ia-coral, #ec6783);
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.45);
}
.home-b-scope .hb-vcard::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(7, 21, 41, 0), rgba(7, 21, 41, 0.82));
  pointer-events: none;
}
.home-b-scope .hb-vcard-rotulo {

  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  text-align: left;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(7, 21, 41, 0.75);
}
.home-b-scope .hb-carrossel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}
.home-b-scope .hb-carrossel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--ia-border);
  background: #ffffff;
  color: var(--ia-strong);
  cursor: pointer;
}
.home-b-scope .hb-carrossel-btn:hover {
  border-color: var(--ia-blue, #332de6);
}

/* Lightbox de vídeo */
.home-b-scope .hb-lb {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
}
.home-b-scope .hb-lb-bg {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 41, 0.78);
}
.home-b-scope .hb-lb-card {
  position: relative;
  width: min(960px, 100%);
}
.home-b-scope .hb-lb-card.is-vertical {
  width: min(420px, 100%);
}
.home-b-scope .hb-lb-frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 18px;
  background: #000000;
}
.home-b-scope .hb-lb-card.is-vertical .hb-lb-frame {
  aspect-ratio: 9 / 16;
  max-height: 84vh;
  background: #ffffff;
}
.home-b-scope .hb-lb-x {
  position: absolute;
  top: -52px;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
}

/* Ecossistema reconstruído: título em 2 linhas, tabs, slider de cards */
.home-b-scope .hb-eco-mega {
  transition: background-color 0.3s ease, color 0.3s ease;
}
.home-b-scope .hb-eco-mega.is-noir {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background:
    radial-gradient(60% 80% at 85% 15%, rgba(82, 248, 150, 0.12), transparent 70%),
    radial-gradient(70% 90% at 8% 92%, rgba(0, 48, 160, 0.32), transparent 70%),
    linear-gradient(160deg, #071529, var(--int-navy-900));
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--int-offwhite);
}
.home-b-scope .hb-eco-mega.is-noir .ia-h2,
.home-b-scope .hb-eco-mega.is-noir .ia-h3 {
  color: #ffffff;
}
.home-b-scope .hb-eco-mega.is-noir .ia-prose,
.home-b-scope .hb-eco-mega.is-noir .hb-eco-topicos li,
.home-b-scope .hb-eco-mega.is-noir .hb-eco-h2-2 {
  color: var(--int-secondary);
}
.home-b-scope .hb-eco-mega.is-noir .ia-link {
  color: var(--int-accent-light);
}
.home-b-scope .hb-eco-mega.is-noir .hb-tab {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--int-offwhite);
}
.home-b-scope .hb-eco-mega.is-noir .hb-tab.is-active {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(82, 248, 150, 0.5);
  color: #ffffff;
}
.home-b-scope .hb-eco-mega.is-noir .hb-carrossel-btn {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}
.home-b-scope .hb-eco-h2 {
  display: grid;
  gap: 10px;
}
.home-b-scope .hb-eco-h2-1 {
  display: block;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.08;
}
.home-b-scope .hb-eco-h2-2 {
  display: block;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.45;
  font-weight: 400;
  color: var(--ia-muted);
  max-width: 46ch;
  margin: 0 auto;
}
.home-b-scope .hb-eco-tema {
  margin-top: 28px;
}
.home-b-scope .hb-eco-tema[data-active="false"] {
  display: none;
}
.home-b-scope .hb-eco-slide {
  flex: 0 0 100%;
  min-width: 0;
}
.home-b-scope .hb-eco-card {
  display: grid;
  gap: 24px;
  align-items: center;
  border-radius: 22px;
  border: 1px solid var(--ia-border);
  background: #ffffff;
  padding: 26px 22px;
}
.home-b-scope .hb-eco-mega.is-noir .hb-eco-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px) saturate(140%);
}
@media (min-width: 960px) {
  .home-b-scope .hb-eco-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    padding: 38px 40px;
    gap: 40px;
  }
}
.home-b-scope .hb-eco-card-txt,
.home-b-scope .hb-eco-card-visual {
  min-width: 0;
}
.home-b-scope .hb-eco-chip {
  display: inline-block;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(51, 45, 230, 0.08);
  color: #332de6;
}
.home-b-scope .hb-eco-mega.is-noir .hb-eco-chip {
  background: rgba(82, 248, 150, 0.14);
  color: var(--int-accent-light, #51ff91);
}
.home-b-scope .hb-eco-tagline {
  font-size: 15px;
  font-weight: 600;
  color: var(--ia-muted);
}
.home-b-scope .hb-eco-topicos {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-b-scope .hb-eco-topicos li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ia-body, #4d5163);
}
.home-b-scope .hb-eco-topicos li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #332de6;
}
.home-b-scope .hb-eco-mega.is-noir .hb-eco-topicos li::before {
  background: var(--int-accent-light, #51ff91);
}
.home-b-scope .hb-eco-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--ia-border);
  box-shadow: 0 24px 60px -34px rgba(7, 21, 41, 0.45);
}
.home-b-scope .hb-eco-mega.is-noir .hb-eco-img {
  border-color: rgba(255, 255, 255, 0.14);
}
.home-b-scope .hb-eco-glass {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-b-scope .hb-eco-glass li {
  border-radius: 14px;
  border: 1px solid var(--ia-border);
  background: linear-gradient(180deg, #ffffff, var(--ia-bg-blue, #f9f9fe));
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 500;
  color: var(--ia-strong);
  box-shadow: 0 14px 34px -26px rgba(7, 21, 41, 0.4);
}
.home-b-scope .hb-eco-mega.is-noir .hb-eco-glass li {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  backdrop-filter: blur(10px);
}
.home-b-scope .hb-eco-controles {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}
.home-b-scope .hb-eco-dots {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-b-scope .hb-eco-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(100, 105, 129, 0.35);
}
.home-b-scope .hb-eco-dot.is-active {
  background: #332de6;
  width: 22px;
}
.home-b-scope .hb-eco-mega.is-noir .hb-eco-dot.is-active {
  background: var(--int-accent-light, #51ff91);
}
.home-b-scope .cv-auto {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}


/* ══════════════════════════════════════════════════════════════════════════
   HOME · VARIANTE B — Rodada 4 (portas repaginadas, tabela de cenários)
   ══════════════════════════════════════════════════════════════════════════ */

/* 02 · Título em 3 linhas */
.home-b-scope .hb-portas-h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-b-scope .hb-portas-l2 {
  font-weight: 400;
  color: var(--ia-text);
}
.home-b-scope .hb-portas-l3 {
  margin-top: 14px;
  font-size: 0.62em;
  color: var(--ia-blue);
}

/* 02 · Painéis com visual */
.home-b-scope .hb-painel-imagem-direita,
.home-b-scope .hb-painel-video-esquerda,
.home-b-scope .hb-painel-diagrama-noir {
  align-items: center;
}
@media (min-width: 960px) {
  .home-b-scope .hb-painel-imagem-direita,
  .home-b-scope .hb-painel-diagrama-noir {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
  .home-b-scope .hb-painel-video-esquerda {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }
  .home-b-scope .hb-painel-video-esquerda .hb-painel-texto {
    order: 2;
  }
  .home-b-scope .hb-painel-video-esquerda .hb-painel-visual {
    order: 1;
  }
}
.home-b-scope .hb-porta-midia {
  margin: 0;
  width: 100%;
}
.home-b-scope .hb-porta-midia img,
.home-b-scope .hb-porta-midia video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid var(--ia-border);
  background-color: var(--ia-bg-alt);
  box-shadow: 0 30px 60px -40px rgba(27, 29, 42, 0.45);
}
.home-b-scope .hb-porta-midia-video {
  aspect-ratio: 16 / 9;
}
.home-b-scope .hb-porta-midia-img {
  max-width: 500px;
  margin-inline: auto;
}
.home-b-scope .hb-midia-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  border: 1px dashed var(--ia-border);
  background-color: var(--ia-bg-tint);
  color: var(--ia-muted);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.home-b-scope .hb-porta-midia-img .hb-midia-fallback {
  aspect-ratio: 500 / 493;
}

/* 02 · Porta 3 — identidade Agendor Intelligence (tech-noir) */
.home-b-scope .hb-painel-diagrama-noir {
  position: relative;
  isolation: isolate;
  overflow: clip;
  background:
    radial-gradient(60% 80% at 88% 12%, rgba(82, 248, 150, 0.14), transparent 70%),
    radial-gradient(70% 90% at 8% 92%, rgba(0, 48, 160, 0.38), transparent 70%),
    linear-gradient(160deg, #071529, var(--int-navy-900, #050f1e));
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--int-offwhite, #eef2f8);
}
.home-b-scope .hb-painel-diagrama-noir .ia-h3 {
  color: #ffffff;
}
.home-b-scope .hb-painel-diagrama-noir .ia-prose,
.home-b-scope .hb-painel-diagrama-noir .hb-bullets li,
.home-b-scope .hb-painel-diagrama-noir .ia-micro {
  color: var(--int-secondary, #b9c4d4);
}
.home-b-scope .hb-painel-diagrama-noir .hb-bullets svg {
  color: var(--ia-green);
}
.home-b-scope .hb-porta-apoio {
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-style: italic;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.3;
  color: var(--ia-green);
}

/* 02 · Diagrama do Intelligence */
.home-b-scope .hb-diag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.home-b-scope .hb-diag-orbita {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.home-b-scope .hb-diag-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px) saturate(140%);
  padding: 16px 14px;
  text-align: center;
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.35;
  color: #ffffff;
}
.home-b-scope .hb-diag-seta {
  position: relative;
  width: 2px;
  height: 46px;
  margin: 0;
  background: linear-gradient(180deg, rgba(82, 248, 150, 0.15), rgba(82, 248, 150, 0.85));
  box-shadow: 0 0 14px rgba(82, 248, 150, 0.5);
}
.home-b-scope .hb-diag-seta span {
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 9px;
  height: 9px;
  translate: -50% 0;
  rotate: 45deg;
  border-right: 2px solid rgba(82, 248, 150, 0.9);
  border-bottom: 2px solid rgba(82, 248, 150, 0.9);
}
.home-b-scope .hb-diag-centro {
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(82, 248, 150, 0.4);
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(82, 248, 150, 0.18), transparent 70%),
    rgba(0, 48, 160, 0.35);
  box-shadow: 0 0 40px -12px rgba(82, 248, 150, 0.45);
  padding: 18px 34px;
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  color: #ffffff;
}

/* Variação azul do marca-texto (mesmo efeito do .ia-mark verde) */
.home-b-scope .ia-mark-azul::after {
  background-color: var(--ia-blue);
}

/* 01b · Vídeos: carrossel com slide central grande e vizinhos espiando */
.home-b-scope .hb-vcarr {
  position: relative;
}
.home-b-scope .hb-vcarr-vp {
  overflow: hidden;
  padding: 4px 0;
  /* Largura real da tela (o wrapper já está fora do container), sem 100vw
     para não brigar com a barra de scroll. */
  width: 100%;
}

.home-b-scope .hb-vcarr-trilho {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  backface-visibility: hidden;
}
.home-b-scope .hb-vcarr-slide {
  flex: 0 0 84vw;
  min-width: 0;
  opacity: 0.55;
  transform: scale(0.94);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.home-b-scope .hb-vcarr-slide.is-ativo {
  opacity: 1;
  transform: scale(1);
}
@media (min-width: 768px) {
  .home-b-scope .hb-vcarr-slide {
    flex: 0 0 min(608px, 74vw);
  }
}
@media (min-width: 1100px) {
  .home-b-scope .hb-vcarr-slide {
    flex: 0 0 min(544px, 66vw);
  }
}


.home-b-scope .hb-vcarr-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 100px;
}


/* 04 · Seção de cenários: fundo claro, sem caixa areia */
.home-b-scope .hb-cenarios-sec {
  background-color: var(--ia-bg-tint);
}
.home-b-scope .hb-panel-flat {
  background: transparent;
  padding: 0;
}

/* 04 · Tabela de cenários */
.home-b-scope .hb-tabela-wrap {
  border-radius: 24px;
  background-color: #ffffff;
  border: 1px solid var(--ia-border);
  overflow: hidden;
  box-shadow: 0 24px 60px -40px rgba(7, 21, 41, 0.28);
}
.home-b-scope .hb-tabela {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 15px;
  line-height: 1.65;
}
.home-b-scope .hb-tabela thead th {
  background-color: #ffffff;
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ia-muted);
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--ia-border);
}
.home-b-scope .hb-tabela thead th.hb-th-depois {
  color: var(--ia-blue);
  background-color: var(--ia-bg-tint);
  border-top: 3px solid var(--ia-blue);
}
.home-b-scope .hb-tabela tbody th {
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ia-strong);
  vertical-align: top;
  padding: 24px 22px;
  width: 26%;
}
.home-b-scope .hb-tabela tbody td {
  vertical-align: top;
  padding: 24px 22px;
  color: var(--ia-text);
}
.home-b-scope .hb-tabela tbody tr + tr th,
.home-b-scope .hb-tabela tbody tr + tr td {
  border-top: 1px solid var(--ia-border);
}
.home-b-scope .hb-tabela .hb-td-antes {
  color: var(--ia-muted);
}
.home-b-scope .hb-tabela .hb-td-depois {
  background-color: var(--ia-bg-tint);
}
.home-b-scope .hb-td-depois .hb-td-txt {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 12px;
}
.home-b-scope .hb-td-check {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--ia-green-ink);
}
.home-b-scope .hb-chip {
  display: inline-block;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.home-b-scope .hb-chip-crm {
  background-color: var(--ia-blue);
  color: #ffffff;
}
.home-b-scope .hb-chip-intelligence {
  background-color: #071529;
  color: var(--ia-green);
  border: 1px solid rgba(82, 248, 150, 0.4);
}

/* Reflow em cards no mobile, sem trocar a semântica da tabela */
@media (max-width: 767px) {
  .home-b-scope .hb-tabela-wrap {
    border: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }
  .home-b-scope .hb-tabela thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .home-b-scope .hb-tabela,
  .home-b-scope .hb-tabela tbody,
  .home-b-scope .hb-tabela tr,
  .home-b-scope .hb-tabela tbody th,
  .home-b-scope .hb-tabela tbody td {
    display: block;
    width: auto;
  }
  .home-b-scope .hb-tabela tr {
    border-radius: 20px;
    border: 1px solid var(--ia-border);
    background-color: #ffffff;
    overflow: hidden;
    margin-bottom: 16px;
  }
  .home-b-scope .hb-tabela tbody tr + tr th,
  .home-b-scope .hb-tabela tbody tr + tr td {
    border-top: 0;
  }
  .home-b-scope .hb-tabela tbody td.hb-td-depois {
    border-top: 3px solid var(--ia-blue);
  }
  .home-b-scope .hb-tabela tbody td::before {
    content: attr(data-rotulo);
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ia-muted);
  }
  .home-b-scope .hb-tabela tbody td.hb-td-depois::before {
    color: var(--ia-blue);
  }
}


@media (min-width: 960px) {
  .home-b-scope .hb-diag-orbita {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-b-scope .hb-diag-seta,
  .home-b-scope .hb-diag-centro {
    animation: none !important;
  }
}

/* ── Ecossistema: carrossel com o vizinho "espiando" e setas no topo ── */
.home-b-scope .hb-eco-vp {
  overflow: hidden;
  border-radius: 22px;
  /* respiro para o vizinho aparecer na borda sem ser cortado pelo container */
  padding-right: clamp(28px, 7vw, 96px);
}
.home-b-scope .hb-eco-vp .hb-carrossel-trilho {
  gap: 20px;
}
.home-b-scope .hb-eco-slide {
  flex: 0 0 100%;
  min-width: 0;
  opacity: 0.35;
  transform: scale(0.97);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.home-b-scope .hb-eco-slide.is-ativo {
  opacity: 1;
  transform: none;
}
.home-b-scope .hb-eco-controles-topo {
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 18px;
}
.home-b-scope .hb-eco-setas {
  display: flex;
  gap: 10px;
}
.home-b-scope .hb-eco-controles-topo .hb-carrossel-btn {
  position: static;
  transform: none;
}

/* Card do Ecossistema: coluna visual à esquerda quando invertido */
@media (min-width: 960px) {
  .home-b-scope .hb-eco-card.is-invertido .hb-eco-card-txt {
    order: 2;
  }
  .home-b-scope .hb-eco-card.is-invertido .hb-eco-card-visual {
    order: 1;
  }
}
.home-b-scope .hb-eco-card .ia-btn {
  margin-top: 0;
}

/* ── Ecossistema: card largo (texto em cima, visual sem esmagar) ───────── */
@media (min-width: 960px) {
  .home-b-scope .hb-eco-card.is-largo {
    grid-template-columns: minmax(0, 1fr);
  }
  .home-b-scope .hb-eco-card.is-largo .hb-eco-card-txt {
    max-width: 78ch;
  }
}

/* Anatomia da inteligência comercial reaproveitada no Ecossistema */
.home-b-scope .hb-eco-anatomia {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #070912;
}
.home-b-scope .hb-eco-anatomia .anatomia-svg {
  display: block;
  width: 100%;
  height: auto;
}
@media (prefers-reduced-motion: reduce) {
  .home-b-scope .hb-eco-anatomia animateMotion,
  .home-b-scope .hb-eco-anatomia animateTransform,
  .home-b-scope .hb-eco-anatomia animate {
    display: none !important;
  }
}

/* Benchmark setorial (aba Inteligência setorial) */
.home-b-scope .hb-bench,
.home-b-scope .hb-rel {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  padding: 22px;
  color: #ffffff;
}
.home-b-scope .hb-bench-hdr,
.home-b-scope .hb-rel-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.home-b-scope .hb-bench-title,
.home-b-scope .hb-rel-title {
  font-size: 15px;
  font-weight: 600;
}
.home-b-scope .hb-bench-badge,
.home-b-scope .hb-rel-badge {
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(82, 248, 150, 0.14);
  color: var(--int-accent-light, #51ff91);
}
.home-b-scope .hb-bench-legend {
  display: flex;
  gap: 18px;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.home-b-scope .hb-bench-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.home-b-scope .hb-bench-key {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  display: inline-block;
}
.home-b-scope .hb-bench-key-voce {
  background: #4d8cff;
}
.home-b-scope .hb-bench-key-setor {
  background: rgba(255, 255, 255, 0.35);
}
.home-b-scope .hb-bench-rows,
.home-b-scope .hb-rel-rows {
  display: grid;
  gap: 16px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.home-b-scope .hb-bench-row {
  display: grid;
  gap: 7px;
}
.home-b-scope .hb-bench-label,
.home-b-scope .hb-rel-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}
.home-b-scope .hb-bench-track,
.home-b-scope .hb-rel-track {
  display: grid;
  gap: 5px;
  width: 100%;
}
.home-b-scope .hb-bench-bar,
.home-b-scope .hb-rel-bar {
  display: block;
  height: 9px;
  border-radius: 999px;
  width: var(--w);
  animation: hb-bar-grow 1.1s cubic-bezier(0.3, 0, 0.2, 1) both;
}
.home-b-scope .hb-bench-voce {
  background: linear-gradient(90deg, #2438e0, #4d8cff);
}
.home-b-scope .hb-bench-setor {
  background: rgba(255, 255, 255, 0.3);
  animation-delay: 0.15s;
}
.home-b-scope .hb-bench-foot,
.home-b-scope .hb-rel-foot {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
}
@keyframes hb-bar-grow {
  from {
    width: 0;
  }
  to {
    width: var(--w);
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-b-scope .hb-bench-bar,
  .home-b-scope .hb-rel-bar {
    animation: none;
  }
}

/* Relatório de carteira recorrente */
.home-b-scope .hb-rel-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px 14px;
}
.home-b-scope .hb-rel-row .hb-rel-track {
  grid-column: 1;
}
.home-b-scope .hb-rel-row .hb-rel-label {
  grid-column: 1;
}
.home-b-scope .hb-rel-val {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 22px;
  font-weight: 500;
}
.home-b-scope .hb-rel-row.is-risco .hb-rel-bar {
  background: linear-gradient(90deg, #ec6783, #ff9db3);
}
.home-b-scope .hb-rel-row.is-alerta .hb-rel-bar {
  background: linear-gradient(90deg, #ffb26b, #ffe0cb);
}
.home-b-scope .hb-rel-meta {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.home-b-scope .hb-rel-meta-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}
.home-b-scope .hb-rel-meta-top b {
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
}
.home-b-scope .hb-rel-track-meta {
  margin-top: 10px;
}
.home-b-scope .hb-rel-bar-meta {
  background: linear-gradient(90deg, #2438e0, #4d8cff);
}
.home-b-scope .hb-rel-bar-ganho {
  background: linear-gradient(90deg, var(--int-accent-light, #51ff91), rgba(82, 248, 150, 0.4));
  animation-delay: 0.25s;
}

@media (min-width: 960px) {
  .home-b-scope .hb-eco-card.is-anatomia {
    grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
    align-items: center;
  }
}

/* ── Ecossistema · card largo: título, animação e tópicos nessa ordem ───── */
@media (min-width: 960px) {
  .home-b-scope .hb-eco-card.is-largo .hb-eco-card-abaixo {
    max-width: 78ch;
  }
}
.home-b-scope .hb-eco-card.is-largo .hb-eco-card-abaixo {
  margin-top: 4px;
}

/* Mockup dentro do tema noir: coluna do WhatsApp com texto preto */
.home-b-scope .hb-eco-mega.is-noir .hb-mock .hb-bubble,
.home-b-scope .hb-eco-mega.is-noir .hb-mock .hb-bubble span,
.home-b-scope .hb-eco-mega.is-noir .hb-mock .hb-bubble b {
  color: #0b0d14;
}

/* Card de negócio não escapa do quadrante da etapa "Proposta" */
.home-b-scope .hb-funnel-col,
.home-b-scope .hb-funnel-slot,
.home-b-scope .hb-deal {
  min-width: 0;
  max-width: 100%;
}
.home-b-scope .hb-deal b,
.home-b-scope .hb-deal span {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

/* ── Ecossistema · ajustes finos (rodada) ───────────────────────────────── */
/* "Diga adeus para o sofrimento interpretando relatórios": imagem 50% menor */
.home-b-scope .hb-eco-card[data-card="gestao-relatorios"] .hb-eco-img {
  max-width: 50%;
  margin-inline: auto;
}

/* "Informações para ter mais resultados": animação à esquerda, tópicos+CTA à direita */
@media (min-width: 960px) {
  .home-b-scope .hb-eco-card.is-largo {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: start;
  }
  .home-b-scope .hb-eco-card.is-largo .hb-eco-card-txt {
    grid-column: 1 / -1;
    max-width: 78ch;
  }
  .home-b-scope .hb-eco-card.is-largo .hb-eco-card-visual {
    grid-column: 1;
  }
  .home-b-scope .hb-eco-card.is-largo .hb-eco-card-abaixo {
    grid-column: 2;
    max-width: none;
    margin-top: 0;
  }
  /* WhatsApp e Funil na mesma linha; Painel do gestor abaixo, horizontal */
  .home-b-scope .hb-eco-card.is-largo .hb-mock {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .home-b-scope .hb-eco-card.is-largo .hb-mock > .hb-mock-col:nth-child(3) {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
  }
  .home-b-scope .hb-eco-card.is-largo .hb-mock > .hb-mock-col:nth-child(3) .hb-panel-card {
    flex: 1;
    min-width: 0;
  }
}
@media (min-width: 960px) {
  .home-b-scope .hb-eco-card.is-largo {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.6fr);
  }
  .home-b-scope .hb-eco-card.is-largo .hb-mock {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  }
  .home-b-scope .hb-eco-card.is-largo .hb-deal b,
  .home-b-scope .hb-eco-card.is-largo .hb-deal span {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }
  .home-b-scope .hb-eco-card.is-largo .hb-funnel-label {
    font-size: 10px;
  }
}
@media (min-width: 960px) {
  .home-b-scope .hb-eco-card.is-largo .hb-mock {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.55fr);
  }
  .home-b-scope .hb-eco-card.is-largo .hb-deal {
    font-size: 12px;
  }
}
@media (min-width: 960px) {
  /* etapa "Proposta" com folga para o card de negócio não quebrar palavras */
  .home-b-scope .hb-eco-card.is-largo .hb-funnel {
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.5fr) minmax(0, 0.75fr);
  }
}

/* ==================================================================
   Carrossel de SEGMENTOS — tema CLARO (Home B) + 5º card "Outros Segmentos"
   Componente único: src/components/site/segmentos/SegmentosCarrossel.tsx
   ================================================================== */
.crm-com-ia-scope .ia-segmentos-light {
  background: transparent;
  padding-bottom: 96px;
}
.crm-com-ia-scope .ia-segmentos-light .ia-carousel-btn {
  border-color: var(--ia-border);
  background-color: #ffffff;
  color: var(--ia-strong);
}
.crm-com-ia-scope .ia-segmentos-light .ia-carousel-btn:hover {
  background-color: var(--ia-bg-blue);
}
.crm-com-ia-scope .ia-segmentos-light .ia-carousel-pill {
  border-color: var(--ia-border);
  background-color: #ffffff;
  color: var(--ia-body);
}
.crm-com-ia-scope .ia-segmentos-light .ia-carousel-pill[aria-pressed="true"] {
  background-color: var(--ia-blue);
  border-color: transparent;
  color: #ffffff;
}
.crm-com-ia-scope .ia-segmentos-light .ia-carousel-head {
  justify-content: end;
}
/* Full-bleed: os cards não param na borda do container — o trilho sangra até
   a borda da viewport (o primeiro card continua alinhado ao container).
   overflow-x: clip na seção evita scroll horizontal por causa do scrollbar. */
.crm-com-ia-scope .hb-segmentos-wrap,
.crm-com-ia-scope .ia-segmentos-light {
  overflow-x: clip;
}
.crm-com-ia-scope .ia-segmentos-light .ia-carousel-track {
  --hb-seg-gutter: max(24px, calc((100vw - 1220px) / 2 + 24px));
  margin-inline: calc(50% - 50vw);
  padding-inline: var(--hb-seg-gutter);
  scroll-padding-inline-start: var(--hb-seg-gutter);
}
@media (max-width: 767px) {
  .crm-com-ia-scope .ia-segmentos-light .ia-carousel-track {
    --hb-seg-gutter: 20px;
  }
}



/* 5º card: vidro com CTA (não é link inteiro, o botão leva ao hub). */
.crm-com-ia-scope .ia-segcard-outros {
  cursor: default;
}
.crm-com-ia-scope .ia-segcard-cta {
  margin-top: 16px;
  align-self: flex-start;
}

/* 12 · Segurança — respiro de 100px em relação aos cards acima e textos em
   duas linhas (ampliados lateralmente). */
.home-b-scope .hb-seg-head {
  padding-top: 100px;
}
.home-b-scope .hb-seg-head .ia-h2 {
  max-width: 46ch;
  margin-inline: auto;
}
.home-b-scope .hb-seguranca {
  margin-top: 48px;
}
.home-b-scope .hb-seguranca-fecho {
  max-width: 52ch;
  margin-top: 48px;
}

/* ==================================================================
   `.int-embed` — tokens do DS Intelligence para REUTILIZAR componentes da
   /intelligence (hoje: Imprensa) fora daquela rota, sem carregar o
   intelligence.css inteiro nem duplicar o componente.
   ================================================================== */
.int-embed {
  --font-sans: "Inter", "Inter Fallback", system-ui, sans-serif;
  --font-display: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  --bg-black: #070912;
  --bg-navy-900: #0a0e2a;
  --bg-navy-800: #101840;
  --bg-deep: #0a0e2a;
  --brand-cobalt: #2438e0;
  --accent-light: #4d8cff;
  --text-primary: #ffffff;
  --text-offwhite: #edeff7;
  --text-secondary: #c4cad9;
  --text-muted: #8a92b2;
  --container-max: 1200px;
  --container-padding: clamp(24px, 5vw, 80px);
  --section-gap: 96px;
  background-color: var(--bg-navy-900);
  color: var(--text-offwhite);
  font-family: var(--font-sans);
}
@media (min-width: 768px) {
  .int-embed {
    --section-gap: 128px;
  }
}
.int-embed h2,
.int-embed h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.int-embed .container-lp {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
  min-width: 0;
}
.int-embed .section-pad {
  padding-block: var(--section-gap);
}
.int-embed .sec-deep {
  background-color: var(--bg-navy-900);
}
.int-embed .sec-bridge {
  position: relative;
}
.int-embed .sec-bridge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--sec-bridge-from, transparent) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.int-embed .sec-glow {
  position: relative;
}
.int-embed .sec-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 55% 45% at var(--sec-glow-x, 20%) var(--sec-glow-y, 20%),
    var(--sec-glow-color, rgba(36, 56, 224, 0.1)) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}
.int-embed .h-headline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw + 0.25rem, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.int-embed .glass-solid {
  position: relative;
  background: linear-gradient(180deg, rgba(237, 239, 247, 0.07) 0%, rgba(237, 239, 247, 0.035) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-top-color: rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 24px 64px rgba(7, 9, 18, 0.45);
  transition:
    border-color 200ms ease,
    box-shadow 200ms ease;
}
.int-embed .glass-solid:hover {
  border-color: rgba(77, 140, 255, 0.35);
}

/* Pills no tema claro: sem a cápsula de vidro escuro (que virava um blob no
   mobile) — pills soltas sobre o fundo bege. */
.crm-com-ia-scope .ia-segmentos-light .ia-carousel-pills {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.crm-com-ia-scope .ia-segmentos-light .ia-carousel-pill {
  border: 1px solid var(--ia-border);
  background-color: #ffffff;
  backdrop-filter: none;
  color: var(--ia-text);
}
.crm-com-ia-scope .ia-segmentos-light .ia-carousel-pill[aria-pressed="true"] {
  background-color: var(--ia-blue);
  border-color: transparent;
  color: #ffffff;
}

/* Setas no tema claro: a sombra profunda do território escuro virava um halo
   elíptico sobre o bege — sombra curta e discreta aqui. */
.crm-com-ia-scope .ia-segmentos-light .ia-carousel-btn {
  box-shadow: 0 2px 8px rgba(27, 29, 42, 0.08);
}

/* Card "Outros Segmentos": a foto é clara no ponto da caixa, então o vidro
   precisa de mais corpo para o texto continuar legível. */
.crm-com-ia-scope .ia-segmentos .ia-segcard-outros .ia-segcard-box,
.crm-com-ia-scope .ia-segmentos .ia-segcard-outros[data-glass="on"] .ia-segcard-box {
  background: linear-gradient(180deg, rgba(7, 9, 18, 0.72), rgba(7, 9, 18, 0.56));
  border-color: rgba(255, 255, 255, 0.16);
}
.crm-com-ia-scope .ia-segmentos .ia-segcard-outros .ia-segcard-arrow {
  color: rgba(237, 239, 247, 0.9);
}

/* ── Home B: faixa de anúncio no topo ─────────────────────────────────── */
.home-b-scope .hb-anuncio {
  background-color: var(--brand);
  color: #ffffff;
  padding: 10px 16px;
  text-align: center;
}
.home-b-scope .hb-anuncio-txt {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}
.home-b-scope .hb-anuncio-link {
  color: #ffffff;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

/* ── Home B: sticky CTA só no mobile ──────────────────────────────────── */
.home-b-scope .ia-stickybar.hb-sticky,
.solucoes-b-scope .ia-stickybar.hb-sticky {
  display: flex;
  align-items: center;
  z-index: 30;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}
.home-b-scope .ia-stickybar.hb-sticky .hb-sticky-sec,
.solucoes-b-scope .ia-stickybar.hb-sticky .hb-sticky-sec {
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 500;
  color: var(--ia-blue, #332de6);
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
@media (min-width: 769px) {
  .home-b-scope .ia-stickybar.hb-sticky,
  .solucoes-b-scope .ia-stickybar.hb-sticky {
    display: none;
  }
}
html.hb-sticky-on .home-b-scope,
html.hb-sticky-on .solucoes-b-scope {
  padding-bottom: 84px;
}
@media (min-width: 769px) {
  html.hb-sticky-on .home-b-scope,
  html.hb-sticky-on .solucoes-b-scope {
    padding-bottom: 0;
  }
}
/* ==== HOME B — Rodada 1: hero, eyebrow, mock e cor ===================== */

/* Eyebrow badge (substitui a antiga faixa azul full-bleed do topo) */
.home-b-scope .hb-eyebrow-badge {
  display: inline-block;
  margin: 0 auto 20px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--ia-blue-soft);
  color: var(--ia-blue);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* H1 da B: Rubik 600 e escala menor, para caber em até 2 linhas. */
.home-b-scope .hb-h1 {
  font-weight: 600;
  font-size: clamp(2.125rem, 4.4vw, 3.5rem);
  max-width: 20ch;
}

/* Mock protagonista: UI real emoldurada + halo azul-claro dissolvido. */
.home-b-scope .hb-hero-mock {
  position: relative;
  margin: 64px auto 0;
  max-width: 900px;
}
.home-b-scope .hb-hero-mock::before {
  content: "";
  position: absolute;
  inset: -12% -8% -6% -8%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(60% 55% at 50% 45%, var(--brand-soft), rgba(234, 240, 255, 0));
  pointer-events: none;
}
.home-b-scope .hb-hero-mock-fig {
  position: relative;
  z-index: 1;
  margin: 0;
}
.home-b-scope .hb-hero-mock-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--ia-border);
  box-shadow: 0 30px 60px -30px rgba(3, 15, 55, 0.28);
  background: #ffffff;
}
.home-b-scope .hb-hero-mock-float {
  position: absolute;
  right: -12px;
  bottom: -20px;
  width: min(46%, 340px);
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--ia-border);
  box-shadow: 0 24px 50px -24px rgba(3, 15, 55, 0.32);
  background: #ffffff;
}
@media (max-width: 767px) {
  .home-b-scope .hb-hero-mock-float {
    position: static;
    width: 100%;
    margin-top: 16px;
  }
}

/* Faixa de autoridade da dobra */
.home-b-scope .hb-hero-trust {
  margin-top: 56px;
}
.home-b-scope .hb-hero-trust-txt {
  margin: 0 0 18px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ia-muted);
}
.home-b-scope .hb-hero-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-b-scope .hb-hero-logos img {
  display: block;
  height: 34px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(1);
}

/* Cor/DS da B: nada de bege/areia e nada de rosa/coral. */
.home-b-scope {
  --ia-bg-sand: #f5f7fa;
  --ia-bg-peach: #f5f7fa;
  --ia-coral: var(--ia-blue);
}
.home-b-scope .ia-chip-coral {
  background: var(--ia-blue-soft);
  color: var(--ia-blue);
}

/* ==== HOME B — Rodada 2: corte para 11 seções + DS pré refresh ==========
   Escopo total em `.home-b-scope` (a variante A e as outras páginas ficam
   intocadas). Superfície branca, um único acento azul, tintado só em
   `.hb-tinted`, e um ÚNICO momento navy (`.hb-navy`). */

.home-b-scope {
  --hb-line: #e7e8ec;
  --hb-tint: #f5f7fa;
  --hb-navy-bg: #071529;
  --hb-sh-sm: 0 1px 3px rgba(3, 15, 55, 0.08);
  --hb-sh-md: 0 10px 30px rgba(3, 15, 55, 0.1);
  --hb-sh-lg: 0 24px 60px rgba(3, 15, 55, 0.12);
}

/* Ritmo de seção: 64px mobile, 96–120px desktop. */
.home-b-scope .ia-section {
  padding-block: 64px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .home-b-scope .ia-section {
    padding-block: 112px;
  }
}
.home-b-scope .hb-tinted {
  background-color: var(--hb-tint);
}

/* Cards padrão da B: branco, borda 1px, radius 12,
   sombra só no hover (zero sombra fixa). */
.home-b-scope .hb-imprensa-card {
  background: #ffffff;
  border: 1px solid var(--hb-line);
  border-radius: 12px;
  padding: 24px;
  box-shadow: none;
  transition: box-shadow 160ms ease, border-color 160ms ease;
}
.home-b-scope .hb-imprensa-card:hover {
  box-shadow: var(--hb-sh-md);
  border-color: #d7dbe4;
}

/* ── 03 · Três momentos: painéis de mesma altura e mesma direção ───────── */
.home-b-scope .hb-paineis {
  position: relative;
  margin-top: 40px;
}
.home-b-scope .hb-painel {
  display: grid;
  gap: 32px;
  align-items: center;
  min-height: 520px;
}
@media (min-width: 992px) {
  .home-b-scope .hb-painel {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
  }
}
.home-b-scope .hb-painel[data-active="false"] {
  display: none;
}
.home-b-scope .hb-porta-midia {
  position: relative;
  margin: 0;
  isolation: isolate;
}
.home-b-scope .hb-porta-midia::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(60% 55% at 50% 50%, var(--brand-soft), rgba(234, 240, 255, 0));
}
.home-b-scope .hb-porta-midia-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--hb-line);
  background: #ffffff;
  box-shadow: var(--hb-sh-md);
}
.home-b-scope .hb-recursos-rotulo {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ia-muted);
}
.home-b-scope .hb-recursos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-b-scope .hb-recursos li {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--ia-blue-soft);
  color: var(--ia-blue);
  font-size: 13px;
  line-height: 1.4;
}

.home-b-scope .hb-provaf-h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ia-strong);
  text-align: center;
}

/* ── 08 · Prova social profunda: imprensa em cards de texto ────────────── */
.home-b-scope .hb-imprensa-grid {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .home-b-scope .hb-imprensa-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.home-b-scope .hb-imprensa-card {
  padding: 0;
  height: 100%;
}
.home-b-scope .hb-imprensa-card > a {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  padding: 24px;
  text-decoration: none;
}
.home-b-scope .hb-imprensa-veiculo {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ia-blue);
}
.home-b-scope .hb-imprensa-titulo {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.4;
  color: var(--ia-strong);
}
.home-b-scope .hb-imprensa-ler {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ia-blue);
}

/* ── 09 · NúmerOS: faixa azul-marca flutuante, cantos arredondados ──────── */
.home-b-scope .hb-ns-band {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  margin: 32px 12px 12px;
  background:
    radial-gradient(60% 60% at 92% 4%, rgba(77, 140, 255, 0.35), transparent 70%),
    radial-gradient(70% 70% at 4% 100%, rgba(0, 14, 56, 0.55), transparent 72%),
    linear-gradient(150deg, #0030a0, #002a8d);
}
.home-b-scope .hb-ns-band .hb-navy {
  position: relative;
  z-index: 1;
  background: transparent;
}
.home-b-scope .hb-ns-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 16px;
  font-family: var(--font-display, Rubik), sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #52f896;
}
.home-b-scope .hb-ns-eyebrow-tr {
  display: inline-block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: #52f896;
}
.home-b-scope .hb-navy {
  padding-block: 72px;
  background: var(--hb-navy-bg);
  color: #ffffff;
}
@media (min-width: 768px) {
  .home-b-scope .hb-navy {
    padding-block: 120px;
  }
}
.home-b-scope .hb-navy-h2,
.home-b-scope .hb-navy-h3 {
  color: #ffffff;
  text-align: center;
}
.home-b-scope .hb-navy-h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  max-width: 46ch;
  margin-inline: auto;
}
.home-b-scope .hb-navy .hb-numeros-grid {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 1100px) {
  .home-b-scope .hb-navy .hb-numeros-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.home-b-scope .hb-navy .hb-num {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 16px;
}
.home-b-scope .hb-navy .hb-num-tag {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8fb0ff;
}
.home-b-scope .hb-navy .hb-num-valor {
  margin: 8px 0 6px;
  font-family: var(--font-display, "Rubik", "Rubik Fallback", sans-serif);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
  color: #ffffff;
}
.home-b-scope .hb-navy .hb-num-texto {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.76);
}
.home-b-scope .hb-seg-grid {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .home-b-scope .hb-seg-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .home-b-scope .hb-seg-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.home-b-scope .hb-seg-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}
.home-b-scope .hb-seg-item svg {
  flex: none;
  color: #8fb0ff;
}
.home-b-scope .hb-navy-selos {
  justify-content: center;
  gap: 25px;
}
.home-b-scope .hb-navy-selos .hb-selo-txt {
  color: rgba(255, 255, 255, 0.8);
}
/* Força o logotipo da Apple em negativo dentro da faixa navy. */
.home-b-scope .hb-ns-rating-logos img[src*="apple.svg"] {
  filter: brightness(0) invert(1);
}

/* Rating block inside the navy band (replaces the old security grid). */
.home-b-scope .hb-ns-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 64px;
}
.home-b-scope .hb-ns-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  font-family: var(--font-display, Rubik), sans-serif;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
}
.home-b-scope .hb-ns-rating-minimal {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 10px 14px;
  margin: 0;
}
.home-b-scope .hb-ns-rating-score {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono, ui-monospace, monospace);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.home-b-scope .hb-ns-rating-score svg {
  flex: none;
}
.home-b-scope .hb-ns-rating-count {
  font-family: var(--font-display, Rubik), sans-serif;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
}
.home-b-scope .hb-ns-rating-logos {
  justify-content: center;
  gap: 20px 28px;
}
.home-b-scope .hb-ns-rating-logos li,
.home-b-scope .hb-ns-rating-logos li span {
  color: rgba(255, 255, 255, 0.8);
}
.home-b-scope .hb-ns-rating-logos img {
  filter: grayscale(1) brightness(1.85);
  transition: filter 0.2s ease;
}
.home-b-scope .hb-ns-rating-logos li:hover img {
  filter: grayscale(0) brightness(1);
}

/* ── 11 · Segurança e dados: bloco claro abaixo de Segmentos (provisório) ─ */
.home-b-scope .hb-seguranca-grid {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .home-b-scope .hb-seguranca-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .home-b-scope .hb-seguranca-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.home-b-scope .hb-seguranca-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--ia-border);
  border-radius: 12px;
  background: #ffffff;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ia-body);
}
.home-b-scope .hb-seguranca-card svg {
  flex: none;
  color: var(--ia-blue);
}
/* Último card (MFA) fica sozinho na linha: centralizado e com largura própria. */
.home-b-scope .hb-seguranca-grid > :last-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: fit-content;
  max-width: 100%;
}



/* Motion: visível por padrão, o JS anima só transform/opacity. */
.home-b-scope .ia-reveal.js-armed {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
  transition-delay: var(--ia-d, 0ms);
}
.home-b-scope .ia-reveal.js-armed.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .home-b-scope .ia-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* Ajustes finos de ritmo dentro das portas. */
.home-b-scope .hb-painel .hb-bullets {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}
.home-b-scope .hb-painel .hb-recursos-rotulo {
  margin-top: 0;
}
.home-b-scope .hb-paineis {
  margin-bottom: 24px;
}

/* ══ RODADA 3 · POLIMENTO VISUAL DA VARIANTE B ═══════════════════════════
   Só dentro de `.home-b-scope` (a variante A e as demais páginas seguem
   intocadas), exceto o ajuste de altura dos botões do chrome no fim. */

/* 02 · Capas de vídeo: scrim para abafar texto queimado + crop distinto. */
.home-b-scope .hb-vcard-media {
  background: #0b1a33;
}
.home-b-scope .hb-vcard-capa {
  object-position: center;
  transform: scale(1.02);
  transition: transform 240ms ease-out;
}
.home-b-scope .hb-vcard-media[data-crop="2"] .hb-vcard-capa {
  object-position: 30% 35%;
  transform: scale(1.18);
}
.home-b-scope .hb-vcard-media[data-crop="3"] .hb-vcard-capa {
  object-position: 70% 60%;
  transform: scale(1.32);
}
.home-b-scope .hb-vcard:hover .hb-vcard-capa {
  transform: scale(1.06);
}
.home-b-scope .hb-vcard-media[data-crop="2"]:hover .hb-vcard-capa,
.home-b-scope .hb-vcard:hover .hb-vcard-media[data-crop="2"] .hb-vcard-capa {
  transform: scale(1.22);
}
.home-b-scope .hb-vcard:hover .hb-vcard-media[data-crop="3"] .hb-vcard-capa {
  transform: scale(1.36);
}
.home-b-scope .hb-vcard-scrim {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(
    0deg,
    rgba(7, 21, 41, 0.72) 0%,
    rgba(7, 21, 41, 0.42) 45%,
    rgba(7, 21, 41, 0.24) 100%
  );
  pointer-events: none;
}
.home-b-scope .hb-vcard-play {
  z-index: 1;
  width: 56px;
  height: 56px;
  background: var(--ia-blue);
  color: #ffffff;
  border: 0;
  box-shadow: var(--hb-sh-md);
}
.home-b-scope .hb-vitem,
.home-b-scope .hb-vitem > .hb-vcard {
  height: 100%;
}
.home-b-scope .hb-vcard {
  display: flex;
  flex-direction: column;
}
.home-b-scope .hb-vcard-corpo {
  flex: 1 1 auto;
}

/* 02/07 · Moldura clara padrão dos mocks: nada de fundo chapado colorido
   encostando no card. Uma família de moldura para a página inteira. */
.home-b-scope .hb-porta-midia-img,
.home-b-scope .hb-hero-mock-img,
.home-b-scope .hb-hero-mock-float {
  background: #ffffff;
  padding: 8px;
  border: 1px solid var(--hb-line);
  border-radius: 16px;
  box-shadow: var(--hb-sh-md);
}
.home-b-scope .hb-hero-mock-img {
  box-shadow: var(--hb-sh-lg);
}
.home-b-scope .hb-hero-mock-float {
  padding: 6px;
}

/* 07 · Segmentos: grid calmo, mesma altura, overlay navy leve. Sem snap,
   sem scroll-jack, sem trilho horizontal. */
.home-b-scope .hb-segs {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .home-b-scope .hb-segs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1080px) {
  .home-b-scope .hb-segs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.home-b-scope .hb-segs > li {
  display: flex;
}
.home-b-scope .hb-seg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  min-height: 320px;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid var(--hb-line);
  isolation: isolate;
  text-decoration: none;
  transition: box-shadow 180ms ease-out, transform 180ms ease-out;
}
.home-b-scope .hb-seg-card:hover,
.home-b-scope .hb-seg-card:focus-visible {
  box-shadow: var(--hb-sh-md);
  transform: translateY(-2px);
}
.home-b-scope .hb-seg-foto {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-b-scope .hb-seg-veu {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: block;
  background: linear-gradient(
    0deg,
    rgba(7, 21, 41, 0.86) 0%,
    rgba(7, 21, 41, 0.55) 48%,
    rgba(7, 21, 41, 0.24) 100%
  );
}
.home-b-scope .hb-seg-corpo {
  display: block;
  padding: 24px;
  color: #ffffff;
}
.home-b-scope .hb-seg-nome {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 600;
  color: #ffffff;
}
.home-b-scope .hb-seg-texto {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.86);
}
.home-b-scope .hb-seg-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}
.home-b-scope .hb-seg-card:hover .hb-seg-link {
  gap: 10px;
}


/* 09 · Header compartilhado: "Fazer login" e "Criar conta grátis" com a
   MESMA altura (o logo continua intocado). */
.site-chrome header nav .site-chrome-navlink,
.site-chrome header nav .site-chrome-cta {
  min-height: 46px;
}

/* 08 · Ritmo geral: 96px desktop entre seções e espaços exagerados apertados,
   para a página caber na altura alvo sem perder respiro. */
@media (min-width: 768px) {
  .home-b-scope .ia-section {
    padding-block: 96px;
  }
}
.home-b-scope .hb-hero-mock {
  margin-top: 48px;
}
.home-b-scope .hb-hero-trust {
  margin-top: 40px;
}
.home-b-scope .hb-painel {
  min-height: 0;
}

/* 02 · Card flutuante do WhatsApp Sync: recorte só da UI real (nada de arte
   roxa), moldura branca, halo --brand-soft e legenda em TEXTO no DOM. */
.home-b-scope .hb-hero-wa {
  position: absolute;
  right: -16px;
  bottom: -40px;
  z-index: 2;
  width: min(46%, 360px);
  padding: 12px;
  background: #ffffff;
  border: 1px solid var(--hb-line);
  border-radius: 16px;
  box-shadow: var(--hb-sh-lg);
}
.home-b-scope .hb-hero-wa::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(60% 60% at 50% 50%, var(--brand-soft), rgba(234, 240, 255, 0));
  pointer-events: none;
}
.home-b-scope .hb-hero-wa .hb-hero-mock-float {
  position: static;
  width: 100%;
  padding: 0;
  border-radius: 10px;
  box-shadow: none;
}
.home-b-scope .hb-hero-wa-txt {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ia-ink-2, #4a5568);
  text-align: left;
}
@media (max-width: 767px) {
  .home-b-scope .hb-hero-wa {
    position: static;
    width: 100%;
    margin-top: 20px;
  }
}

/* 02 · Capas de vídeo: as thumbs trazem texto queimado. Um leve desfoque +
   scrim mais denso transformam a foto em ATMOSFERA, e o texto legível fica
   só no HTML abaixo da capa. */
.home-b-scope .hb-vcard-capa {
  filter: blur(3px) saturate(0.9) brightness(0.82);
}
.home-b-scope .hb-vcard-media[data-crop="1"] .hb-vcard-capa {
  transform: scale(1.12);
}
.home-b-scope .hb-vcard-media[data-crop="2"] .hb-vcard-capa {
  transform: scale(1.3);
}
.home-b-scope .hb-vcard-media[data-crop="3"] .hb-vcard-capa {
  transform: scale(1.45);
  object-position: 78% 62%;
}
.home-b-scope .hb-vcard:hover .hb-vcard-capa {
  filter: blur(2px) saturate(1) brightness(0.86);
}
.home-b-scope .hb-vcard-scrim {
  background: linear-gradient(
    0deg,
    rgba(7, 21, 41, 0.86) 0%,
    rgba(7, 21, 41, 0.62) 55%,
    rgba(7, 21, 41, 0.5) 100%
  );
}

/* Grifo azul: marca-texto suave (o azul chapado empastelava a linha). Segue
   valendo a regra de UM grifo por dobra. */
.home-b-scope .ia-mark-azul::after {
  background-color: color-mix(in oklab, var(--ia-blue) 22%, transparent);
  height: 0.24em;
  bottom: 0.06em;
}

/* 07 · Grid de segmentos: linhas de mesma altura e respiro do cabeçalho. */
.home-b-scope .hb-segs {
  margin-top: 48px;
  grid-auto-rows: 1fr;
}



/* Todos os cards de segmento na mesma altura, em qualquer linha. */
.home-b-scope .hb-segs {
  grid-auto-rows: 320px;
}
@media (max-width: 767px) {
  .home-b-scope .hb-segs {
    grid-auto-rows: 260px;
  }
}

/* ── 10 · FAQ (AEO): accordion com button + aria-expanded ─────────────────
   A resposta NUNCA sai do DOM: fecha por grade de altura (0fr → 1fr), então
   o texto continua no HTML servido e legível por crawlers e IAs. */
.home-b-scope .hb-faq-item .hb-faq-q {
  margin: 0;
}
.home-b-scope .hb-faq-btn {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--ia-strong);
}
.home-b-scope .hb-faq-btn:focus-visible {
  outline: 2px solid var(--ia-blue, #0030a0);
  outline-offset: 4px;
  border-radius: 8px;
}
.home-b-scope .hb-faq-icone {
  flex: none;
  margin-top: 2px;
  color: var(--ia-blue);
  transition: transform 160ms ease;
}
.home-b-scope .hb-faq-item[data-open="true"] .hb-faq-icone {
  transform: rotate(45deg);
}
.home-b-scope .hb-faq-resposta {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 200ms ease;
}
.home-b-scope .hb-faq-item[data-open="true"] .hb-faq-resposta {
  grid-template-rows: 1fr;
}
.home-b-scope .hb-faq-resposta-in {
  overflow: hidden;
}
@media (prefers-reduced-motion: reduce) {
  .home-b-scope .hb-faq-resposta {
    transition: none;
  }
}

/* ── Performance · content-visibility por seção ───────────────────────────
   Cada seção declara um contain-intrinsic-size próximo da altura REAL
   medida (1440 e 375), para a barra de rolagem não derivar durante o scroll.
   `auto` deixa o browser memorizar a altura real depois da primeira pintura. */
.home-b-scope .hb-cv-videos { content-visibility: auto; contain-intrinsic-size: auto 850px; }
.home-b-scope .hb-cv-erp { content-visibility: auto; contain-intrinsic-size: auto 820px; }
.home-b-scope .hb-cv-segmentos { content-visibility: auto; contain-intrinsic-size: auto 1045px; }
.home-b-scope .hb-cv-prova { content-visibility: auto; contain-intrinsic-size: auto 1265px; }
.home-b-scope .hb-cv-numeros { content-visibility: auto; contain-intrinsic-size: auto 985px; }
.home-b-scope .hb-cv-seguranca { content-visibility: auto; contain-intrinsic-size: auto 520px; }
.home-b-scope .hb-cv-faq { content-visibility: auto; contain-intrinsic-size: auto 620px; }
.home-b-scope .hb-cv-cta { content-visibility: auto; contain-intrinsic-size: auto 870px; }

@media (max-width: 767px) {
  .home-b-scope .hb-cv-videos { contain-intrinsic-size: auto 1560px; }
  .home-b-scope .hb-cv-erp { contain-intrinsic-size: auto 1475px; }
  .home-b-scope .hb-cv-segmentos { contain-intrinsic-size: auto 1720px; }
  .home-b-scope .hb-cv-prova { contain-intrinsic-size: auto 3555px; }
  .home-b-scope .hb-cv-numeros { contain-intrinsic-size: auto 1380px; }
  .home-b-scope .hb-cv-seguranca { contain-intrinsic-size: auto 920px; }
  .home-b-scope .hb-cv-faq { contain-intrinsic-size: auto 810px; }
  .home-b-scope .hb-cv-cta { contain-intrinsic-size: auto 1010px; }
}


/* ── Home B · 07 Segmentos: carrossel imersivo sem scroll-jack ────────── */
.home-b-scope .hb-segcar {
  overflow-x: clip;
}
.home-b-scope .hb-segcar-barra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.home-b-scope .hb-segcar-abas {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.home-b-scope .hb-segcar-aba {
  border: 1px solid var(--ia-border);
  background-color: #ffffff;
  color: var(--ia-body, var(--ia-strong));
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 14px;
  line-height: 1.2;
  cursor: pointer;
  transition:
    background-color 160ms ease-out,
    color 160ms ease-out,
    border-color 160ms ease-out;
}
.home-b-scope .hb-segcar-aba:hover {
  border-color: var(--ia-blue);
  color: var(--ia-blue);
}
.home-b-scope .hb-segcar-aba[aria-selected="true"] {
  background-color: var(--ia-blue);
  border-color: transparent;
  color: #ffffff;
}
.home-b-scope .hb-segcar-setas {
  display: flex;
  gap: 8px;
}
.home-b-scope .hb-segcar-seta {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--ia-border);
  background-color: #ffffff;
  color: var(--ia-strong);
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(3, 15, 55, 0.08);
  cursor: pointer;
  transition:
    background-color 160ms ease-out,
    border-color 160ms ease-out;
}
.home-b-scope .hb-segcar-seta:hover:not(:disabled) {
  background-color: var(--ia-bg-blue);
  border-color: var(--ia-blue);
}
.home-b-scope .hb-segcar-seta:disabled {
  opacity: 0.4;
  cursor: default;
}
.home-b-scope .hb-segcar-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(900px, 84vw);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 44px 4px 4px 4px;
  margin: -4px;
  /* Sangria até a borda real da tela (mesma técnica do .hb-ps-trilho). */
  margin-right: calc(50% - 50vw + 24px);
  list-style: none;
}
.home-b-scope .hb-segcar-track::-webkit-scrollbar {
  display: none;
}
.home-b-scope .hb-segcar-track > li {
  scroll-snap-align: start;
  min-width: 0;
}
.home-b-scope .hb-segcar-card {
  position: relative;
  display: block;
  height: 460px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--ia-border);
  box-shadow: 0 2px 10px rgba(3, 15, 55, 0.06);
  transition:
    transform 200ms ease-out,
    box-shadow 200ms ease-out;
}
.home-b-scope .hb-segcar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -18px rgba(3, 15, 55, 0.35);
}
.home-b-scope .hb-segcar-foto {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-b-scope .hb-segcar-veu {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 21, 41, 0.28) 0%,
    rgba(7, 21, 41, 0.52) 55%,
    rgba(7, 21, 41, 0.86) 100%
  );
}
.home-b-scope .hb-segcar-corpo {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: block;
  max-width: 520px;
}
.home-b-scope .hb-segcar-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a9c0ff;
}
.home-b-scope .hb-segcar-nome {
  display: block;
  margin-top: 8px;
  font-family: "Rubik", "Rubik Fallback", "Inter", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
}
.home-b-scope .hb-segcar-texto {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.86);
}
.home-b-scope .hb-segcar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 15px;
  color: #ffffff;
}
.home-b-scope .hb-segcar-card:hover .hb-segcar-link {
  color: #a9c0ff;
}
@media (max-width: 767px) {
  .home-b-scope .hb-segcar-track {
    grid-auto-columns: 88vw;
    margin-right: calc(50% - 50vw + 20px);
  }
  .home-b-scope .hb-segcar-card {
    height: 400px;
  }
  .home-b-scope .hb-segcar-corpo {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-b-scope .hb-segcar-card,
  .home-b-scope .hb-segcar-track {
    transition: none;
    scroll-behavior: auto;
  }
}


/* 01 · HERO da B, conceito "show don't tell": split 2 colunas, texto mínimo à
   esquerda e palco visual em camadas à direita (foto + WhatsApp + Ava + funil). */
.home-b-scope .hb-hero {
  position: relative;
  padding-top: 72px;
  padding-bottom: 0;
  overflow: hidden;
  background: #ffffff;
}
.home-b-scope .hb-hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -140px;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, var(--brand-soft), rgba(234, 240, 255, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.home-b-scope .hb-hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  display: grid;
  grid-template-columns: 54fr 46fr;
  align-items: center;
  gap: 40px;
  padding-bottom: 64px;
}
.home-b-scope .hb-hero-copy {
  max-width: none;
  text-align: left;
}
.home-b-scope .hb-hero-copy .hb-h1 {
  margin: 0;
  max-width: none;
  text-wrap: balance;
  font-family: var(--font-display, Rubik, sans-serif);
  font-weight: 700;
  font-size: clamp(38px, 4.4vw, 66px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-align: left;
  color: var(--ink, var(--ia-ink));
}
.home-b-scope .hb-hero-tagline {
  margin: 16px 0 0;
  font-family: var(--font-display, Rubik, sans-serif);
  font-size: clamp(1.25rem, 1.85vw, 1.5625rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--ink-soft, var(--ia-muted));
  max-width: none;
}
.home-b-scope .hb-hero-tagline-mark {
  display: inline;
  white-space: nowrap;
  background-image: linear-gradient(to top, rgba(82, 248, 150, 0.42) 0 62%, transparent 62%);
  padding-inline: 3px;
}
.home-b-scope .hb-hero-ctarow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
}
.home-b-scope .hb-hero-cta {
  font-family: var(--font-display, Rubik, sans-serif);
  font-weight: 600;
  font-size: 17px;
  padding: 17px 30px;
  border-radius: 12px;
  white-space: nowrap;
}
/* Botão primário padrão da Home B (azul Agendor + branco). */
.home-b-scope .ia-btn-primary {
  background-color: #0030a0;
  color: #ffffff;
  border: 1px solid #0030a0;
  text-decoration: none;
  transition: background-color 200ms ease-out, border-color 200ms ease-out;
}
.home-b-scope .ia-btn-primary:hover {
  background-color: #002a8d;
  border-color: #002a8d;
}
.home-b-scope .hb-hero-micro {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-soft, var(--ia-muted));
}
.home-b-scope .hb-hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 26px 0 0;
  font-size: 13.5px;
  color: var(--ink-soft, var(--ia-muted));
}
.home-b-scope .hb-hero-rating strong {
  color: var(--ink, var(--ia-ink));
  font-weight: 700;
}

/* --- O PALCO (cena animada: WhatsApp → Agente de IA → Funil) --- */
.home-b-scope .hb-stage {
  position: relative;
  aspect-ratio: 10 / 9.4;
  isolation: isolate;
  transition: opacity 0.38s ease;
}
.home-b-scope .hb-stage-photo {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--hb-sh-lg, 0 30px 60px -30px rgba(3, 15, 55, 0.28));
}
.home-b-scope .hb-stage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.82) brightness(0.92);
}
.home-b-scope .hb-stage-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7, 21, 41, 0.1), rgba(7, 21, 41, 0.62));
}
.home-b-scope .hb-stage-tags {
  position: absolute;
  left: 18px;
  bottom: 16px;
  max-width: 46%;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
}
.home-b-scope .hb-stage-tag-off {
  opacity: 0.55;
  font-weight: 400;
}

/* Linha única: só aparece na sincronização. */
.home-b-scope .hb-stage-linha {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  overflow: visible;
  pointer-events: none;
}
.home-b-scope .hb-stage-linha path {
  fill: none;
  stroke: #b9aef7;
  stroke-width: 1.25;
  stroke-linecap: round;
  opacity: 0;
}
.home-b-scope .hb-stage-linha path.is-on {
  opacity: 0.55;
}

/* Card do WhatsApp */
.home-b-scope .hb-stage-chatwrap {
  position: absolute;
  z-index: 7;
  top: -34px;
  left: -42px;
  width: 44%;
  min-width: 230px;
}
.home-b-scope .hb-stage-card {
  background: #ffffff;
  border: 1px solid var(--hb-line, var(--ia-border));
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(33, 28, 78, 0.14);
  padding: 12px;
}
.home-b-scope .hb-stage-wa-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hb-line, var(--ia-border));
}
.home-b-scope .hb-stage-wa-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  background: #e7e8ec;
  display: inline-flex;
  flex: none;
}
.home-b-scope .hb-stage-wa-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.home-b-scope .hb-stage-wa-id {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
  min-width: 0;
}
.home-b-scope .hb-stage-wa-id strong {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink, var(--ia-ink));
}
.home-b-scope .hb-stage-wa-id > span {
  font-size: 10.5px;
  color: #14a05a;
}
.home-b-scope .hb-stage-msg {
  max-width: 88%;
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink, var(--ia-ink));
  padding: 8px 10px;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(6px);
}
.home-b-scope .hb-stage-msg.is-on {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}
.home-b-scope .hb-stage-msg-in {
  background: #f1f2f6;
}
.home-b-scope .hb-stage-msg-out {
  background: #dcf8e7;
  margin-left: auto;
}
.home-b-scope .hb-stage-msg-time {
  display: block;
  margin-top: 2px;
  font-size: 9.5px;
  color: #9aa0ad;
  text-align: right;
}

/* Badge do Agente de IA */
.home-b-scope .hb-stage-ava {
  position: absolute;
  z-index: 6;
  left: 4%;
  top: 40%;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 7px;
  background: #ffffff;
  border-radius: 14px;
  padding: 7px 13px 7px 7px;
  box-shadow: 0 10px 30px rgba(33, 28, 78, 0.14);
  font-size: 10px;
  line-height: 1.25;
  color: #6b7280;
  width: max-content;
  max-width: 150px;
  opacity: 0;
  transform: translateY(14px);
}
.home-b-scope .hb-stage-ava-av {
  grid-row: span 2;
}
.home-b-scope .hb-stage-ava strong,
.home-b-scope .hb-stage-ava > span:last-child {
  grid-column: 2;
  display: block;
}


.home-b-scope .hb-stage-ava.is-on {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.home-b-scope .hb-stage-ava strong {
  color: var(--ink, var(--ia-ink));
  font-weight: 700;
  font-size: 11.5px;
}

.home-b-scope .hb-stage-ava-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  overflow: hidden;
  background: #e7e8ec;
  display: inline-flex;
  flex: none;
}
.home-b-scope .hb-stage-ava-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-b-scope .hb-stage-ava::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 16px;
  border: 1px solid #6d4aff;
  opacity: 0;
}

.home-b-scope .hb-stage-ava.is-pulse::before {
  animation: hb-stage-pulso 1.6s ease-out 1;
}

/* Janela do funil, fiel ao produto */
.home-b-scope .hb-stage-funil {
  position: absolute;
  z-index: 5;
  right: -9%;
  bottom: -30px;
  width: 66%;
  min-width: 330px;
  max-width: 100%;
  background: #f5f6fa;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(33, 28, 78, 0.14);
  overflow: hidden;
}
.home-b-scope .hb-stage-appnav {
  background: #171438;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 14px;
  overflow: hidden;
  min-width: 0;
}
.home-b-scope .hb-stage-appnav-logo {
  color: #ffffff;
  font-family: var(--font-display, Rubik, sans-serif);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}
.home-b-scope .hb-stage-appnav-menu {
  flex: 0 1 auto;
  display: flex;
  gap: 12px;
  font-size: 9.5px;
  font-weight: 700;
  color: #b8b5d1;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
}

.home-b-scope .hb-stage-appnav-menu .is-ativo {
  color: #ffffff;
  position: relative;
}
.home-b-scope .hb-stage-appnav-menu .is-ativo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  background: #3ee6a8;
}
.home-b-scope .hb-stage-appnav-user {
  margin-left: auto;
  flex: 0 1 auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}
.home-b-scope .hb-stage-appnav-av {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #4b3f8f;
  flex: none;
}
.home-b-scope .hb-stage-appnav-quem {
  font-size: 8.5px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-b-scope .hb-stage-appnav-quem small {
  display: block;
  color: #b8b5d1;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-b-scope .hb-stage-funil-corpo {
  display: flex;
  align-items: stretch;
}
.home-b-scope .hb-stage-side {
  width: 38px;
  background: #ffffff;
  border-right: 1px solid #eceef3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 10px 0 8px;
  flex: none;
}
.home-b-scope .hb-stage-side-btn {
  width: 27px;
  height: 27px;
  border-radius: 9px;
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(33, 28, 78, 0.14);
  font-size: 6.8px;
  font-weight: 700;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-b-scope .hb-stage-side-btn.is-ativo {
  background: #6d4aff;
  color: #ffffff;
}
.home-b-scope .hb-stage-side-gear {
  margin-top: auto;
  box-shadow: none;
}
.home-b-scope .hb-stage-funil-main {
  flex: 1;
  min-width: 0;
}
.home-b-scope .hb-stage-funil-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px 10px;
  background: #f5f6fa;
}
.home-b-scope .hb-stage-funil-head strong {
  font-family: var(--font-display, Rubik, sans-serif);
  color: #6d4aff;
  font-weight: 700;
  font-size: 15px;
}
.home-b-scope .hb-stage-funil-moeda {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #9aa0ad;
  color: #6b7280;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.home-b-scope .hb-stage-funil-valor {
  font-weight: 700;
  font-size: 12.5px;
  color: var(--ink, var(--ia-ink));
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.home-b-scope .hb-stage-funil-pill {
  background: #63687a;
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 700;
  border-radius: 6px;
  padding: 3px 8px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.home-b-scope .hb-stage-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 2px 6px 14px;
  position: relative;
}
.home-b-scope .hb-stage-col {
  padding: 0 9px;
  position: relative;
  min-width: 0;
}
.home-b-scope .hb-stage-col::after {
  content: "";
  position: absolute;
  right: 1px;
  top: 36px;
  bottom: 6px;
  width: 5px;
  border-radius: 99px;
  background: #4b3f8f;
  opacity: 0.85;
}
.home-b-scope .hb-stage-col-head {
  margin: 2px 2px 9px;
}
.home-b-scope .hb-stage-col-head h4 {
  margin: 0;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--ink, var(--ia-ink));
}
.home-b-scope .hb-stage-col-sub {
  font-size: 9.5px;
  color: #6b7280;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.home-b-scope .hb-stage-neg {
  background: #ffffff;
  border-radius: 10px;
  padding: 9px 10px;
  margin: 0 10px 8px 0;
  box-shadow: 0 1px 4px rgba(33, 28, 78, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.home-b-scope .hb-stage-neg-info {
  min-width: 0;
}
.home-b-scope .hb-stage-neg-nome {
  margin: 0;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink, var(--ia-ink));
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.home-b-scope .hb-stage-neg-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00b874;
  flex: none;
  margin-top: 3px;
  display: none;
}
.home-b-scope .hb-stage-neg-empresa {
  margin: 1px 0 0;
  font-size: 9.5px;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-b-scope .hb-stage-neg-valor {
  margin: 2px 0 0;
  font-size: 9.5px;
  color: #6b7280;
  font-variant-numeric: tabular-nums;
}
.home-b-scope .hb-stage-selo {
  display: none;
  margin-top: 5px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: #00b874;
  border-radius: 4px;
  padding: 2px 6px;
  width: max-content;
}
.home-b-scope .hb-stage-chip {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  position: relative;
}
.home-b-scope .hb-stage-chip-verde {
  background: #dff5e9;
  color: #27ae60;
}
.home-b-scope .hb-stage-chip-amarelo {
  background: #fdeed3;
  color: #e8a33d;
}
.home-b-scope .hb-stage-chip-vermelho {
  background: #fdecec;
  color: #e05252;
}
.home-b-scope .hb-stage-chip-mini {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #ffffff;
}

/* Estados do negócio que se move */
.home-b-scope .hb-stage-mover {
  transition: box-shadow 0.5s ease;
}
.home-b-scope .hb-stage-mover.is-sync {
  box-shadow: 0 0 0 1.5px rgba(109, 74, 255, 0.5), 0 4px 12px rgba(109, 74, 255, 0.12);
}
.home-b-scope .hb-stage-mover.is-voando {
  position: relative;
  z-index: 10;
  transition: transform 1.15s cubic-bezier(0.33, 0, 0.15, 1), box-shadow 0.5s ease;
  box-shadow: 0 8px 20px rgba(33, 28, 78, 0.16);
}
.home-b-scope .hb-stage-mover.is-ganhou {
  box-shadow: 0 0 0 1.5px rgba(0, 184, 116, 0.55);
}
.home-b-scope .hb-stage-mover.is-ganhou .hb-stage-neg-dot {
  display: inline-block;
}
.home-b-scope .hb-stage-mover.is-ganhou .hb-stage-selo {
  display: block;
  animation: hb-stage-pop 0.55s ease-out;
}

@keyframes hb-stage-pop {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes hb-stage-pulso {
  from {
    opacity: 0.45;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(1.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-b-scope .hb-stage-msg,
  .home-b-scope .hb-stage-ava {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .home-b-scope .hb-stage-linha {
    display: none;
  }
}


/* Faixa de logos abaixo da hero. */
.home-b-scope .hb-hero-trust {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  text-align: left;
  border-top: 1px solid var(--hb-line, var(--ia-border));
  padding-top: 26px;
  padding-bottom: 34px;
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}
.home-b-scope .hb-hero-trust-txt {
  margin: 0;
  font-family: var(--font-display, Rubik, sans-serif);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink, var(--ia-ink));
}
.home-b-scope .hb-hero-trust-txt strong {
  color: var(--brand-blue, #0030a0);
  font-weight: 600;
}
.home-b-scope .hb-hero-trust .hb-hero-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}
.home-b-scope .hb-hero-trust .hb-hero-logos img {
  height: 30px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.home-b-scope .hb-hero-trust .hb-hero-logos img:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Mock do produto (plataforma) logo abaixo da faixa de logos. */
.home-b-scope .hb-hero-product {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  padding-top: 8px;
  padding-bottom: 48px;
}
.home-b-scope .hb-hero-product-fig {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--hb-line, var(--ia-border));
  box-shadow: var(--hb-sh-lg, 0 30px 60px -30px rgba(3, 15, 55, 0.28));
}
.home-b-scope .hb-hero-product-img {
  width: 100%;
  height: auto;
  display: block;
}


@media (max-width: 1023px) {
  .home-b-scope .hb-hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .home-b-scope .hb-hero-copy .hb-h1,
  .home-b-scope .hb-hero-tagline {
    max-width: none;
  }
  .home-b-scope .hb-stage {
    aspect-ratio: auto;
    height: auto;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .home-b-scope .hb-stage-linha {
    display: none;
  }
  .home-b-scope .hb-stage-photo {
    position: relative;
    inset: auto;
    width: 100%;
    height: 300px;
    order: 2;
  }
  .home-b-scope .hb-stage-chatwrap {
    position: relative;
    inset: auto;
    order: 1;
    width: min(330px, 100%);
    margin-bottom: -26px;
  }
  .home-b-scope .hb-stage-ava {
    position: relative;
    inset: auto;
    order: 3;
    margin: -14px 0 10px;
    opacity: 1;
    transform: none;
  }
  .home-b-scope .hb-stage-funil {
    position: relative;
    inset: auto;
    order: 4;
    width: 94%;
    min-width: 0;
    margin-top: 4px;
  }
}


@media (max-width: 767px) {
  .home-b-scope .hb-hero {
    padding-top: 40px;
  }
  .home-b-scope .hb-hero-copy .hb-h1 {
    font-size: clamp(2rem, 8.6vw, 2.375rem);
  }
  .home-b-scope .hb-hero-tagline {
    font-size: 1.0625rem;
  }
  .home-b-scope .hb-hero-ctarow {
    gap: 14px;
    flex-direction: column;
    align-items: stretch;
  }
  .home-b-scope .hb-hero-micro {
    text-align: center;
  }
  .home-b-scope .hb-hero-cta {
    width: 100%;
    justify-content: center;
  }
  .home-b-scope .hb-hero-trust {
    gap: 18px;
  }
  .home-b-scope .hb-hero-trust .hb-hero-logos {
    gap: 20px;
  }
  .home-b-scope .hb-hero-trust .hb-hero-logos img {
    height: 24px;
  }
}

/* ── 04 · Conheça as soluções do Agendor (bento) ──────────────────────────── */
.home-b-scope .hb-sol-head {
  max-width: 720px;
}
.home-b-scope .hb-sol-eyebrow {
  font-family: var(--font-display, Rubik), sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.home-b-scope .hb-sol-lead {
  margin-top: 16px;
}
.home-b-scope .hb-sol-bento {
  margin-top: 48px;
  display: grid;
  gap: 20px;
  grid-template-columns: 5fr 3.5fr 3.5fr;
  grid-template-areas:
    "intel crm crm"
    "intel dupla dupla2";
  align-items: stretch;
}
.home-b-scope .hb-sol-intel { grid-area: intel; }
.home-b-scope .hb-sol-crm { grid-area: crm; }
.home-b-scope .hb-sol-chat,
.home-b-scope .hb-sol-ava { min-width: 0; }
.home-b-scope .hb-sol-bento > .hb-sol-chat { grid-area: dupla; }
.home-b-scope .hb-sol-bento > .hb-sol-ava { grid-area: dupla2; }

.home-b-scope .hb-sol-card {
  position: relative;
  display: block;
  border: 1px solid var(--line, #e7e8ec);
  border-radius: 20px;
  padding: 28px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.home-b-scope .hb-sol-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(3, 15, 55, 0.12);
  border-color: rgba(0, 48, 160, 0.28);
}
.home-b-scope .hb-sol-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft, #5b6172);
}
.home-b-scope .hb-sol-h3 {
  font-family: var(--font-display, Rubik), sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-top: 6px;
  color: var(--ink, #0b1020);
}
.home-b-scope .hb-sol-desc {
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft, #5b6172);
}
.home-b-scope .hb-sol-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--brand);
}
.home-b-scope .hb-sol-card:hover .hb-sol-link { text-decoration: underline; }

/* Card 1 · Intelligence (navy) */
.home-b-scope .hb-sol-intel {
  background: #071529;
  border-color: #071529;
  display: flex;
  flex-direction: column;
}
.home-b-scope .hb-sol-intel .hb-sol-kicker { color: rgba(255, 255, 255, 0.62); }
.home-b-scope .hb-sol-intel .hb-sol-h3 { color: #fff; }
.home-b-scope .hb-sol-intel .hb-sol-desc { color: rgba(255, 255, 255, 0.76); }
.home-b-scope .hb-sol-intel .hb-sol-link { color: var(--brand-green); }
.home-b-scope .hb-sol-painel {
  position: relative;
  margin: 24px 0 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 40px rgba(3, 15, 55, 0.45);
}
.home-b-scope .hb-sol-painel img {
  display: block;
  width: 100%;
  height: auto;
}
.home-b-scope .hb-sol-painel figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 8px 12px;
  font-size: 0.6875rem;
  color: #fff;
  background: linear-gradient(to top, rgba(7, 21, 41, 0.86), rgba(7, 21, 41, 0));
}
.home-b-scope .hb-sol-rotulo {
  margin-top: 24px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.home-b-scope .hb-sol-pills {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
}
.home-b-scope .hb-sol-pills li {
  font-size: 0.8125rem;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
}
.home-b-scope .hb-sol-pills li.is-green {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #071529;
  font-weight: 600;
}
.home-b-scope .hb-sol-intel .hb-sol-link { margin-top: auto; padding-top: 24px; }

/* Card 2 · CRM (tint azul, imagem sangrando) */
.home-b-scope .hb-sol-crm {
  background: var(--brand-soft, #eaf0ff);
  border-color: rgba(0, 48, 160, 0.12);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 20px;
  padding-right: 0;
}
.home-b-scope .hb-sol-crm-texto { min-width: 0; }
.home-b-scope .hb-sol-crm-midia { min-width: 0; }
.home-b-scope .hb-sol-crm-midia img {
  display: block;
  width: 118%;
  max-width: 118%;
  height: auto;
  border-radius: 16px 0 0 16px;
  box-shadow: 0 18px 40px rgba(3, 15, 55, 0.14);
}

/* Card 3 · Chat */
.home-b-scope .hb-sol-chat { background: #f5f7fa; }
.home-b-scope .hb-sol-bolhas {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.home-b-scope .hb-sol-bolha {
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 92%;
}
.home-b-scope .hb-sol-bolha.is-cliente {
  background: #fff;
  border: 1px solid var(--line, #e7e8ec);
  border-bottom-left-radius: 4px;
  color: var(--ink, #0b1020);
}
.home-b-scope .hb-sol-bolha.is-vendedor {
  align-self: flex-end;
  background: var(--brand-soft, #eaf0ff);
  border: 1px solid rgba(0, 48, 160, 0.14);
  border-bottom-right-radius: 4px;
  color: var(--ink, #0b1020);
}

/* Card 4 · Ava */
.home-b-scope .hb-sol-ava {
  background: #fff;
  border: 1px solid #071529;
}
.home-b-scope .hb-sol-selo {
  display: block;
  width: fit-content;
  margin: 0 0 16px auto;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  background: #071529;
  color: var(--brand-green);
}
.home-b-scope .hb-sol-ava-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.home-b-scope .hb-sol-ava-foto {
  width: 48px;
  height: 48px;
  flex: none;
  border-radius: 999px;
  object-fit: cover;
  object-position: center 20%;
  background: var(--brand-soft, #eaf0ff);
}
.home-b-scope .hb-sol-ava-head .hb-sol-h3 { margin-top: 2px; }
.home-b-scope .hb-sol-log {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
}
.home-b-scope .hb-sol-log li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ink, #0b1020);
  background: #f5f7fa;
  border: 1px solid var(--line, #e7e8ec);
  border-radius: 12px;
  padding: 10px 12px;
}
.home-b-scope .hb-sol-log-check {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: none;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #0a7a44;
  background: rgba(82, 248, 150, 0.22);
  border-radius: 999px;
  padding: 3px 8px;
}

@media (max-width: 1024px) {
  .home-b-scope .hb-sol-bento {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "intel" "crm" "dupla" "dupla2";
  }
  .home-b-scope .hb-sol-crm {
    grid-template-columns: minmax(0, 1fr);
    padding-right: 28px;
  }
  .home-b-scope .hb-sol-crm-midia img {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-b-scope .hb-sol-card { transition: none; }
  .home-b-scope .hb-sol-card:hover { transform: none; }
}

/* ── 05 · Inteligência Artificial (faixa navy + sticky stack) ─────────────── */
.home-b-scope .hb-ia {
  background: #fff;
}
.home-b-scope .hb-ia-band {
  background: #071529;
  border-radius: 40px;
  padding: 96px 0 120px;
}
.home-b-scope .hb-ia-head {
  max-width: 760px;
}
.home-b-scope .hb-ia-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display, Rubik), sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #52f896;
  margin-bottom: 16px;
}
.home-b-scope .hb-ia-eyebrow-tr {
  display: inline-block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: #52f896;
}
.home-b-scope .hb-ia-h2 {
  font-family: var(--font-display, Rubik), sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.875rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}
.home-b-scope .hb-ia-h2-verde {
  color: #52f896;
}
.home-b-scope .hb-ia-lead {
  margin-top: 18px;
  max-width: 560px;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #aab8cf;
}

.home-b-scope .hb-ia-stack {
  margin-top: 56px;
}
.home-b-scope .hb-ia-painel {
  position: sticky;
  top: 88px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.35);
  margin-bottom: 40px;
}
.home-b-scope .hb-ia-painel:last-child {
  margin-bottom: 0;
}
.home-b-scope .hb-ia-texto {
  background: #eaf0ff;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-b-scope .hb-ia-visual {
  background: #fff;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.home-b-scope .hb-ia-painel.is-invertido .hb-ia-texto {
  order: 2;
}
.home-b-scope .hb-ia-painel.is-invertido .hb-ia-visual {
  order: 1;
}
.home-b-scope .hb-ia-tag {
  align-self: flex-start;
  background: #071529;
  color: #52f896;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 0 20px;
}
.home-b-scope .hb-ia-h3 {
  font-family: var(--font-display, Rubik), sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 2.4vw, 2.125rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink, #0b1220);
  margin: 0;
}
.home-b-scope .hb-ia-efeito {
  margin: 12px 0 0;
  font-family: var(--font-display, Rubik), sans-serif;
  font-weight: 500;
  font-size: 1.125rem;
  color: #0030a0;
}
.home-b-scope .hb-ia-paragrafo {
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft, #4a5568);
  max-width: 46ch;
}

/* Mocks */
.home-b-scope .hb-ia-mock {
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--line, #e7e8ec);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(3, 15, 55, 0.08);
}
.home-b-scope .hb-ia-mock-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft, #4a5568);
}
.home-b-scope .hb-ia-mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #52f896;
}
.home-b-scope .hb-ia-bolha {
  position: relative;
  margin: 0 0 10px;
  padding: 12px 14px;
  border-radius: 14px 14px 14px 4px;
  background: #f5f7fa;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ink, #0b1220);
  max-width: 92%;
}
.home-b-scope .hb-ia-bolha.is-out {
  margin-left: auto;
  border-radius: 14px 14px 4px 14px;
  background: rgba(82, 248, 150, 0.18);
}
.home-b-scope .hb-ia-bolha-meta {
  display: block;
  margin-top: 4px;
  font-size: 0.6875rem;
  color: var(--ink-soft, #4a5568);
}
.home-b-scope .hb-ia-acoes {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.home-b-scope .hb-ia-acoes li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(82, 248, 150, 0.14);
  font-size: 0.875rem;
  color: var(--ink, #0b1220);
}
.home-b-scope .hb-ia-acao-txt {
  flex: 1 1 auto;
  min-width: 0;
}
.home-b-scope .hb-ia-ava-av {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(3, 15, 55, 0.08);
}
.home-b-scope .hb-ia-ava-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-b-scope .hb-ia-ava-insight {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  vertical-align: middle;
  margin-right: 6px;
  box-shadow: 0 0 0 1px rgba(3, 15, 55, 0.08);
}
.home-b-scope .hb-ia-ava-insight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-b-scope .hb-ia-badge {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #0f6b3d;
}
.home-b-scope .hb-ia-metricas {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.home-b-scope .hb-ia-metrica-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 8px;
  font-size: 0.875rem;
  color: var(--ink-soft, #4a5568);
}
.home-b-scope .hb-ia-metrica-top strong {
  color: var(--ink, #0b1220);
}
.home-b-scope .hb-ia-barra {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: #eef1f6;
  overflow: hidden;
}
.home-b-scope .hb-ia-barra > span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: #0030a0;
}
.home-b-scope .hb-ia-barra > span.is-verde {
  background: #52f896;
}
.home-b-scope .hb-ia-insight {
  margin: 18px 0 0;
  padding: 14px;
  border-radius: 12px;
  background: #eaf0ff;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink, #0b1220);
}

@media (max-width: 920px) {
  .home-b-scope .hb-ia-band {
    border-radius: 28px;
    padding: 64px 0;
  }
  .home-b-scope .hb-ia-painel {
    position: static;
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  }
  .home-b-scope .hb-ia-painel.is-invertido .hb-ia-texto {
    order: 0;
  }
  .home-b-scope .hb-ia-painel.is-invertido .hb-ia-visual {
    order: 0;
  }
  .home-b-scope .hb-ia-texto {
    padding: 32px 24px;
  }
  .home-b-scope .hb-ia-visual {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-b-scope .hb-ia-painel {
    position: static;
  }
}

/* ── 02 · Prova social (faixa azul clara flutuante + trilho de vídeos) ────── */
.home-b-scope .hb-ps {
  background: #fff;
  padding-block: 0;
}
.home-b-scope .hb-ps-band {
  background: #eaf0ff;
  border-radius: 40px;
  padding: 96px 0 104px;
}
.home-b-scope .hb-ps-topo {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.home-b-scope .hb-ps-titulo {
  position: sticky;
  top: 96px;
}
.home-b-scope .hb-ps-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-family: var(--font-display, Rubik), sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0030a0;
}
.home-b-scope .hb-ps-eyebrow-tr {
  display: inline-block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: #52f896;
}
.home-b-scope .hb-ps-h2 {
  margin: 0;
  font-family: var(--font-display, Rubik), sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink, #0b1220);
  text-wrap: balance;
}
.home-b-scope .hb-ps-mark {
  background: linear-gradient(transparent 62%, #52f896 62%);
  padding-inline: 2px;
}

.home-b-scope .hb-ps-trilho {
  list-style: none;
  margin: 0;
  padding: 0 24px 4px 0;
  margin-right: calc(50% - 50vw + 24px);
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.home-b-scope .hb-ps-trilho::-webkit-scrollbar {
  display: none;
}
.home-b-scope .hb-ps-item {
  flex: none;
  width: 460px;
  max-width: 82vw;
  scroll-snap-align: start;
}
.home-b-scope .hb-ps-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 0;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #0b1220;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(3, 15, 55, 0.14);
}
.home-b-scope .hb-ps-capa {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.home-b-scope .hb-ps-card:hover .hb-ps-capa {
  transform: scale(1.04);
}
.home-b-scope .hb-ps-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 21, 41, 0.88) 0%,
    rgba(7, 21, 41, 0.45) 42%,
    rgba(7, 21, 41, 0.08) 100%
  );
}
.home-b-scope .hb-ps-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #fff;
  color: #0030a0;
  box-shadow: 0 8px 24px rgba(3, 15, 55, 0.28);
  transition: transform 0.25s ease;
}
.home-b-scope .hb-ps-card:hover .hb-ps-play {
  transform: translate(-50%, -50%) scale(1.06);
}
.home-b-scope .hb-ps-legenda {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: block;
  text-align: left;
  font-family: var(--font-display, Rubik), sans-serif;
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}
.home-b-scope .hb-ps-legenda-forte {
  font-weight: 700;
  color: #071529;
  background: #52f896;
  border-radius: 4px;
  padding: 0 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.home-b-scope .hb-ps-seo {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.home-b-scope .hb-ps-seo-h3 {
  font: inherit;
  margin: 0;
}

.home-b-scope .hb-ps-setas {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
}
.home-b-scope .hb-ps-seta {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0, 48, 160, 0.35);
  background: #fff;
  color: #0030a0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.home-b-scope .hb-ps-seta:hover:not(:disabled) {
  background: #0030a0;
  color: #fff;
}
.home-b-scope .hb-ps-seta:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.home-b-scope .hb-ps-base {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid rgba(0, 48, 160, 0.14);
}
.home-b-scope .hb-ps-lead {
  margin: 0 0 44px;
  max-width: 760px;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-soft, #5b6577);
}
.home-b-scope .hb-ps-lead strong {
  color: var(--ink, #0b1220);
  font-weight: 700;
}
.home-b-scope .hb-ps-depos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 32px;
}
.home-b-scope .hb-ps-depo-metrica {
  margin: 0;
  font-family: var(--font-display, Rubik), sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.625rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: #0030a0;
}
.home-b-scope .hb-ps-depo-complemento {
  margin: 8px 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft, #5b6577);
}
.home-b-scope .hb-ps-depo-quote {
  margin: 18px 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink, #0b1220);
}
.home-b-scope .hb-ps-depo-autor {
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.8125rem;
  color: var(--ink-soft, #5b6577);
}
.home-b-scope .hb-ps-depo-autor b {
  color: var(--ink, #0b1220);
  font-size: 0.875rem;
}
.home-b-scope .hb-ps-nota {
  margin: 36px 0 0;
  font-size: 0.8125rem;
  color: var(--ink-soft, #5b6577);
}

@media (max-width: 1099px) {
  .home-b-scope .hb-ps-depos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 919px) {
  .home-b-scope .hb-ps-band {
    padding: 64px 0 72px;
    border-radius: 28px;
  }
  .home-b-scope .hb-ps-topo {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .home-b-scope .hb-ps-titulo {
    position: static;
  }
  .home-b-scope .hb-ps-trilho {
    margin-right: calc(50% - 50vw + 20px);
    padding-right: 20px;
  }
  .home-b-scope .hb-ps-item {
    width: 82vw;
  }
  .home-b-scope .hb-ps-base {
    margin-top: 56px;
    padding-top: 40px;
  }
}
@media (max-width: 559px) {
  .home-b-scope .hb-ps-depos {
    grid-template-columns: minmax(0, 1fr);
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-b-scope .hb-ps-titulo {
    position: static;
  }
  .home-b-scope .hb-ps-capa,
  .home-b-scope .hb-ps-card:hover .hb-ps-capa,
  .home-b-scope .hb-ps-card:hover .hb-ps-play {
    transition: none;
    transform: none;
  }
  .home-b-scope .hb-ps-card:hover .hb-ps-play {
    transform: translate(-50%, -50%);
  }
}

/* Ajustes finos da prova social: marca texto inteira na mesma linha, scrim mais
   forte na base e autoria alinhada na mesma linha de base. */
.home-b-scope .hb-ps-mark {
  white-space: nowrap;
}
.home-b-scope .hb-ps-scrim {
  background: linear-gradient(
    to top,
    rgba(7, 21, 41, 0.94) 0%,
    rgba(7, 21, 41, 0.62) 38%,
    rgba(7, 21, 41, 0.1) 100%
  );
}
.home-b-scope .hb-ps-depo {
  display: flex;
  flex-direction: column;
}
.home-b-scope .hb-ps-depo-autor {
  margin-top: auto;
  padding-top: 14px;
}

/* Ajustes: respiro após a faixa navy, alinhamento do eyebrow, cards 20% maiores,
   esmaecer na entrada do trilho e centralização do último vídeo. */
.home-b-scope .hb-ps {
  padding-top: 50px;
}
.home-b-scope .hb-ps-eyebrow {
  line-height: 1;
  margin-top: 2px;
}
.home-b-scope .hb-ps-item {
  width: 552px;
}
.home-b-scope .hb-ps-item:last-child {
  scroll-snap-align: end;
}
.home-b-scope .hb-ps-carrossel {
  position: relative;
}
.home-b-scope .hb-ps-carrossel::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -48px;
  width: 96px;
  height: calc(100% - 56px);
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    to right,
    #eaf0ff 0%,
    #eaf0ff 42%,
    rgba(234, 240, 255, 0.72) 68%,
    rgba(234, 240, 255, 0) 100%
  );
}
@media (max-width: 919px) {
  .home-b-scope .hb-ps-item {
    width: 82vw;
  }
  .home-b-scope .hb-ps-carrossel::before {
    display: none;
  }
}

/* ── 06 · Hub de integrações (Home B) ──────────────────────────────────── */
.home-b-scope .hb-hub-head {
  max-width: 760px;
}
.home-b-scope .hb-hub-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-family: var(--font-display, Rubik), sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0030a0;
}
.home-b-scope .hb-hub-eyebrow-tr {
  display: inline-block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: #52f896;
}
.home-b-scope .hb-hub-h2 {
  margin: 0;
  font-family: var(--font-display, Rubik), sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink, #0b1220);
  text-wrap: balance;
}
.home-b-scope .hb-hub-lead {
  margin: 16px 0 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ia-muted, #56607a);
}
.home-b-scope .hb-hub-marquees {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home-b-scope .hb-hub-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 96px,
    #000 calc(100% - 96px),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 96px,
    #000 calc(100% - 96px),
    transparent 100%
  );
}
.home-b-scope .hb-hub-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
}
.home-b-scope .hb-hub-track-esq {
  animation: hb-hub-esq 40s linear infinite;
}
.home-b-scope .hb-hub-track-dir {
  animation: hb-hub-dir 40s linear infinite;
}
@keyframes hb-hub-esq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes hb-hub-dir {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.home-b-scope .hb-hub-marquee:hover .hb-hub-track,
.home-b-scope .hb-hub-marquee:focus-within .hb-hub-track {
  animation-play-state: paused;
}
.home-b-scope .hb-hub-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  height: 76px;
  padding: 16px 20px;
  background: #f5f7fa;
  border: 1px solid #e7e9ef;
  border-radius: 12px;
}
.home-b-scope .hb-hub-logo img {
  max-height: 30px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 180ms ease-out, opacity 180ms ease-out;
}
.home-b-scope .hb-hub-marquee:hover .hb-hub-logo img {
  filter: grayscale(0);
  opacity: 1;
}
.home-b-scope .hb-hub-grid {
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .home-b-scope .hb-hub-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .home-b-scope .hb-hub-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
.home-b-scope .hb-hub-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--hb-line, #e7e9ef);
  border-radius: 12px;
  box-shadow: none;
  transition: box-shadow 160ms ease, border-color 160ms ease, transform 160ms ease;
}
.home-b-scope .hb-hub-card:hover {
  transform: translateY(-2px);
  border-color: #c3d0f0;
  box-shadow: var(--hb-sh-md, 0 8px 24px rgba(3, 15, 55, 0.08));
}
.home-b-scope .hb-hub-card svg {
  color: #0030a0;
}
.home-b-scope .hb-hub-card-titulo {
  margin: 0;
  font-family: var(--font-display, Rubik), sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ia-strong, #0b1220);
}
.home-b-scope .hb-hub-card-texto {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ia-muted, #56607a);
}
.home-b-scope .hb-hub-cta {
  margin: 28px 0 0;
}
.home-b-scope .hb-hub-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display, Rubik), sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #0030a0;
  text-decoration: none;
}
.home-b-scope .hb-hub-link:hover {
  text-decoration: underline;
}
@media (prefers-reduced-motion: reduce) {
  .home-b-scope .hb-hub-track {
    animation: none;
  }
  .home-b-scope .hb-hub-card:hover {
    transform: none;
  }
}

/* ══ HOME B · 11 · CTA FINAL (faixa azul de marca) ═════════════════════════ */
.home-b-scope .hb-ctaf {
  background: #fff;
}
.home-b-scope .hb-ctaf-band {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  margin: 32px 12px 12px;
  padding: 88px 0 0;
  background:
    radial-gradient(60% 60% at 92% 4%, rgba(77, 140, 255, 0.35), transparent 70%),
    radial-gradient(70% 70% at 4% 100%, rgba(0, 14, 56, 0.55), transparent 72%),
    linear-gradient(150deg, #0030a0, #002a8d);
}
.home-b-scope .hb-ctaf-grid {
  display: grid;
  gap: 48px;
}
@media (min-width: 1000px) {
  .home-b-scope .hb-ctaf-grid {
    grid-template-columns: minmax(0, 52fr) minmax(0, 48fr);
    align-items: end;
    gap: 24px;
  }
}
.home-b-scope .hb-ctaf-col {
  padding-bottom: 88px;
}
.home-b-scope .hb-ctaf-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-family: var(--font-display, Rubik), sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #52f896;
}
.home-b-scope .hb-ctaf-eyebrow-tr {
  display: inline-block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: #52f896;
}
.home-b-scope .hb-ctaf-h2 {
  font-family: var(--font-display, Rubik), sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}
.home-b-scope .hb-ctaf-mark {
  background: rgba(82, 248, 150, 0.22);
  box-shadow: 0 0 0 6px rgba(82, 248, 150, 0.22);
  border-radius: 4px;
}
.home-b-scope .hb-ctaf-portas {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}
.home-b-scope .hb-ctaf-porta + .hb-ctaf-porta {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 24px;
}
.home-b-scope .hb-ctaf-rotulo {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.home-b-scope .hb-ctaf-linha {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}
.home-b-scope .hb-ctaf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 26px;
  border-radius: 10px;
  font-family: var(--font-display, Rubik), sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}
.home-b-scope .hb-ctaf-btn:hover {
  transform: translateY(-2px);
}
.home-b-scope .hb-ctaf-btn-solido {
  background: #fff;
  color: #0030a0;
  box-shadow: 0 12px 28px rgba(3, 15, 55, 0.32);
}
.home-b-scope .hb-ctaf-btn-solido:hover {
  background: #f0f4ff;
}
.home-b-scope .hb-ctaf-btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}
.home-b-scope .hb-ctaf-btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.home-b-scope .hb-ctaf-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
}
.home-b-scope .hb-ctaf-tag svg {
  color: #52f896;
  flex: none;
}
.home-b-scope .hb-ctaf-confianca {
  margin: 36px 0 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}
.home-b-scope .hb-ctaf-foto {
  position: relative;
  align-self: end;
}
.home-b-scope .hb-ctaf-img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: clamp(300px, 42vw, 460px);
  object-fit: cover;
  object-position: center 42%;
  border-radius: 24px 24px 0 0;
  filter: drop-shadow(0 24px 48px rgba(3, 15, 55, 0.45));
}
@media (min-width: 1000px) {
  .home-b-scope .hb-ctaf-img {
    margin-right: -110px;
    width: calc(100% + 110px);
    max-width: none;
  }
}
.home-b-scope .hb-ctaf-ava {
  position: absolute;
  left: 12px;
  bottom: 32px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 380px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(3, 15, 55, 0.28);
}
.home-b-scope .hb-ctaf-ava-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 32px;
  height: 32px;
  margin-top: 1px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  background: transparent;
}
.home-b-scope .hb-ctaf-ava-texto {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #0b1220;
}
.home-b-scope .hb-ctaf-ava-badge {
  flex: none;
  align-self: flex-start;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(82, 248, 150, 0.2);
  color: #0a7a41;
  font-size: 0.6875rem;
  font-weight: 600;
}
@media (max-width: 999px) {
  .home-b-scope .hb-ctaf-band {
    padding-top: 64px;
  }
  .home-b-scope .hb-ctaf-col {
    padding-bottom: 0;
  }
  .home-b-scope .hb-ctaf-grid {
    gap: 40px;
  }
  .home-b-scope .hb-ctaf-btn {
    width: 100%;
    justify-content: center;
  }
  .home-b-scope .hb-ctaf-ava {
    left: 8px;
    right: 8px;
    bottom: 16px;
    max-width: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-b-scope .hb-ctaf-btn {
    transition: none;
  }
  .home-b-scope .hb-ctaf-btn:hover {
    transform: none;
  }
}


/* ══ 03 · TRÊS MOMENTOS: jornada em degraus + painel ══════════════════════ */
.home-b-scope .hb-jor-head { max-width: 860px; }
.home-b-scope .hb-jor-eyebrow {
  display: flex; align-items: center; gap: 10px; margin: 0 0 16px;
  font-family: var(--font-display, Rubik), sans-serif;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ia-blue, #0030a0);
}
.home-b-scope .hb-jor-eyebrow-tr {
  display: inline-block; width: 24px; height: 2px; border-radius: 2px; background: #52f896;
}
.home-b-scope .hb-jor-h2 {
  margin: 0;
  font-family: var(--font-display, Rubik), sans-serif;
  font-weight: 700; font-size: clamp(1.875rem, 3.6vw, 2.75rem);
  line-height: 1.1; letter-spacing: -0.02em; color: var(--ia-strong);
  text-wrap: balance;
}
.home-b-scope .hb-jor-mark {
  position: relative; z-index: 0; display: inline;
  background: linear-gradient(180deg, rgba(82, 248, 150, 0) 58%, rgba(82, 248, 150, 0.45) 58%);
  border-radius: 2px;
}
.home-b-scope .hb-jor-grid { display: grid; gap: 32px; margin-top: 48px; }
@media (min-width: 1000px) {
  .home-b-scope .hb-jor-grid { grid-template-columns: 340px minmax(0, 1fr); gap: 48px; align-items: start; }
}
.home-b-scope .hb-jor-steps { display: grid; gap: 12px; position: relative; }
@media (min-width: 1000px) {
  .home-b-scope .hb-jor-steps::before {
    content: ""; position: absolute; left: 32px; top: 28px; bottom: 28px;
    width: 1px; background: var(--hb-line, #e7e9ef);
  }
}
.home-b-scope .hb-jor-step {
  position: relative; z-index: 1;
  display: flex; align-items: flex-start; gap: 14px; width: 100%;
  text-align: left; cursor: pointer;
  padding: 16px 18px; border-radius: 14px;
  background: #ffffff; border: 1px solid var(--hb-line, #e7e9ef);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}
.home-b-scope .hb-jor-step:hover { border-color: rgba(0, 48, 160, 0.3); }
.home-b-scope .hb-jor-step:focus-visible { outline: 2px solid var(--ia-blue, #0030a0); outline-offset: 2px; }
.home-b-scope .hb-jor-step-num {
  display: inline-grid; place-items: center; flex: none;
  width: 32px; height: 32px; border-radius: 999px;
  font-family: var(--font-display, Rubik), sans-serif; font-size: 14px; font-weight: 600;
  background: rgba(0, 48, 160, 0.08); color: var(--ia-blue, #0030a0);
  transition: background-color 180ms ease, color 180ms ease;
}
.home-b-scope .hb-jor-step-txt { display: grid; gap: 2px; }
.home-b-scope .hb-jor-step-tit {
  font-family: var(--font-display, Rubik), sans-serif; font-weight: 600;
  font-size: 1rem; line-height: 1.3; color: var(--ia-strong);
}
.home-b-scope .hb-jor-step-sub { font-size: 0.875rem; line-height: 1.4; color: var(--ia-muted); }
.home-b-scope .hb-jor-step[data-active="true"] {
  border-color: var(--ia-blue, #0030a0);
  box-shadow: 0 10px 24px -16px rgba(3, 15, 55, 0.4);
}
.home-b-scope .hb-jor-step[data-active="true"] .hb-jor-step-num {
  background: var(--ia-blue, #0030a0); color: #ffffff;
}
.home-b-scope .hb-jor-step[data-porta="3"][data-active="true"] {
  background: #071529; border-color: #071529;
}
.home-b-scope .hb-jor-step[data-porta="3"][data-active="true"] .hb-jor-step-tit { color: #ffffff; }
.home-b-scope .hb-jor-step[data-porta="3"][data-active="true"] .hb-jor-step-sub { color: #b9c4d4; }
.home-b-scope .hb-jor-step[data-porta="3"][data-active="true"] .hb-jor-step-num {
  background: #52f896; color: #071529;
}
.home-b-scope .hb-jor-nota {
  margin: 20px 0 0; font-size: 0.875rem; line-height: 1.5; color: var(--ia-muted);
}

.home-b-scope .hb-jor-paineis { position: relative; }
.home-b-scope .hb-jor-painel {
  display: grid; gap: 28px; align-items: center;
  padding: 32px 24px; border-radius: 24px; min-height: 520px;
  background: #eaf0ff; border: 1px solid #dce6fb;
  color: var(--ia-text);
}
@media (min-width: 1180px) {
  .home-b-scope .hb-jor-painel { grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr); gap: 40px; padding: 40px; }
}
@media (min-width: 1180px) {
  .home-b-scope .hb-jor-painel-visual .hb-porta-midia-img { max-width: 420px; margin-inline: auto; }
}
.home-b-scope .hb-jor-painel[data-active="false"] { display: none; }
@media (prefers-reduced-motion: no-preference) {
  .home-b-scope .hb-jor-painel[data-active="true"] { animation: hb-jor-fade 220ms ease-out both; }
}
@keyframes hb-jor-fade { from { opacity: 0; } to { opacity: 1; } }
.home-b-scope .hb-jor-h3 {
  margin: 0; font-family: var(--font-display, Rubik), sans-serif; font-weight: 600;
  font-size: clamp(1.375rem, 2.2vw, 1.75rem); line-height: 1.22; color: var(--ia-strong);
}
.home-b-scope .hb-jor-prose { margin: 14px 0 0; font-size: 1rem; line-height: 1.6; color: var(--ia-text); }
.home-b-scope .hb-jor-bullets {
  display: grid; gap: 12px; margin: 22px 0 0; padding: 0; list-style: none;
}
.home-b-scope .hb-jor-bullets li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9375rem; line-height: 1.55; }
.home-b-scope .hb-jor-bullets svg { flex: none; margin-top: 3px; color: #0f7a45; }
.home-b-scope .hb-jor-rotulo {
  margin: 26px 0 10px; font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ia-muted);
}
.home-b-scope .hb-jor-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.home-b-scope .hb-jor-pills li {
  padding: 5px 11px; border-radius: 999px; font-size: 12.5px; line-height: 1.4;
  background: #ffffff; border: 1px solid var(--hb-line, #e7e9ef); color: var(--ia-strong);
}
.home-b-scope .hb-jor-cta { margin-top: 26px; }
.home-b-scope .hb-jor-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 10px;
  font-family: var(--font-display, Rubik), sans-serif; font-weight: 500; font-size: 0.9375rem;
  background: var(--ia-blue, #0030a0); color: #ffffff;
  box-shadow: 0 12px 28px -18px rgba(3, 15, 55, 0.6);
  transition: background-color 180ms ease, transform 180ms ease;
}
.home-b-scope .hb-jor-btn:hover { background: #002a8d; }
.home-b-scope .hb-jor-micro { margin: 12px 0 0; max-width: 420px; font-size: 0.8125rem; line-height: 1.5; color: var(--ia-muted); }
.home-b-scope .hb-jor-painel-visual { min-width: 0; }

/* Porta 3: mundo IA/Intelligence */
.home-b-scope .hb-jor-painel[data-porta="3"] {
  background:
    radial-gradient(60% 70% at 92% 6%, rgba(77, 140, 255, 0.32), transparent 70%),
    linear-gradient(160deg, #0d2038, #071529);
  border-color: rgba(255, 255, 255, 0.08);
}
.home-b-scope .hb-jor-painel[data-porta="3"] .hb-jor-h3 { color: #ffffff; }
.home-b-scope .hb-jor-painel[data-porta="3"] .hb-jor-prose,
.home-b-scope .hb-jor-painel[data-porta="3"] .hb-jor-bullets li,
.home-b-scope .hb-jor-painel[data-porta="3"] .hb-jor-micro,
.home-b-scope .hb-jor-painel[data-porta="3"] .hb-jor-rotulo { color: #b9c4d4; }
.home-b-scope .hb-jor-painel[data-porta="3"] .hb-jor-bullets svg { color: #52f896; }
.home-b-scope .hb-jor-painel[data-porta="3"] .hb-jor-pills li {
  background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.16); color: #eef2f8;
}
.home-b-scope .hb-jor-painel[data-porta="3"] .hb-jor-pills li[data-destaque="true"] {
  background: rgba(82, 248, 150, 0.16); border-color: rgba(82, 248, 150, 0.5); color: #52f896;
}
.home-b-scope .hb-jor-painel[data-porta="3"] .hb-jor-btn {
  background: #ffffff; color: #071529;
}
.home-b-scope .hb-jor-painel[data-porta="3"] .hb-jor-btn:hover { background: #eaf0ff; }

@media (max-width: 999px) {
  .home-b-scope .hb-jor-painel { min-height: 0; }
}

/* ============================================================
   MOCK FUNIL IMPORTADO — porta 1 da Jornada (Home B)
   HTML/CSS puro, sem imagens. Texto indexável, nítido em retina.
   ============================================================ */
.home-b-scope .hb-m1-scene {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
}
.home-b-scope .hb-m1-app {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--hb-sh-lg, 0 24px 60px -24px rgba(3, 15, 55, 0.28));
  overflow: hidden;
  border: 1px solid rgba(3, 15, 55, 0.06);
}
.home-b-scope .hb-m1-topbar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 16px;
  background: #161a34;
}
.home-b-scope .hb-m1-logo {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #5b51e8;
  color: #fff;
  font-family: "Rubik", "Rubik Fallback", sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: grid;
  place-items: center;
  flex: none;
}
.home-b-scope .hb-m1-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  color: #aab0c8;
  font-weight: 500;
  white-space: nowrap;
}
.home-b-scope .hb-m1-nav b {
  position: relative;
  color: #fff;
  font-weight: 600;
}
.home-b-scope .hb-m1-nav b::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 2px;
  border-radius: 2px;
  background: #37e0a1;
}
.home-b-scope .hb-m1-avatar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex: none;
}
.home-b-scope .hb-m1-avatar i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0b27a, #c98253);
}
.home-b-scope .hb-m1-avatar span {
  font-size: 10px;
  color: #aab0c8;
  font-weight: 500;
}
.home-b-scope .hb-m1-body {
  display: flex;
  background: #f7f8fb;
}
.home-b-scope .hb-m1-rail {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 8px;
  background: #fff;
  border-right: 1px solid #eceef4;
  flex: none;
}
.home-b-scope .hb-m1-rail i {
  font-style: normal;
  font-size: 8.5px;
  font-weight: 700;
  color: #8a90a5;
  border: 1px solid #eceef4;
  border-radius: 9px;
  padding: 7px 6px;
  text-align: center;
  min-width: 30px;
}
.home-b-scope .hb-m1-rail i.on {
  background: #5b51e8;
  border-color: #5b51e8;
  color: #fff;
}
.home-b-scope .hb-m1-main {
  flex: 1;
  padding: 14px 16px 18px;
  min-width: 0;
}
.home-b-scope .hb-m1-fhead {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.home-b-scope .hb-m1-fhead h4 {
  margin: 0;
  font-family: "Rubik", "Rubik Fallback", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #5b51e8;
}
.home-b-scope .hb-m1-fhead .total {
  font-size: 11.5px;
  font-weight: 600;
  color: #2b2f42;
}
.home-b-scope .hb-m1-fhead .count {
  font-size: 9.5px;
  font-weight: 600;
  background: #e9ebf2;
  color: #5a6076;
  border-radius: 999px;
  padding: 2px 8px;
}
.home-b-scope .hb-m1-fhead .add {
  margin-left: auto;
  background: #5b51e8;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  border-radius: 8px;
  padding: 7px 11px;
  white-space: nowrap;
}
.home-b-scope .hb-m1-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.home-b-scope .hb-m1-col h5 {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #6a7089;
  text-transform: uppercase;
}
.home-b-scope .hb-m1-col .cv {
  font-size: 9.5px;
  color: #8a90a5;
  margin: 2px 0 8px;
}
.home-b-scope .hb-m1-card {
  background: #fff;
  border: 1px solid #eceef4;
  border-radius: 10px;
  padding: 9px 10px;
  margin-bottom: 8px;
  box-shadow: 0 1px 2px rgba(20, 24, 50, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.home-b-scope .hb-m1-card b {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  color: #2b2f42;
}
.home-b-scope .hb-m1-card span {
  display: block;
  font-size: 9.5px;
  color: #8a90a5;
}
.home-b-scope .hb-m1-card .val {
  color: #2b2f42;
  font-weight: 600;
  margin-top: 3px;
}
.home-b-scope .hb-m1-chip {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 10px;
  flex: none;
}
.home-b-scope .hb-m1-chip.ok {
  background: #e3f8ee;
  color: #1d9e6a;
}
.home-b-scope .hb-m1-chip.warn {
  background: #fdf3d7;
  color: #c99012;
}
.home-b-scope .hb-m1-card.is-won {
  background: #f2fcf7;
  border-color: #bfe9d4;
}
.home-b-scope .hb-m1-card.is-won b {
  color: #1d9e6a;
}
.home-b-scope .hb-m1-won-tag {
  display: inline-block;
  font-size: 8.5px;
  font-weight: 700;
  color: #1d9e6a;
  background: #e3f8ee;
  border-radius: 999px;
  padding: 2px 7px;
  margin-top: 4px;
}
.home-b-scope .hb-m1-card.is-drag {
  position: relative;
  transform: rotate(-3.5deg);
  box-shadow: 0 14px 30px -10px rgba(30, 35, 80, 0.35);
  border-color: #cfcaf7;
  z-index: 4;
}
.home-b-scope .hb-m1-card.is-drag::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 1.5px dashed #5b51e8;
  opacity: 0.35;
  pointer-events: none;
}
.home-b-scope .hb-m1-cursor {
  position: absolute;
  right: -9px;
  bottom: -11px;
  width: 17px;
  z-index: 5;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.25));
}
.home-b-scope .hb-m1-ghost {
  border: 1.5px dashed #c3c8dd;
  border-radius: 10px;
  height: 52px;
  margin-bottom: 8px;
  background: rgba(91, 81, 232, 0.04);
}
.home-b-scope .hb-m1-sheet {
  position: absolute;
  top: -18px;
  left: -22px;
  z-index: 6;
  background: #fff;
  border: 1px solid var(--line, #e7e8ec);
  border-radius: 12px;
  box-shadow: 0 12px 32px -14px rgba(0, 48, 160, 0.28);
  padding: 10px 12px;
  display: flex;
  gap: 10px;
  width: 230px;
}
.home-b-scope .hb-m1-xls {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: #e7f6ed;
  color: #1d9e6a;
  font-weight: 700;
  font-size: 9px;
  display: grid;
  place-items: center;
  flex: none;
}
.home-b-scope .hb-m1-gr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  flex: 1;
}
.home-b-scope .hb-m1-gr i {
  height: 7px;
  background: #e6ebf3;
  border-radius: 2px;
  display: block;
}
.home-b-scope .hb-m1-gr i:nth-child(3n) {
  background: #dbe2ee;
}
.home-b-scope .hb-m1-impchip {
  position: absolute;
  top: 44px;
  left: 34px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0b7a45;
  color: #fff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 11.5px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(3, 15, 55, 0.22);
}
.home-b-scope .hb-m1-fio {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  top: 20px;
  left: 150px;
}
@media (max-width: 767px) {
  .home-b-scope .hb-m1-sheet {
    left: 0;
    top: -14px;
    width: 190px;
  }
  .home-b-scope .hb-m1-impchip {
    left: 12px;
    top: 40px;
    font-size: 10.5px;
  }
  .home-b-scope .hb-m1-main {
    padding: 10px;
  }
  .home-b-scope .hb-m1-cols {
    gap: 8px;
  }
}

/* ============================================================
   HOME B · porta 2 — Mock WhatsApp Sync (hb-m2-)
   ============================================================ */
.home-b-scope .hb-m2-cena {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
  min-height: 440px;
}
.home-b-scope .hb-m2-fio {
  position: absolute;
  left: 24%;
  top: 20%;
  width: 34%;
  height: 30%;
  z-index: 2;
  pointer-events: none;
}
.home-b-scope .hb-m2-phone {
  position: absolute;
  left: 0;
  top: 0;
  width: 46%;
  max-width: 225px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(3, 15, 55, 0.16);
  overflow: hidden;
  z-index: 5;
  border: 1px solid rgba(3, 15, 55, 0.05);
}
.home-b-scope .hb-m2-phhead {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 9px;
  background: #f8f8f8;
  border-bottom: 1px solid #ececec;
}
.home-b-scope .hb-m2-back {
  color: #0030a0;
  font-size: 12px;
  line-height: 1;
}
.home-b-scope .hb-m2-phav {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0b27a, #b8794a);
  flex: none;
}
.home-b-scope .hb-m2-phid b {
  display: block;
  font-size: 9.5px;
  color: #2b2f42;
}
.home-b-scope .hb-m2-phid span {
  display: block;
  font-size: 8px;
  color: #8a90a5;
}
.home-b-scope .hb-m2-phchat {
  background: #efe7dc;
  padding: 9px 7px;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: flex-end;
}
.home-b-scope .hb-m2-msg {
  max-width: 92%;
  border-radius: 8px;
  padding: 5px 7px;
  font-size: 8.8px;
  line-height: 1.35;
  color: #2b2f42;
  box-shadow: 0 1px 2px rgba(3, 15, 55, 0.08);
  margin: 0;
}
.home-b-scope .hb-m2-msg .t {
  float: right;
  font-size: 7px;
  color: #8aa08d;
  margin: 4px 0 0 5px;
}
.home-b-scope .hb-m2-msg.is-in {
  background: #fff;
  align-self: flex-start;
}
.home-b-scope .hb-m2-msg.is-out {
  background: #dcf3c8;
  align-self: flex-end;
}
.home-b-scope .hb-m2-sync {
  position: absolute;
  left: 40%;
  top: 34%;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0030a0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  box-shadow: 0 10px 26px rgba(3, 10, 60, 0.35);
  animation: hb-m2-pulse var(--hb-m2-T, 9s) ease-out infinite;
}
.home-b-scope .hb-m2-sync svg {
  width: 17px;
  height: 17px;
  transform-origin: center;
  animation: hb-m2-spin var(--hb-m2-T, 9s) ease-in-out infinite;
}
.home-b-scope .hb-m2-crm {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 82%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(3, 15, 55, 0.16);
  overflow: hidden;
  z-index: 4;
  border: 1px solid rgba(3, 15, 55, 0.05);
  font-size: 9px;
}
.home-b-scope .hb-m2-chead {
  display: flex;
  gap: 7px;
  padding: 9px 11px 6px;
}
.home-b-scope .hb-m2-cav {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: #f2f3f7;
  border: 1px solid #eceef4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a90a5;
  flex: none;
}
.home-b-scope .hb-m2-cinfo .nm {
  display: block;
  font-size: 9.6px;
  font-weight: 700;
  color: #2b2f42;
}
.home-b-scope .hb-m2-cinfo .nm > span {
  font-size: 8.2px;
  color: #8a90a5;
  font-weight: 400;
}
.home-b-scope .hb-m2-cinfo .st {
  font-size: 8px;
  margin-left: 4px;
}
.home-b-scope .hb-m2-cinfo .st i {
  color: #2fd08c;
  font-style: normal;
}
.home-b-scope .hb-m2-cinfo .st u {
  color: #d8dbe4;
  text-decoration: none;
}
.home-b-scope .hb-m2-cinfo .emp {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 8.4px;
  font-weight: 600;
  color: #5b51e8;
  margin-top: 1px;
}
.home-b-scope .hb-m2-cinfo .meta {
  display: block;
  font-size: 7.8px;
  color: #8a90a5;
  margin-top: 1px;
}
.home-b-scope .hb-m2-ctabs {
  display: flex;
  gap: 12px;
  padding: 0 11px;
  border-bottom: 1px solid #eceef4;
}
.home-b-scope .hb-m2-ctabs span {
  font-size: 8.4px;
  font-weight: 600;
  color: #8a90a5;
  padding: 4px 2px 5px;
}
.home-b-scope .hb-m2-ctabs .is-on {
  color: #5b51e8;
  border-bottom: 2px solid #5b51e8;
}
.home-b-scope .hb-m2-csub {
  display: flex;
  gap: 11px;
  padding: 5px 11px 0;
}
.home-b-scope .hb-m2-csub span {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 8.2px;
  color: #8a90a5;
}
.home-b-scope .hb-m2-csub .is-on {
  color: #2b2f42;
  font-weight: 600;
  border-bottom: 2px solid #5b51e8;
  padding-bottom: 3px;
}
.home-b-scope .hb-m2-csub .is-on svg {
  color: #2fd08c;
}
.home-b-scope .hb-m2-thread {
  margin: 6px 8px 8px;
  padding: 7px 8px;
  background: #f6f7fa;
  border: 1px solid #eceef4;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
.home-b-scope .hb-m2-thead {
  margin: 0 0 5px;
  font-size: 8.4px;
  color: #2b2f42;
}
.home-b-scope .hb-m2-thead span {
  color: #8a90a5;
  font-weight: 400;
}
.home-b-scope .hb-m2-thead .cx {
  display: block;
  font-size: 7.2px;
  margin-top: 1px;
}
.home-b-scope .hb-m2-cb {
  max-width: 88%;
  border-radius: 9px;
  padding: 5px 8px;
  font-size: 8.4px;
  line-height: 1.4;
  color: #2b2f42;
  margin: 0 0 5px;
}
.home-b-scope .hb-m2-cb .dt {
  display: block;
  font-size: 6.6px;
  color: #8a90a5;
  text-align: right;
  margin-top: 2px;
}
.home-b-scope .hb-m2-cb .dt i {
  color: #5b51e8;
  font-style: normal;
}
.home-b-scope .hb-m2-cb.is-rec {
  background: #fff;
  border: 1px solid #eceef4;
  align-self: flex-start;
}
.home-b-scope .hb-m2-cb.is-env {
  background: #eceafd;
  align-self: flex-end;
}
.home-b-scope .hb-m2-more {
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1px solid #eceef4;
  border-radius: 999px;
  padding: 3px 8px;
  font-size: 7.6px;
  color: #8a90a5;
}

@keyframes hb-m2-msg1 {
  0%,
  4% {
    opacity: 0;
    transform: translateY(8px);
  }
  9%,
  96% {
    opacity: 1;
    transform: none;
  }
  100% {
    opacity: 0;
  }
}
@keyframes hb-m2-msg2 {
  0%,
  40% {
    opacity: 0;
    transform: translateY(8px);
  }
  45%,
  96% {
    opacity: 1;
    transform: none;
  }
  100% {
    opacity: 0;
  }
}
@keyframes hb-m2-cb1 {
  0%,
  20% {
    opacity: 0;
    transform: translateY(8px);
  }
  26%,
  96% {
    opacity: 1;
    transform: none;
  }
  100% {
    opacity: 0;
  }
}
@keyframes hb-m2-cb2 {
  0%,
  58% {
    opacity: 0;
    transform: translateY(8px);
  }
  64%,
  96% {
    opacity: 1;
    transform: none;
  }
  100% {
    opacity: 0;
  }
}
@keyframes hb-m2-pulse {
  0%,
  12%,
  22%,
  51%,
  61%,
  100% {
    box-shadow: 0 10px 26px rgba(3, 10, 60, 0.35), 0 0 0 0 rgba(82, 248, 150, 0);
  }
  17%,
  56% {
    box-shadow: 0 10px 26px rgba(3, 10, 60, 0.35), 0 0 0 10px rgba(82, 248, 150, 0.4);
  }
}
@keyframes hb-m2-spin {
  0%,
  14% {
    transform: rotate(0deg);
  }
  24%,
  52% {
    transform: rotate(180deg);
  }
  62%,
  100% {
    transform: rotate(360deg);
  }
}
.home-b-scope .hb-m2-msg.m1 {
  animation: hb-m2-msg1 var(--hb-m2-T, 9s) linear infinite;
}
.home-b-scope .hb-m2-msg.m2 {
  animation: hb-m2-msg2 var(--hb-m2-T, 9s) linear infinite;
}
.home-b-scope .hb-m2-cb.c1 {
  animation: hb-m2-cb1 var(--hb-m2-T, 9s) linear infinite;
}
.home-b-scope .hb-m2-cb.c2 {
  animation: hb-m2-cb2 var(--hb-m2-T, 9s) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .home-b-scope .hb-m2-msg.m1,
  .home-b-scope .hb-m2-msg.m2,
  .home-b-scope .hb-m2-cb.c1,
  .home-b-scope .hb-m2-cb.c2,
  .home-b-scope .hb-m2-sync,
  .home-b-scope .hb-m2-sync svg {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 767px) {
  .home-b-scope .hb-m2-cena {
    min-height: 0;
    max-width: 420px;
    display: flex;
    flex-direction: column;
  }
  .home-b-scope .hb-m2-phone {
    position: static;
    width: 74%;
    max-width: 250px;
    margin-right: auto;
  }
  .home-b-scope .hb-m2-fio {
    display: none;
  }
  .home-b-scope .hb-m2-sync {
    position: relative;
    left: 0;
    top: 0;
    margin: 10px auto;
  }
  .home-b-scope .hb-m2-sync::before,
  .home-b-scope .hb-m2-sync::after {
    content: "";
    position: absolute;
    left: 50%;
    height: 12px;
    border-left: 2px dashed rgba(0, 48, 160, 0.35);
  }
  .home-b-scope .hb-m2-sync::before {
    top: -14px;
  }
  .home-b-scope .hb-m2-sync::after {
    bottom: -14px;
  }
  .home-b-scope .hb-m2-crm {
    position: static;
    width: 100%;
    margin-top: 10px;
  }
  .home-b-scope .hb-m2-phchat {
    min-height: 96px;
  }
}

/* ============================================================
   HOME B · porta 3 — Anatomia da inteligência (hb-m3-)
   Layout único vertical: canais → Ava → resultados.
   ============================================================ */
.home-b-scope .hb-m3-anat {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
  background: #071529;
  border-radius: 20px;
  padding: 18px 16px;
  box-shadow: 0 18px 40px rgba(3, 15, 55, 0.16);
  overflow: hidden;
  color: #fff;
}
.home-b-scope .hb-m3-head {
  text-align: center;
}
.home-b-scope .hb-m3-head b {
  display: block;
  font-family: Rubik, sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.home-b-scope .hb-m3-head span {
  font-size: 10.5px;
  color: #8a92b2;
}
.home-b-scope .hb-m3-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
}
.home-b-scope .hb-m3-ins {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  z-index: 2;
}
.home-b-scope .hb-m3-outs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 2;
  margin-top: 2px;
}
.home-b-scope .hb-m3-lbl {
  font-size: 8px;
  letter-spacing: 0.22em;
  color: #8a92b2;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.home-b-scope .hb-m3-ins .hb-m3-lbl {
  width: 100%;
  text-align: center;
}
.home-b-scope .hb-m3-outs .hb-m3-lbl {
  text-align: center;
}
.home-b-scope .hb-m3-in {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(77, 140, 255, 0.28);
  border-radius: 9px;
  padding: 6px 8px;
  font-size: 9.5px;
  color: #bfd4ff;
  font-weight: 500;
}
.home-b-scope .hb-m3-mid {
  position: relative;
  height: 190px;
  margin: -4px 0;
}
.home-b-scope .hb-m3-mid .hb-m3-fios {
  position: absolute;
  inset: 0;
}
.home-b-scope .hb-m3-mid svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.home-b-scope .hb-m3-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, #3d55f0, #2438e0 55%, #101840);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 8px;
  box-sizing: border-box;
  border: 1px solid rgba(77, 140, 255, 0.55);
  box-shadow: 0 0 0 8px rgba(36, 56, 224, 0.12), 0 0 24px rgba(36, 56, 224, 0.45);
  z-index: 3;
}
.home-b-scope .hb-m3-orb b {
  display: block;
  width: 100%;
  font-family: Rubik, sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.15;
  text-align: center;
}
.home-b-scope .hb-m3-orb span {
  display: block;
  width: 100%;
  font-size: 6px;
  letter-spacing: 0.2em;
  color: #bfd4ff;
  text-align: center;
  margin-top: 2px;
}
.home-b-scope .hb-m3-orbring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 1px dashed rgba(77, 140, 255, 0.4);
  transform: translate(-50%, -50%);
  animation: hb-m3-spin 22s linear infinite;
  z-index: 2;
}

@keyframes hb-m3-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.home-b-scope .hb-m3-out {
  background: #0b1c3a;
  border: 1px solid rgba(77, 140, 255, 0.22);
  border-radius: 11px;
  padding: 8px 10px;
}
.home-b-scope .hb-m3-out .ot {
  display: block;
  font-size: 8px;
  letter-spacing: 0.18em;
  color: #8a92b2;
  text-transform: uppercase;
}
.home-b-scope .hb-m3-out b {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
}
.home-b-scope .hb-m3-out .sm {
  font-size: 8.8px;
  color: #9aa3c0;
}
.home-b-scope .hb-m3-out.is-forecast b {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
  color: #52f896;
}
.home-b-scope .hb-m3-out.is-forecast b em {
  font-family: Inter, sans-serif;
  font-style: normal;
  font-size: 9px;
  color: #52f896;
}
.home-b-scope .hb-m3-spark {
  display: block;
  width: 100%;
  height: 22px;
  margin-top: 2px;
}
.home-b-scope .hb-m3-out.is-alerta {
  border-color: rgba(255, 123, 130, 0.4);
  background: rgba(255, 123, 130, 0.08);
}
.home-b-scope .hb-m3-out.is-alerta b {
  color: #ffb3b7;
}
.home-b-scope .hb-m3-bar {
  display: block;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  margin-top: 5px;
  overflow: hidden;
}
.home-b-scope .hb-m3-bar i {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #4d8cff, #52f896);
}
.home-b-scope .hb-m3-foot {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.home-b-scope .hb-m3-foot span {
  font-size: 7.5px;
  letter-spacing: 0.24em;
  color: #8a92b2;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .home-b-scope .hb-m3-fios circle {
    display: none;
  }
  .home-b-scope .hb-m3-orbring {
    animation: none;
  }
}

@media (max-width: 767px) {
  .home-b-scope .hb-m3-anat {
    padding: 14px 12px;
  }
}
/* ══ HOME B · rodada de copy (ago/2026) ═══════════════════════════════════ */

/* Eyebrow da seção de IA: ícone no lugar do travessão. */
.home-b-scope .hb-ia-eyebrow-ic {
  color: #52f896;
  flex: none;
}

/* Imprensa: wordmark textual monocromático (preto), sem imagem externa. */
.home-b-scope .hb-imprensa-veiculo {
  color: #0b0b0f;
  letter-spacing: normal;
  text-transform: none;
}
.home-b-scope .hb-imprensa-wordmark {
  display: inline-block;
  font-family: var(--font-display, Rubik), sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0b0b0f;
}
.home-b-scope .hb-imprensa-wordmark[data-veiculo="Exame"],
.home-b-scope .hb-imprensa-wordmark[data-veiculo="Baguete"] {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.home-b-scope .hb-imprensa-wordmark[data-veiculo="CartaCapital"],
.home-b-scope .hb-imprensa-wordmark[data-veiculo="Economia Real"] {
  font-weight: 500;
  font-style: italic;
}
.home-b-scope .hb-imprensa-wordmark[data-veiculo="IT Forum"] {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 16px;
}

/* Hub de integrações: primeiro card em destaque. */
.home-b-scope .hb-hub-card[data-destaque="true"] {
  border-color: var(--ia-blue, #0030a0);
  background: #eef3ff;
  box-shadow: 0 12px 28px -20px rgba(3, 15, 55, 0.45);
}
.home-b-scope .hb-hub-card[data-destaque="true"] .hb-hub-card-titulo {
  color: var(--ia-blue, #0030a0);
}

/* ── Fluxograma do ecossistema (04b) ──────────────────────────────────────── */
.home-b-scope .hb-fluxo {
  margin: 48px 0 0;
  padding: 28px 20px;
  border-radius: 24px;
  background: #f6f8ff;
  border: 1px solid #dce6fb;
}
.home-b-scope .hb-fluxo-cap {
  display: grid;
  gap: 6px;
  margin-bottom: 24px;
  text-align: center;
}
.home-b-scope .hb-fluxo-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ia-muted);
}
.home-b-scope .hb-fluxo-tit {
  margin: 0 auto;
  max-width: 62ch;
  font-family: var(--font-display, Rubik), sans-serif;
  font-size: 1.125rem;
  line-height: 1.4;
  color: var(--ia-strong);
}
.home-b-scope .hb-fluxo-grid {
  display: grid;
  gap: 12px;
  align-items: center;
  justify-items: stretch;
}
.home-b-scope .hb-fluxo-entradas,
.home-b-scope .hb-fluxo-saidas {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.home-b-scope .hb-fluxo-no {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--hb-line, #e7e9ef);
}
.home-b-scope .hb-fluxo-ic {
  display: inline-grid;
  place-items: center;
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(0, 48, 160, 0.08);
  color: var(--ia-blue, #0030a0);
}
.home-b-scope .hb-fluxo-no-txt {
  display: grid;
  gap: 3px;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--ia-muted);
}
.home-b-scope .hb-fluxo-no-txt strong {
  font-family: var(--font-display, Rubik), sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ia-strong);
}
.home-b-scope .hb-fluxo-ia {
  background: #071529;
  border-color: #071529;
}
.home-b-scope .hb-fluxo-ia .hb-fluxo-ic {
  background: rgba(82, 248, 150, 0.16);
  color: #52f896;
}
.home-b-scope .hb-fluxo-ia .hb-fluxo-no-txt {
  color: #b9c4d4;
}
.home-b-scope .hb-fluxo-ia .hb-fluxo-no-txt strong {
  color: #ffffff;
}
.home-b-scope .hb-fluxo-res {
  border-color: rgba(0, 48, 160, 0.28);
  background: #eef3ff;
}
.home-b-scope .hb-fluxo-seta {
  display: block;
  justify-self: center;
  width: 2px;
  height: 26px;
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(0, 48, 160, 0.12), rgba(0, 48, 160, 0.5));
  position: relative;
}
.home-b-scope .hb-fluxo-seta::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(0, 48, 160, 0.5);
  border-bottom: 2px solid rgba(0, 48, 160, 0.5);
  transform: translate(-50%, 0) rotate(45deg);
}
@media (min-width: 900px) {
  .home-b-scope .hb-fluxo {
    padding: 32px;
  }
  .home-b-scope .hb-fluxo-grid {
    grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr) 40px minmax(0, 1fr);
    gap: 0;
  }
  .home-b-scope .hb-fluxo-seta {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 48, 160, 0.12), rgba(0, 48, 160, 0.5));
  }
  .home-b-scope .hb-fluxo-seta::after {
    left: auto;
    right: -1px;
    bottom: auto;
    top: 50%;
    transform: translate(0, -50%) rotate(-45deg);
  }
}

/* ══ HOME B · rodada de refinamento UX (grifo verde em faixa, quebras) ═════ */

/* Grifo verde: mecanismo único do DS (ver `.pn-mark, .hb-mark, .acb-verde`).
   Aqui fica só a propriedade que não é de grifo. */
.home-b-scope .hb-mark {
  position: relative;
}

/* Quebra forçada só no desktop; no mobile o texto flui naturalmente. */
.home-b-scope .hb-br-desk {
  display: none;
}
@media (min-width: 900px) {
  .home-b-scope .hb-br-desk {
    display: inline;
  }
}

/* H1 do hero em 3 linhas controladas. */
.home-b-scope .hb-hero-copy .hb-h1 {
  text-wrap: initial;
}
.home-b-scope .hb-h1-linha {
  display: block;
}

/* Apoio do hero: body copy, sem destaque nem peso extra. */
.home-b-scope .hb-hero-tagline.is-body {
  font-family: var(--font-body, Inter, sans-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  max-width: 56ch;
}
@media (max-width: 767px) {
  .home-b-scope .hb-hero-tagline.is-body {
    font-size: 1rem;
  }
}

/* Seção 3 · título em no máximo 2 linhas no desktop. */
@media (min-width: 900px) {
  .home-b-scope .hb-jor-head {
    max-width: 1040px;
  }
  .home-b-scope .hb-jor-h2 {
    font-size: clamp(1.75rem, 2.7vw, 2.375rem);
    text-wrap: initial;
  }
}

/* Seção 4 · título e apoio com quebra controlada. */
@media (min-width: 900px) {
  .home-b-scope .hb-sol-head {
    max-width: 980px;
  }
  .home-b-scope .hb-sol-h2 {
    font-size: clamp(1.75rem, 2.6vw, 2.25rem);
    text-wrap: initial;
  }
  .home-b-scope .hb-sol-lead {
    max-width: none;
    text-wrap: initial;
  }
}

/* Prova social · H2 em 3 linhas. */
.home-b-scope .hb-ps-linha {
  display: block;
}
.home-b-scope .hb-ps-h2 {
  text-wrap: initial;
}

/* Integrações · quebra controlada. */
@media (min-width: 900px) {
  .home-b-scope .hb-hub-h2 {
    text-wrap: initial;
  }
}

/* Segmentos · apoio como tagline do título. */
.home-b-scope .hb-segcar-lead {
  margin-top: 8px;
}
@media (min-width: 1024px) {
  .home-b-scope .hb-hero-copy .hb-h1 {
    font-size: clamp(38px, 3.6vw, 54px);
  }
  .home-b-scope .hb-h1-linha {
    white-space: nowrap;
  }
}

/* Prova social · coluna do título mais larga p/ caber as 3 linhas pedidas. */
@media (min-width: 900px) {
  .home-b-scope .hb-ps-topo {
    grid-template-columns: 420px minmax(0, 1fr);
  }
  .home-b-scope .hb-ps-h2 {
    font-size: clamp(1.625rem, 2.1vw, 2rem);
  }
  .home-b-scope .hb-ps-linha {
    white-space: nowrap;
  }
}

/* Base do botão .ia-btn na Home B (o base original vive em .crm-com-ia-scope). */
.home-b-scope .ia-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  flex-wrap: nowrap;
  text-align: center;
  text-decoration: none;
}
.home-b-scope .ia-btn .ia-btn-arrow {
  flex: 0 0 auto;
  transition: transform 180ms ease-out;
}
.home-b-scope .ia-btn:hover .ia-btn-arrow {
  transform: translateX(4px);
}
