/* ===================================================================
   J2A — PADRONIZAÇÃO GLOBAL
   Espaçamento vertical e tipografia unificados em todo o site.
   Este arquivo deve ser o ÚLTIMO CSS carregado em cada página.
   =================================================================== */

:root{
  /* ---- Escala vertical única ---- */
  --j2a-hero-pt: clamp(46px, 4.4vw, 66px);   /* topo do banner principal  */
  --j2a-hero-pb: clamp(42px, 4.0vw, 58px);   /* base do banner principal  */
  --j2a-section-py: clamp(54px, 5.2vw, 80px);/* seções normais            */
  --j2a-section-sm-py: clamp(36px, 3.4vw, 52px);
  --j2a-breadcrumb-h: 44px;

  /* ---- Tipografia ---- */
  --j2a-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
              Roboto, Helvetica, Arial, sans-serif;
}

/* ===================================================================
   1. TIPOGRAFIA — uma única família em todo o site
   Antes, "Inter" era declarada no CSS mas nunca carregada, então cada
   sistema operacional substituía por uma fonte diferente (Segoe UI no
   Windows, SF no Mac). Era essa a origem da variação entre páginas.

   Para voltar aos títulos serifados, basta comentar o bloco 1.2.
   =================================================================== */

/* 1.1 — corpo, interface e formulários */
html, body,
button, input, select, textarea, optgroup {
  font-family: var(--j2a-font) !important;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body{
  font-size: 16.5px;
  line-height: 1.68;
  letter-spacing: -0.005em;
  font-weight: 400;
}

/* 1.2 — títulos na mesma família, com peso e entreletra de display */
h1, h2, h3, h4, h5, h6,
.inst-hero h1, .inst-hero strong,
.page-hero h1, .home-hero h1,
.inst-section h2, .home-section-head h2,
.founder-teaser h2, .cta h2, .inst-cta h2,
.section-head h2, .service-card h3, .method-step h3{
  font-family: var(--j2a-font) !important;
}

h1{
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h2{
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.16;
}

h3{
  font-weight: 650;
  letter-spacing: -0.018em;
  line-height: 1.3;
}

h4, h5, h6{
  font-weight: 600;
  letter-spacing: -0.012em;
}

/* Texto de apoio um pouco mais leve, como nos sites de referência */
p, li{ font-weight: 400; }
.lead{ font-weight: 400; letter-spacing: -0.01em; }

/* Rótulos e eyebrows */
.eyebrow{
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .74rem;
}

/* Navegação e botões */
.j2a-nav > a, .j2a-dropdown > summary,
.btn, .nav a{
  font-family: var(--j2a-font) !important;
  letter-spacing: .01em;
}

/* Números e valores do simulador com tabular figures (não "dançam") */
.j2a-sim-summary strong,
.j2a-schedule td,
table.gt td,
.gt-stat strong{
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* ===================================================================
   2. ESPAÇAMENTO DO TOPO — mesma distância em todas as páginas
   O site tinha mais de quinze paddings diferentes para o mesmo lugar,
   de 42px a 150px. Todos passam a usar a mesma escala.
   =================================================================== */

.hero,
.home-hero,
.page-hero,
.credit-hero,
.academy-hero,
.course-hero,
.diagnostic-hero,
.el-hero,
.premium-page-hero,
.founder-hero,
.indication-hero,
.inst-hero,
.partners-hero,
.partners-hub-hero,
.rules-hero,
.svc-hero,
body.j2a-credit-page .page-hero,
body.j2a-credit-page .credit-hero,
body.j2a-credit-page .hero,
main > section[class*="hero"]:first-of-type{
  padding-top: var(--j2a-hero-pt) !important;
  padding-bottom: var(--j2a-hero-pb) !important;
}

/* Quando existe trilha de navegação, o banner já vem "anunciado":
   o topo pode ser um pouco menor sem parecer apertado. */
.credit-breadcrumb-wrap + .page-hero,
.credit-breadcrumb-wrap + .hero,
.credit-breadcrumb-wrap + section[class*="hero"]{
  padding-top: clamp(38px, 3.6vw, 54px) !important;
}

.credit-page .credit-breadcrumb,
.credit-breadcrumb{
  min-height: var(--j2a-breadcrumb-h) !important;
}

/* ===================================================================
   3. RITMO DAS SEÇÕES
   =================================================================== */

.section,
.credit-section,
body.j2a-credit-page .section,
body.j2a-credit-page .credit-section,
body.j2a-credit-page main > section:not([class*="hero"]){
  padding-top: var(--j2a-section-py) !important;
  padding-bottom: var(--j2a-section-py) !important;
}

.section-sm{
  padding-top: var(--j2a-section-sm-py) !important;
  padding-bottom: var(--j2a-section-sm-py) !important;
}

/* Primeira seção logo abaixo do banner: evita dobra de respiro */
section[class*="hero"] + .section,
section[class*="hero"] + .section-sm{
  padding-top: var(--j2a-section-py) !important;
}

/* Cabeçalho de seção com distância consistente do conteúdo */
.section-head{ margin-bottom: clamp(28px, 2.6vw, 40px); }

/* ===================================================================
   4. BANNER COM SIMULADOR
   O cartão de simulação ficava deslocado porque o banner tinha
   padding grande e o alinhamento era centralizado. Agora o conteúdo
   e o cartão começam na mesma linha.
   =================================================================== */

.page-hero .j2a-hero-sim-grid,
.hero .j2a-hero-sim-grid{
  align-items: start !important;
  gap: clamp(28px, 3vw, 42px) !important;
}

.j2a-hero-copy{ padding-top: 4px; }

@media (max-width: 960px){
  .page-hero .j2a-hero-sim-grid,
  .hero .j2a-hero-sim-grid{ gap: 26px !important; }
}

/* ===================================================================
   5. AJUSTES DE ESCALA EM TELAS PEQUENAS
   =================================================================== */

@media (max-width: 600px){
  body{ font-size: 16px; line-height: 1.65; }
  h1{ letter-spacing: -0.03em; }
  h2{ letter-spacing: -0.022em; }
  .section-head{ margin-bottom: 24px; }
}

/* ===================================================================
   6. ESCALA DOS TÍTULOS
   A troca da serifada pela sans deixou os títulos maiores em massa
   visual. Estes limites recolocam a hierarquia no lugar.
   =================================================================== */

h1,
.page-hero h1,
.home-hero h1,
.credit-page .page-hero h1,
.inst-hero h1,
.partners-hero h1{
  font-size: clamp(2.05rem, 3.5vw, 3.05rem) !important;
  line-height: 1.1 !important;
  font-weight: 700;
}

h2,
.section-head h2,
.cta h2,
.inst-section h2,
.home-section-head h2{
  font-size: clamp(1.55rem, 2.3vw, 2.05rem) !important;
  line-height: 1.2 !important;
}

h3,
.service-card h3,
.method-step h3,
.gt-col h3{
  font-size: clamp(1.04rem, 1.2vw, 1.16rem) !important;
}

.lead{ font-size: clamp(1.02rem, 1.18vw, 1.12rem); }

/* ===================================================================
   7. CORREÇÃO — botão de contorno sobre fundo claro
   Nos banners claros o botão vinha com texto branco sobre fundo claro
   e ficava invisível. Os banners escuros (home e premium) mantêm o
   contorno branco original.
   =================================================================== */

section[class*="hero"]:not(.home-hero):not(.premium-page-hero) .btn-outline,
.page-hero .btn-outline,
.inst-hero .btn-outline,
.partners-hero .btn-outline,
.credit-hero .btn-outline,
.svc-hero .btn-outline,
.academy-hero .btn-outline,
.diagnostic-hero .btn-outline{
  color: #173b5c !important;
  border-color: rgba(23, 59, 92, .3) !important;
  background: rgba(255, 255, 255, .6) !important;
}

section[class*="hero"]:not(.home-hero):not(.premium-page-hero) .btn-outline:hover,
.page-hero .btn-outline:hover,
.inst-hero .btn-outline:hover,
.partners-hero .btn-outline:hover{
  background: #fff !important;
  border-color: rgba(23, 59, 92, .52) !important;
}

.home-hero .btn-outline,
.premium-page-hero .btn-outline{
  color: #fff !important;
  border-color: rgba(255, 255, 255, .55) !important;
  background: transparent !important;
}
.home-hero .btn-outline:hover,
.premium-page-hero .btn-outline:hover{
  background: rgba(255, 255, 255, .12) !important;
}

/* ===================================================================
   8. TRILHA DE NAVEGAÇÃO (breadcrumb) — padrão único
   O site tinha quatro trilhas diferentes: uma em barra branca acima
   do banner, duas dentro do banner (com separadores "/" e "›") e uma
   gerada por JavaScript que usava o título inteiro como rótulo.
   Todas passaram a usar esta.
   =================================================================== */

.j2a-trilha-wrap{
  background: #fff;
  border-top: 1px solid rgba(24, 55, 84, .06);
  border-bottom: 1px solid #e8edf4;
}

.j2a-trilha{
  min-height: 46px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 9px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  padding-top: 6px;
  padding-bottom: 6px;
  font-family: var(--j2a-font) !important;
  font-size: .845rem;
  font-weight: 500;
  letter-spacing: -0.004em;
  color: #6b7785;
}

.j2a-trilha::-webkit-scrollbar{ display: none; }

.j2a-trilha a{
  color: #496987;
  text-decoration: none;
  transition: color .18s ease;
}

.j2a-trilha a:hover{
  color: #234d7a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.j2a-trilha a:focus-visible{
  outline: 2px solid #234d7a;
  outline-offset: 3px;
  border-radius: 3px;
}

.j2a-trilha > span[aria-hidden]{
  color: #b3bfcc;
  font-size: .95em;
  line-height: 1;
  user-select: none;
}

.j2a-trilha strong{
  color: #243240;
  font-weight: 650;
}

/* O banner logo abaixo da trilha começa um pouco mais acima:
   a trilha já cumpre a função de respiro superior. */
.j2a-trilha-wrap + section[class*="hero"],
.j2a-trilha-wrap + .page-hero,
.j2a-trilha-wrap + .hero{
  padding-top: clamp(38px, 3.6vw, 54px) !important;
}

@media (max-width: 600px){
  .j2a-trilha{
    min-height: 42px;
    font-size: .8rem;
    gap: 7px;
  }
}

/* Trilha automática antiga do acabamento.js e resíduos das versões
   anteriores: desativadas para não duplicar. */
.j2a-breadcrumb,
.course-breadcrumb,
.svc-breadcrumb,
.credit-breadcrumb-wrap{
  display: none !important;
}

/* ===================================================================
   9. DESTAQUE DO PERSONAL BANKER — menu J2A Academy
   Mesmo padrão visual do atalho "Descobrir minha linha ideal" do menu
   de crédito, para o público de personal bankers e consultores.
   =================================================================== */

.j2a-banker-hub{
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.3fr) minmax(220px, .7fr);
  align-items: stretch;
  gap: 22px;
  margin: 0 0 12px !important;
  padding: 22px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #183754 0%, #21496e 58%, #2b5a86 100%) !important;
  color: #fff !important;
  text-decoration: none;
  overflow: hidden;
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease;
}

.j2a-banker-hub::after{
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  right: -120px; bottom: -190px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255,255,255,.04);
  pointer-events: none;
}

.j2a-banker-hub:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(15, 45, 75, .22);
}

.j2a-banker-hub-copy{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  position: relative;
  z-index: 1;
}

.j2a-banker-hub-copy em{
  font-style: normal;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
  color: #f2a900;
}

.j2a-banker-hub-copy strong{
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #fff;
  line-height: 1.2;
}

.j2a-banker-hub-copy small{
  font-size: .82rem;
  line-height: 1.55;
  color: rgba(214, 228, 240, .88);
  max-width: 460px;
}

.j2a-banker-hub-cta{
  margin-top: 6px;
  font-size: .84rem;
  font-weight: 700;
  color: #f2a900;
}

.j2a-banker-hub-side{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: 11px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  position: relative;
  z-index: 1;
}

.j2a-banker-hub-side > span{
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: baseline;
  gap: 8px;
  font-size: .78rem;
  line-height: 1.45;
  color: rgba(219, 231, 242, .9);
}

.j2a-banker-hub-side b{
  color: #f2a900;
  font-size: .95rem;
  font-weight: 800;
}

@media (max-width: 980px){
  .j2a-banker-hub{
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px !important;
  }
  .j2a-banker-hub-copy small{ max-width: none; }
  .j2a-banker-hub::after{ display: none; }
}

/* ===================================================================
   10. PÁGINA DO PERSONAL BANKER
   =================================================================== */

.pb-panel{
  border: 1px solid var(--line, #e6eaf0);
  border-radius: 20px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 12px 34px rgba(15, 45, 75, .07);
}

.pb-list{
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.pb-list li{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 1px solid #eef2f7;
}

.pb-list li:last-child{ border-bottom: 0; padding-bottom: 0; }

.pb-list b{
  color: #96a6b8;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding-top: 2px;
}

.pb-list span{ display: block; }

.pb-list span strong{
  display: block;
  color: #12385f;
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.pb-list span{
  color: #55647a;
  font-size: .89rem;
  line-height: 1.6;
}

.service-card .j2a-view-all{
  display: inline-block;
  margin-top: 14px;
  color: #234d7a;
  font-size: .87rem;
  font-weight: 700;
  text-decoration: none;
}

.service-card .j2a-view-all:hover{ text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 900px){
  .pb-panel{ padding: 24px; }
}

/* ===================================================================
   11. MENU SOLUÇÕES — três colunas + destaque
   A coluna "Consultoria" misturava serviços de consultoria com
   produtos distribuídos (energia, seguros). Foram separados.
   =================================================================== */

@media (min-width: 981px){
  .solutions-menu{
    grid-template-columns: minmax(268px, 1.08fr) minmax(212px, .9fr)
                           minmax(206px, .88fr) minmax(196px, .78fr) !important;
    min-width: 1010px;
    max-width: calc(100vw - 48px);
    gap: 20px;
  }
  /* o item com preço precisa de largura para não quebrar o valor */
  .solutions-menu .j2a-product-link{ gap: 12px !important; }
  /* nome e descrição do plano vinham colados na mesma linha */
  .j2a-product-link > span{
    display: flex !important;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .j2a-product-link > span strong{ display: block; line-height: 1.25; }
  .j2a-product-link > span small{ display: block; line-height: 1.4; }
  .solutions-menu .j2a-product-link em{ white-space: nowrap; }
  .solutions-menu .j2a-menu-highlight strong{ font-size: 1rem; line-height: 1.32; }
  .solutions-menu .j2a-menu-highlight p{ font-size: .82rem; line-height: 1.55; }
}

/* Em telas menores o menu recua para duas colunas antes de empilhar */
@media (min-width: 981px) and (max-width: 1180px){
  .solutions-menu{
    grid-template-columns: repeat(2, minmax(230px, 1fr)) !important;
    min-width: 620px;
  }
  .solutions-menu .j2a-menu-highlight{ grid-column: 1 / -1; }
}

/* ===================================================================
   12. PÁGINA DO FUNDADOR — história ampliada
   =================================================================== */

.founder-rich-text p{ margin: 0 0 18px; }
.founder-rich-text p:last-of-type{ margin-bottom: 0; }

.founder-pull{
  margin: 30px 0 0;
  padding: 24px 26px;
  border: 0;
  border-left: 3px solid #f2a900;
  border-radius: 0 14px 14px 0;
  background: #f6f9fc;
  color: #12385f;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -.015em;
}

/* Bloco "onde tudo começou" */
.founder-early{
  padding-top: var(--j2a-section-py);
  padding-bottom: var(--j2a-section-py);
  background: #f6f8fb;
}

.founder-early-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.founder-early-grid article{
  padding: 22px;
  border: 1px solid #e6ecf3;
  border-radius: 16px;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.founder-early-grid article:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 45, 75, .08);
}

.founder-early-grid b{
  display: block;
  color: #12385f;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 6px;
}

.founder-early-grid span{
  display: block;
  color: #5c6b7d;
  font-size: .89rem;
  line-height: 1.55;
}

.founder-early-note{
  margin: 26px 0 0;
  max-width: 720px;
  color: #55647a;
  font-size: .93rem;
  line-height: 1.7;
}

/* A linha do tempo passou de 4 para 7 marcos */
.founder-timeline{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 18px;
}

@media (max-width: 900px){
  .founder-early-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px){
  .founder-early-grid{ grid-template-columns: 1fr; }
  .founder-pull{ font-size: 1rem; padding: 20px 22px; }
}

/* ===================================================================
   13. TRILHA "DO CRACHÁ AO NOME" — módulos e páginas de curso
   =================================================================== */

.cn-badge{
  display: inline-block;
  padding: 6px 13px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(242, 169, 0, .14);
  color: #8a5b13;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .11em;
}

.cn-heading{ max-width: 780px; margin: 0 0 34px; }
.cn-heading h2{ margin: 12px 0 12px; }
.cn-heading p{ margin: 0; color: #55647a; font-size: .96rem; line-height: 1.7; }

/* Comparativo banco × personal banker */
.cn-contraste{
  display: grid;
  gap: 12px;
  margin: 26px 0 34px;
}

.cn-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid #e5ebf2;
  border-radius: 14px;
  overflow: hidden;
  background: #e5ebf2;
}

.cn-antes, .cn-depois{ padding: 18px 20px; background: #fff; }
.cn-antes{ background: #f7f9fc; }

.cn-antes em, .cn-depois em{
  display: block;
  margin-bottom: 6px;
  font-style: normal;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.cn-antes em{ color: #93a2b4; }
.cn-depois em{ color: #c58a00; }

.cn-antes p, .cn-depois p{
  margin: 0;
  font-size: .92rem;
  line-height: 1.6;
  color: #4a5768;
}

.cn-depois p{ color: #23384f; font-weight: 500; }
.cn-contraste-lg .cn-antes, .cn-contraste-lg .cn-depois{ padding: 22px 24px; }

/* Grade dos módulos */
.cn-modulos{
  padding-top: var(--j2a-section-py);
  padding-bottom: var(--j2a-section-py);
  background: #f6f8fb;
}

.cn-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 18px;
}

.cn-card{
  position: relative;
  padding: 26px 26px 24px;
  border: 1px solid #e5ebf2;
  border-radius: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.cn-card:hover{
  transform: translateY(-3px);
  border-color: #cfdcea;
  box-shadow: 0 16px 36px rgba(15, 45, 75, .1);
}

.cn-card-num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #eef4fa;
  color: #12385f;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.cn-card h3{ margin: 0 0 10px; color: #12385f; }

.cn-card p{
  margin: 0 0 18px;
  color: #55647a;
  font-size: .91rem;
  line-height: 1.65;
  flex: 1;
}

.cn-card-link{
  color: #234d7a;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}

.cn-card-link:hover{ text-decoration: underline; text-underline-offset: 3px; }

/* Vantagens do profissional independente */
.cn-vantagens{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.cn-vantagens article{
  padding: 22px 24px;
  border: 1px solid #e5ebf2;
  border-left: 3px solid #f2a900;
  border-radius: 0 14px 14px 0;
  background: #fff;
}

.cn-vantagens b{
  display: block;
  margin-bottom: 7px;
  color: #12385f;
  font-size: .99rem;
  font-weight: 700;
  letter-spacing: -.015em;
}

.cn-vantagens span{
  display: block;
  color: #55647a;
  font-size: .89rem;
  line-height: 1.62;
}

@media (max-width: 720px){
  .cn-row{ grid-template-columns: 1fr; }
  .cn-antes{ border-bottom: 1px solid #e5ebf2; }
}

/* ===================================================================
   14. J2A ACADEMY — listagem agrupada por trilha
   A grade única de treze cartões virou quatro blocos temáticos.
   =================================================================== */

.academy-section + .academy-section{ padding-top: var(--j2a-section-py); }

.academy-section-head{
  max-width: 100%;
  margin-bottom: clamp(26px, 2.4vw, 36px);
}

.academy-section-head h2{ margin: 10px 0 0; }

.academy-section-head p{
  margin: 12px 0 0;
  max-width: 720px;
  color: #55647a;
  font-size: .95rem;
  line-height: 1.7;
}

/* O cartão de trilha ocupa a linha inteira e destaca-se dos módulos */
#cracha .academy-card.featured{
  grid-column: 1 / -1;
}

@media (min-width: 900px){
  #cracha .academy-card.featured{
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
  }
  #cracha .academy-card.featured .tag{
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    justify-self: start;
    width: auto;
    margin: 0 0 4px;
  }
  #cracha .academy-card.featured .meta{ justify-self: end; }
  #cracha .academy-card.featured > a{ justify-self: end; }
  #cracha .academy-card.featured .icon{ grid-column: 1; grid-row: 1 / span 3; margin: 0; }
  #cracha .academy-card.featured h3{ grid-column: 2; grid-row: 2; margin: 0; }
  #cracha .academy-card.featured p{ grid-column: 2; grid-row: 3; margin: 6px 0 0; }
  #cracha .academy-card.featured .meta{ grid-column: 3; grid-row: 2; margin: 0; }
  #cracha .academy-card.featured > a{ grid-column: 3; grid-row: 3; margin: 6px 0 0; }
}

/* ===================================================================
   15. MENU J2A PARTNERS — mesmo padrão do menu Academy
   Banner de destaque em linha inteira sobre três colunas.
   =================================================================== */

/* j2a-partners-hub.css ancorava o menu à direita mas mantinha o
   translateX(-50%) da regra base, o que jogava o painel para fora da
   tela quando ele passou a ter três colunas. */
.j2a-partners-dropdown .partners-menu{
  min-width: min(920px, calc(100vw - 42px));
  grid-template-columns: repeat(3, 1fr);
  right: 0;
  left: auto;
  transform: none;
}

@media (max-width: 980px){
  .j2a-partners-dropdown .partners-menu{
    min-width: 0;
    grid-template-columns: 1fr;
  }
}

/* ===================================================================
   16. PÁGINAS DE CONSULTORIA — preço, entrega e limites do serviço
   Complementa servicos-especializados.css (classes .svc-*).
   =================================================================== */

.svc-preco{
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 22px 0 4px;
  padding: 16px 20px;
  border: 1px solid #e5ebf2;
  border-left: 3px solid #f2a900;
  border-radius: 0 12px 12px 0;
  background: #fff;
}

.svc-preco-valor{
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.025em;
  color: #12385f;
}

.svc-preco-info{
  font-size: .86rem;
  color: #55647a;
}

.svc-entrega{
  padding: 24px 26px;
  border: 1px solid #e5ebf2;
  border-radius: 16px;
  background: #fff;
}

.svc-entrega p{
  margin: 0;
  font-size: .97rem;
  line-height: 1.75;
  color: #3d4d61;
}

.svc-naoe{
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
}

.svc-naoe li{
  position: relative;
  padding: 18px 20px 18px 46px;
  border: 1px solid #e5ebf2;
  border-radius: 14px;
  background: #f8fafc;
  font-size: .92rem;
  line-height: 1.62;
  color: #4a5768;
}

.svc-naoe li::before{
  content: "×";
  position: absolute;
  left: 18px;
  top: 16px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8eef5;
  
  color: #6f8299;
  font-size: .8rem;
  font-weight: 700;
}

@media (max-width: 720px){
  .svc-preco{ flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ===================================================================
   17. DIAGNÓSTICO → ESTRUTURAÇÃO
   Bloco de continuidade na página de diagnóstico, explicando que as
   duas etapas se somam em vez de competirem.
   =================================================================== */

.diag-head{
  max-width: 780px;
  margin: 0 0 34px;
}

.diag-head h2{ margin: 12px 0 12px; }

.diag-head p{
  margin: 0;
  color: #55647a;
  font-size: .96rem;
  line-height: 1.7;
}

.diag-etapas{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
}

.diag-etapas article{
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 24px 24px 22px;
  border: 1px solid #e5ebf2;
  border-radius: 16px;
  background: #fff;
}

.diag-etapas b{
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eef4fa;
  color: #12385f;
  font-size: 1rem;
  font-weight: 800;
}

.diag-etapas strong{
  display: block;
  margin-bottom: 8px;
  color: #12385f;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -.015em;
}

.diag-etapas p{
  margin: 0;
  color: #55647a;
  font-size: .92rem;
  line-height: 1.65;
}

.diag-etapas .card-link{
  display: inline-block;
  margin-top: 12px;
  color: #234d7a;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}

.diag-etapas .card-link:hover{ text-decoration: underline; text-underline-offset: 3px; }

/* Nota de abatimento sob os botões de pagamento da Estruturação */
.svc-preco-nota{
  margin: 14px 0 0;
  font-size: .86rem;
  line-height: 1.55;
  color: #55647a;
}

.svc-preco-nota a{
  color: #234d7a;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===================================================================
   18. CONSULTORIA DE CRÉDITO — redistribuição da página
   A página tinha dez blocos de peso visual idêntico e repetia a mesma
   ideia em cinco deles. Agora são sete, e dois pares foram unificados.
   =================================================================== */

/* Faixa compacta com a base incluída em todos os planos.
   Antes eram seis cartões grandes que empurravam os preços para baixo. */
.cc-base{
  display: grid;
  grid-template-columns: repeat(3, 1fr);   /* 6 itens = 2 linhas cheias */
  gap: 2px;
  border: 1px solid #e5ebf2;
  border-radius: 16px;
  overflow: hidden;
  background: #e5ebf2;
}

.cc-base article{
  padding: 20px 22px;
  background: #fff;
}

.cc-base strong{
  display: block;
  margin-bottom: 6px;
  color: #12385f;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.01em;
}

.cc-base span{
  display: block;
  color: #55647a;
  font-size: .87rem;
  line-height: 1.6;
}

/* Etapas e limites lado a lado, em vez de dois blocos empilhados */
.cc-duplo{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.cc-duplo .diag-head{ margin-bottom: 22px; }
.cc-duplo .diag-head h2{ font-size: clamp(1.35rem, 2vw, 1.65rem); }
.cc-duplo .diag-etapas{ grid-template-columns: 1fr; gap: 12px; }
.cc-duplo .diag-etapas article{ padding: 18px 20px; }
.cc-duplo .svc-naoe{ grid-template-columns: 1fr; gap: 12px; }

@media (max-width: 900px){
  .cc-duplo{ grid-template-columns: 1fr; gap: 40px; }
  .cc-base{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px){
  .cc-base{ grid-template-columns: 1fr; }
}


/* Bloco "depois do diagnóstico": cartão único não deve esticar na
   largura inteira — fica com um vazio grande à direita. */
#depois .diag-etapas{
  grid-template-columns: minmax(0, 680px);
}

/* ===================================================================
   19. QUARTO CARTÃO — Estruturação na grade de planos
   A grade era de 3 colunas; com quatro cartões vira 2x2 no desktop
   para não espremer o conteúdo em colunas estreitas demais.
   =================================================================== */

.diagnostic-plans:has(.plan-estruturacao){
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px){
  .diagnostic-plans:has(.plan-estruturacao){
    grid-template-columns: 1fr;
    max-width: 680px;
  }
}

/* O cartão de execução se distingue dos três de leitura */
.plan-estruturacao{
  border-color: #f2a900 !important;
  background: linear-gradient(180deg, #fffdf7 0%, #fff 40%);
}

.plan-estruturacao .plan-label{ color: #a8760a; }

/* ===================================================================
   20. DETALHE POR PLANO
   Um bloco por nível, com âncora própria (#essencial, #profissional,
   #premium). Substitui a ideia de uma página por plano, que criaria
   três URLs com o mesmo conteúdo disputando indexação entre si.
   =================================================================== */

.cc-det-link{
  display: block;
  margin: 12px 0 0;
  color: #234d7a;
  font-size: .86rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.cc-det-link:hover{ text-decoration: underline; text-underline-offset: 3px; }

.cc-detalhe{
  padding: clamp(46px, 5vw, 68px) 0;
  border-top: 1px solid #e9eef4;
  background: #fff;
  scroll-margin-top: 90px;          /* o cabeçalho fixo não cobre o título */
}

.cc-detalhe:nth-of-type(even){ background: #f7f9fc; }

.cc-det-topo{
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 30px;
}

.cc-det-topo .diagnostic-kicker{ width: 100%; }
.cc-det-topo h2{ margin: 6px 0 0; }

.cc-det-preco{
  padding: 5px 14px;
  border-radius: 999px;
  background: #eef4fa;
  color: #12385f;
  font-size: .92rem;
  font-weight: 800;
}

.cc-det-grid{
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}

/* A coluna da esquerda tem menos conteúdo e deixava um vazio grande.
   Colocá-la em cartão iguala o peso visual das duas. */
.cc-det-grid > .cc-det-col:first-child{
  padding: 24px 26px;
  border: 1px solid #e5ebf2;
  border-radius: 16px;
  background: #f7f9fc;
}

.cc-detalhe:nth-of-type(even) .cc-det-grid > .cc-det-col:first-child{
  background: #fff;
}

.cc-det-col:first-child h3 + p{ margin-bottom: 22px; }

.cc-det-col h3{
  margin: 0 0 12px;
  color: #12385f;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.01em;
}

.cc-det-col h3 + p{
  margin: 0 0 26px;
  color: #55647a;
  font-size: .93rem;
  line-height: 1.7;
}

.cc-det-lista{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.cc-det-lista li{
  position: relative;
  padding-left: 22px;
  color: #4a5768;
  font-size: .91rem;
  line-height: 1.6;
}

.cc-det-lista li::before{
  content: "✓";
  position: absolute;
  left: 0;
  color: #c58a00;
  font-size: .82rem;
  font-weight: 700;
}

.cc-det-rel{
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.cc-det-rel article{
  padding: 16px 18px;
  border: 1px solid #e5ebf2;
  border-radius: 12px;
  background: #fff;
}

.cc-detalhe:nth-of-type(even) .cc-det-rel article{ background: #fff; }

.cc-det-rel strong{
  display: block;
  margin-bottom: 4px;
  color: #12385f;
  font-size: .94rem;
  font-weight: 700;
}

.cc-det-rel span{
  display: block;
  color: #55647a;
  font-size: .88rem;
  line-height: 1.6;
}

.cc-det-meta{
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 12px;
  background: #f2f6fa;
}

.cc-det-meta p{
  margin: 0;
  color: #55647a;
  font-size: .88rem;
  line-height: 1.6;
}

.cc-det-meta b{
  display: block;
  margin-bottom: 2px;
  color: #12385f;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.cc-det-limite{
  margin-top: 32px;
  padding: 22px 24px;
  border: 1px solid #e5ebf2;
  border-left: 3px solid #93a2b4;
  border-radius: 0 14px 14px 0;
  background: #fff;
}

.cc-det-limite strong{
  display: block;
  margin-bottom: 8px;
  color: #12385f;
  font-size: .98rem;
  font-weight: 700;
}

.cc-det-limite p{
  margin: 0 0 12px;
  color: #55647a;
  font-size: .92rem;
  line-height: 1.65;
}

.cc-det-limite .card-link{
  color: #234d7a;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}

.cc-det-limite .card-link:hover{ text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 900px){
  .cc-det-grid{ grid-template-columns: 1fr; gap: 32px; }
}


/* ===================================================================
   21. ECOSSISTEMA FRANQ — mais peso na seção e faixa em movimento

   POR QUE A FAIXA NÃO ANDAVA: acabamento.css e ajustes-conversao.css
   aplicam, sob prefers-reduced-motion, a regra global
   `*{animation-duration:.01ms!important}`. Se o sistema do visitante
   estiver com animações desligadas, a faixa congela. E o estado
   estático previsto em elevacao-visual.css (flex-wrap:wrap) nunca
   funcionou, porque a faixa usa width:max-content e por isso nunca
   quebra linha — o resultado era uma fila parada e cortada.
   Aqui a animação é declarada com seletor de classe (vence o `*`)
   e o estado estático vira uma grade legível de verdade.
   =================================================================== */

.partners-section{
  padding-top: clamp(70px, 7vw, 104px) !important;
  padding-bottom: clamp(70px, 7vw, 104px) !important;
  background:
    radial-gradient(900px 420px at 12% 0%, rgba(31, 90, 145, .07), transparent 62%),
    linear-gradient(180deg, #f4f7fb 0%, #eef3f9 100%);
  border-top: 1px solid #e4ebf3;
  border-bottom: 1px solid #e4ebf3;
}

.partners-head h2{
  font-size: clamp(1.9rem, 3.1vw, 2.6rem) !important;
  letter-spacing: -.028em;
}

/* Painel da Franq com mais presença */
.franq-panel{
  padding: clamp(30px, 3.4vw, 44px) !important;
  border: 1px solid #e2e9f1 !important;
  border-radius: 20px !important;
  background: #fff !important;
  box-shadow: 0 20px 54px rgba(15, 45, 75, .10) !important;
}

.franq-brand{
  position: relative;
  display: flex;
  align-items: center;
  min-height: 46px;
  margin-bottom: 18px;
}

.franq-logo{
  height: 44px;
  width: auto;
  display: block;
}

/* o nome escrito fica de reserva, oculto enquanto houver logo */
.franq-logo + .franq-wordmark{
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.franq-panel-main p{
  font-size: 1.02rem !important;
  line-height: 1.75 !important;
  color: #45566c !important;
  max-width: 620px;
}

.franq-panel-stat{
  display: grid;
  gap: 22px;
}

.franq-stat-item strong{
  display: block;
  font-size: clamp(2rem, 2.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  color: #f2a900;
}

.franq-stat-item span{
  display: block;
  margin-top: 6px;
  color: #64738a;
  font-size: .86rem;
  line-height: 1.5;
}

/* ---------- Faixa de instituições ---------- */

.j2a-network-label{
  margin-bottom: 22px !important;
  color: #4a5c72 !important;
  font-size: .74rem !important;
  font-weight: 800 !important;
  letter-spacing: .13em !important;
}

.j2a-marquee-track{
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  width: max-content !important;
  animation: j2aFaixa 42s linear infinite !important;
}

@keyframes j2aFaixa{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* sem pausa no hover: a faixa deve correr sempre */
.j2a-marquee:hover .j2a-marquee-track{ animation-play-state: running !important; }

.j2a-pill{
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  border: 1px solid #e2e9f1;
  border-radius: 999px;
  background: #fff;
  white-space: nowrap;
  box-shadow: 0 3px 14px rgba(15, 45, 75, .07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.j2a-pill:hover{
  transform: translateY(-2px);
  border-color: #cfdcea;
  box-shadow: 0 12px 28px rgba(15, 45, 75, .14);
}

.j2a-pill b{
  color: #23384f;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.012em;
}

/* Quando os logos oficiais entrarem: trocar o <b> por
   <img class="j2a-pill-logo" src="imagens/marcas/<slug>.svg" alt="..."> */
.j2a-pill-logo{
  height: 24px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

/* Estado estático para quem desativou animações no sistema.
   Vira grade de verdade, e não uma fila congelada e cortada. */
@media (prefers-reduced-motion: reduce){
  .j2a-marquee{
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
  .j2a-marquee-track{
    animation: none !important;
    transform: none !important;
    width: 100% !important;
    flex-wrap: wrap !important;
    justify-content: center;
    gap: 12px !important;
  }
  .j2a-marquee-track > .j2a-pill:nth-child(n + 11){ display: none; }
}

@media (max-width: 680px){
  .j2a-pill{ padding: 11px 20px; }
  .j2a-pill b{ font-size: .92rem; }
  .franq-panel-stat{ grid-template-columns: 1fr 1fr; gap: 18px; }
}

/* ===================================================================
   22. SEGUNDA OPINIÃO DE PROPOSTA — faixa de captação
   Presente nas páginas de linha de crédito, onde está exatamente o
   público que já tem uma proposta na mesa.
   =================================================================== */

.so-faixa{
  padding-top: clamp(50px, 5vw, 72px) !important;
  padding-bottom: clamp(50px, 5vw, 72px) !important;
}

.so-box{
  display: grid;
  grid-template-columns: 1.55fr .95fr;
  gap: 0;
  border: 1px solid #e2e9f1;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 45, 75, .10);
}

.so-box-texto{
  padding: clamp(28px, 3vw, 40px);
}

.so-tag{
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(242, 169, 0, .15);
  color: #8a5b13;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .11em;
}

.so-box-texto h2{
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1.24;
  letter-spacing: -.022em;
  color: #12385f;
}

.so-box-texto > p{
  margin: 0 0 20px;
  color: #55647a;
  font-size: .96rem;
  line-height: 1.72;
}

.so-lista{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.so-lista li{
  position: relative;
  padding-left: 24px;
  color: #3d4d61;
  font-size: .92rem;
  line-height: 1.6;
}

.so-lista li::before{
  content: "✓";
  position: absolute;
  left: 0;
  color: #c58a00;
  font-size: .84rem;
  font-weight: 700;
}

.so-box-acao{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3vw, 40px);
  border-left: 1px solid #e5ebf2;
  background: linear-gradient(180deg, #f7f9fc 0%, #eef4fa 100%);
  text-align: center;
}

.so-preco{
  display: block;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
  color: #12385f;
}

.so-prazo{
  display: block;
  margin: 8px 0 20px;
  color: #64738a;
  font-size: .86rem;
}

.so-box-acao .btn{ width: 100%; justify-content: center; }

.so-nota{
  margin: 16px 0 0;
  color: #7c8da0;
  font-size: .78rem;
  line-height: 1.55;
}

@media (max-width: 900px){
  .so-box{ grid-template-columns: 1fr; }
  .so-box-acao{
    border-left: 0;
    border-top: 1px solid #e5ebf2;
  }
}

/* O slide da Segunda Opinião reaproveita o degradê que sobrou do
   antigo slide do Raio-X, removido na consolidação de serviços. */
.offer-slide-parecer{
  background: linear-gradient(135deg, #12385f, #1f648f);
}

/* ===================================================================
   23. ISCA DE CAPTURA — página do checklist gratuito
   O formulário envia por WhatsApp hoje. Para trocar por ferramenta de
   e-mail, ver LEIA-ME-ISCA.txt: muda o <form>, o CSS continua valendo.
   =================================================================== */

.isca-hero{
  padding: clamp(56px, 6vw, 88px) 0;
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(31, 90, 145, .08), transparent 60%),
    linear-gradient(180deg, #f6f9fc 0%, #eef3f9 100%);
  border-bottom: 1px solid #e4ebf3;
}

.isca-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.isca-beneficios{
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
}

.isca-beneficios li{
  position: relative;
  padding-left: 26px;
  color: #3d4d61;
  font-size: .96rem;
  line-height: 1.62;
}

.isca-beneficios li::before{
  content: "✓";
  position: absolute;
  left: 0;
  color: #c58a00;
  font-weight: 700;
}

/* Formulário */
.isca-form{
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid #e2e9f1;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 20px 54px rgba(15, 45, 75, .12);
}

.isca-form h2{ margin: 0 0 6px; font-size: 1.3rem; color: #12385f; }

.isca-form > p{
  margin: 0 0 20px;
  color: #64738a;
  font-size: .9rem;
  line-height: 1.6;
}

.isca-form label{
  display: block;
  margin-bottom: 14px;
  color: #12385f;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.isca-form input,
.isca-form select{
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid #d7e0ea;
  border-radius: 10px;
  background: #fff;
  color: #1f2937;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.isca-form input:focus,
.isca-form select:focus{
  outline: none;
  border-color: #2e5c86;
  box-shadow: 0 0 0 3px rgba(46, 92, 134, .14);
}

.isca-form button{ width: 100%; justify-content: center; margin-top: 6px; }

.isca-nota{
  margin: 16px 0 0;
  color: #8494a6;
  font-size: .76rem;
  line-height: 1.55;
}

/* Lista dos doze pontos */
.isca-pontos{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 14px;
}

.isca-pontos li{
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid #e5ebf2;
  border-radius: 14px;
  background: #fff;
}

.isca-pontos b{
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: #eef4fa;
  color: #12385f;
  font-size: .84rem;
  font-weight: 800;
}

.isca-pontos strong{
  display: block;
  margin-bottom: 4px;
  color: #12385f;
  font-size: .97rem;
  letter-spacing: -.012em;
}

.isca-pontos span{
  color: #55647a;
  font-size: .88rem;
  line-height: 1.6;
}

@media (max-width: 900px){
  .isca-grid{ grid-template-columns: 1fr; }
}

/* ===================================================================
   24. J2A BANKER CRM — página de vendas
   =================================================================== */

.crm-hero{
  padding: clamp(60px, 6.5vw, 96px) 0;
  background:
    radial-gradient(880px 420px at 12% 0%, rgba(31,90,145,.10), transparent 62%),
    linear-gradient(180deg, #f6f9fc 0%, #edf2f8 100%);
  border-bottom: 1px solid #e4ebf3;
}

.crm-hero h1{ max-width: 800px; }
.crm-hero .svc-lead{ max-width: 720px; }

.crm-hero-acoes{ display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.crm-hero-nota{
  margin: 14px 0 0;
  color: #64738a;
  font-size: .86rem;
}

/* Recursos */
.crm-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.crm-card{
  padding: 24px 26px;
  border: 1px solid #e5ebf2;
  border-radius: 16px;
  background: #fff;
}

.crm-num{
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: #eef4fa;
  color: #12385f;
  font-size: .8rem;
  font-weight: 800;
}

.crm-card h3{ margin: 0 0 8px; color: #12385f; font-size: 1.02rem; letter-spacing: -.015em; }
.crm-card p{ margin: 0; color: #55647a; font-size: .91rem; line-height: 1.65; }

/* Tabela de comissão */
.crm-tabela-wrap{ overflow-x: auto; }

.crm-tabela{
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e2e9f1;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.crm-tabela th{
  padding: 14px 18px;
  background: #12385f;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-align: left;
}

.crm-tabela td{
  padding: 14px 18px;
  border-top: 1px solid #e9eef4;
  color: #3d4d61;
  font-size: .94rem;
}

.crm-tabela tr:nth-child(even) td{ background: #f8fafc; }

.crm-destaque{ color: #12385f !important; font-weight: 800; }

.crm-obs{
  margin: 16px 0 0;
  color: #64738a;
  font-size: .88rem;
}

/* Planos */
.crm-planos{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
  padding-top: 14px;   /* espaço para o selo, que sobe além do cartão */
}

.crm-plano{
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 30px 28px;
  border: 1px solid #e2e9f1;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15,45,75,.07);
}

.crm-plano-destaque{
  border-color: #f2a900;
  box-shadow: 0 18px 44px rgba(15,45,75,.13);
}

.crm-plano-selo{
  position: absolute;
  top: -13px;
  left: 30px;
  padding: 5px 14px;
  border-radius: 999px;
  background: #12385f;
  color: #fff;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.crm-plano-rot{
  display: block;
  margin-bottom: 6px;
  color: #2e5c86;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.crm-plano h3{ margin: 0 0 20px; color: #12385f; font-size: 1.08rem; }

.crm-preco{
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 22px;
}

.crm-preco span{ color: #64738a; font-size: 1rem; font-weight: 700; }

.crm-preco strong{
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.035em;
  color: #12385f;
}

.crm-preco small{ color: #64738a; font-size: .88rem; }

.crm-lista{
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
  flex: 1;
}

.crm-lista li{
  position: relative;
  padding-left: 26px;
  color: #3d4d61;
  font-size: .93rem;
  line-height: 1.6;
}

.crm-lista li::before{
  content: "✓";
  position: absolute;
  left: 0;
  color: #c58a00;
  font-weight: 700;
}

.crm-plano .svc-btn{ width: 100%; justify-content: center; }

.crm-plano-nota{
  margin: 14px 0 0;
  color: #7c8da0;
  font-size: .82rem;
  text-align: center;
}

/* O que não está incluído */
.crm-fora{
  max-width: 860px;
  margin: 26px auto 0;
  padding: 22px 26px;
  border: 1px solid #e5ebf2;
  border-left: 3px solid #93a2b4;
  border-radius: 0 14px 14px 0;
  background: #fff;
}

.crm-fora strong{ display: block; margin-bottom: 8px; color: #12385f; font-size: .98rem; }
.crm-fora p{ margin: 0; color: #55647a; font-size: .91rem; line-height: 1.65; }

@media (max-width: 820px){
  .crm-planos{ grid-template-columns: 1fr; }
}
