/* ============================================================
   CONEXÃO EMPRÉSTIMOS — Uberaba/MG
   Identidade: laranja #FE5802 (logo) + preto + branco quente
   Verde de apoio (PIX/WhatsApp). Display: Archivo. Body: Inter.
   ============================================================ */

:root {
  --laranja: #FE5802;
  --laranja-escuro: #C74400;
  /* Página colorida + container no mesmo tom (ritmo JundCred navy-900 / navy-800) */
  --laranja-pagina: #C74400;
  --laranja-container: #E04F04;
  --laranja-container-2: #FE5802;
  --laranja-borda: rgba(255, 255, 255, .16);
  --texto-pagina-suave: rgba(255, 236, 220, .82);
  --pagina-laranja: linear-gradient(145deg, var(--laranja-pagina) 0%, var(--laranja-container) 55%, var(--laranja) 100%);
  --laranja-suave: #FFF0E7;
  --laranja-950: var(--laranja-pagina);
  --laranja-900: var(--laranja-pagina);
  --laranja-profundo: var(--laranja-pagina);
  --laranja-painel: var(--laranja-container);
  --laranja-card: var(--laranja-container-2);
  --preto: #16110D;
  --preto-2: #241B14;
  --branco: #FFFFFF;
  --creme: #FFF8F3;
  --cinza: #6E645C;
  --verde: #00A859;
  --verde-wa: #25D366;
  --verde-wa-escuro: #128C4B;
  --radius: 18px;
  --shadow: 0 18px 50px -18px rgba(22, 17, 13, .25);
  --display: "Archivo", sans-serif;
  --body: "Inter", sans-serif;
  --container-max: 1160px;
  --container-pad: clamp(20px, 4vw, 32px);
  --header-h: 68px;
  --hero-footer-h: 36px;
  --hero-fit: 15.5px;
}

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

/* Barra de rolagem OCULTA — snap só no desktop (mobile livre, padrão JundCred/Panda) */
html {
  scroll-behavior: auto;
  scroll-snap-type: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body {
  font-family: var(--body);
  color: var(--preto);
  background: var(--creme);
  line-height: 1.6;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
*,
*::before,
*::after {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
  background: transparent;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(100%, var(--container-max));
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-inline: var(--container-pad);
  box-sizing: border-box;
  align-self: center; /* seções desktop são flex — sem isso o bloco fica à esquerda */
}

h1, h2, h3 { font-family: var(--display); line-height: 1.05; letter-spacing: -.01em; }
h1 { font-weight: 900; }
/* Escala JundCred — títulos de seção (não hero) */
h2 { font-weight: 900; font-size: clamp(24px, 5vh, 40px); text-transform: uppercase; }
h3 { font-weight: 800; font-size: clamp(15px, 2.4vh, 17px); }
.hl { color: var(--laranja); }

/* Kicker/eyebrow — estilo JundCred: só tipografia, SEM pílula/caixa */
.eyebrow {
  display: block;
  font-family: var(--body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--laranja);
  background: none;
  border: 0;
  padding: 0;
  border-radius: 0;
  margin: 0 0 .35rem;
}
.eyebrow-orange {
  color: #FFC7A3;
  background: none;
  border: 0;
}

.section-head { text-align: center; max-width: 620px; margin: 0 auto clamp(20px, 4vh, 44px); }
.section-head h2 { margin: 10px 0 12px; }
.section-head p {
  margin: 0;
  margin-top: .15rem;
  color: var(--cinza);
  font-size: clamp(13px, 2.4vh, 16px);
  line-height: 1.45;
}
.section-head-dark p { color: #CDBFB4; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--display);
  font-weight: 700;
  padding: .8rem 1.5rem;
  border-radius: 12px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-wa { background: var(--verde-wa); color: #fff; box-shadow: 0 12px 28px -10px rgba(18, 140, 75, .55); }
.btn-wa:hover { background: var(--verde-wa-escuro); }
.btn-ghost { background: transparent; border-color: var(--preto); color: var(--preto); }
.btn-ghost:hover { background: var(--preto); color: #fff; }

/* ---------- Header branco ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 1px 0 rgba(22, 17, 13, .06),
    0 8px 24px rgba(22, 17, 13, .12),
    0 18px 40px -12px rgba(22, 17, 13, .18);
  border-bottom: 1px solid rgba(22, 17, 13, .06);
  display: flex;
  justify-content: center;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow:
    0 1px 0 rgba(22, 17, 13, .08),
    0 10px 28px rgba(22, 17, 13, .14),
    0 22px 48px -14px rgba(22, 17, 13, .22);
}
.header-inner { display: flex; align-items: center; gap: 2rem; padding: .7rem 0; position: relative; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 0;
  border: 0;
  background: transparent;
}
.brand-name { font-family: var(--display); font-weight: 900; font-size: .95rem; line-height: 1.05; color: var(--preto); }
.brand-name em { font-style: normal; color: var(--laranja); font-size: .72rem; letter-spacing: .18em; }
.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-left: auto;
  font-weight: 600;
  font-size: .92rem;
}
.nav a { color: var(--preto-2); padding: .3rem 0; border-bottom: 2px solid transparent; }
.nav a:hover { color: var(--laranja); border-bottom-color: var(--laranja); }
.btn-erp-open {
  margin-left: .2rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .55rem .95rem;
  border-radius: 999px;
  border: 1px solid var(--laranja);
  background: transparent;
  color: var(--laranja);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-erp-open:hover {
  background: var(--laranja);
  border-color: var(--laranja);
  color: #fff;
}
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--preto); cursor: pointer; }

/* ---------- Seções (páginas desktop) ---------- */
main > section {
  scroll-margin-top: var(--header-h);
  box-sizing: border-box;
}
.section-inner {
  /* Só centra na vertical; NÃO zerar margin-inline (isso jogava o conteúdo à esquerda) */
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  margin-right: auto;
  align-self: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #3d1608;
  color: #fff;
}
/* Foto */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #3d1608;
  background-image: image-set(
    url("assets/hero-loja.webp") type("image/webp"),
    url("assets/hero-loja.jpg") type("image/jpeg")
  );
  background-size: cover;
  background-position: 42% 48%;
  background-repeat: no-repeat;
}
/* Véu laranja-escuro (mesmo papel do overlay navy da JundCred) */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(40, 14, 6, .86) 0%,
      rgba(90, 28, 8, .78) 42%,
      rgba(120, 40, 10, .68) 100%
    ),
    radial-gradient(
      ellipse 120% 90% at 50% 42%,
      rgba(254, 88, 2, .10) 40%,
      rgba(22, 17, 13, .45) 100%
    );
}
.hero-body {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* reserva a faixa marquee — não empurra nem cobre ao abrir a tabela */
  padding: clamp(.75rem, 1.8vh, 1.5rem) 0 calc(var(--hero-footer-h) + .85rem);
  overflow: visible;
}
.hero-shape { display: none; }
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
  min-height: 0;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  justify-content: center;
  align-self: center;
  gap: clamp(1rem, 2vh, 1.35rem);
  color: #fff;
  will-change: transform;
}
.btn-hero-sim {
  margin-top: .35rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: var(--laranja);
  box-shadow: 0 14px 32px -12px rgba(254, 88, 2, .65);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-hero-sim:hover {
  transform: translateY(-2px);
  background: var(--laranja-escuro);
  box-shadow: 0 18px 36px -12px rgba(199, 68, 0, .7);
}
.hero-copy h1 { font-size: clamp(2rem, min(5vw, 5.2vh), 4rem); text-transform: uppercase; margin: 0; color: #fff; }
.hero-copy .hl { position: relative; white-space: nowrap; color: #FFB07A; }
.hero-copy .hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: .05em; height: .28em; background: var(--laranja); opacity: .45; z-index: -1; }
.hero-lead { margin: 0; font-size: clamp(.95rem, 1.7vh, 1.1rem); color: rgba(255, 255, 255, .88); max-width: 32rem; line-height: 1.55; }
.hero-lead strong { color: #fff; }
.hero-lead-mobile { display: none; }
.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .65rem;
  margin-top: .15rem;
}
.hero-secondary {
  display: none;
  color: rgba(255, 255, 255, .88);
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: underline;
  text-underline-offset: .2em;
}
.hero-secondary:hover { color: #fff; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; justify-content: flex-start; gap: .5rem 1.25rem; margin: 0; padding: .65rem 0 .5rem; font-weight: 600; font-size: .88rem; color: rgba(255, 255, 255, .92); }
.sim-close { display: none; }

/* Rodapé do hero — faixa sempre visível no fundo do hero (também com tabela aberta) */
.hero-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: var(--hero-footer-h);
  box-sizing: border-box;
  background: var(--laranja);
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
  visibility: visible;
  opacity: 1;
  transform: none;
  clip-path: none;
}
.hero-footer.is-away {
  /* legado: nunca esconder a faixa por layout da tabela */
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
  pointer-events: none;
}
.hero-footer .marquee-track { display: flex; gap: 1.4rem; align-items: center; width: max-content; animation: marquee 26s linear infinite; }
.hero-footer .marquee-track span { font-family: var(--display); font-weight: 800; color: #fff; letter-spacing: .08em; font-size: .72rem; white-space: nowrap; line-height: 1; }
.hero-footer .marquee-track i { color: rgba(255, 255, 255, .55); font-style: normal; font-size: .55rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Cards do hero ficam acima da faixa */
.hero-copy,
.hero .sim-card {
  position: relative;
  z-index: 1;
}

/* ---------- Simulador (card branco) ---------- */
.sim-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(10, 8, 6, .28);
  border: 1px solid #F0E3D8;
  width: 100%;
  max-width: 380px;
  min-width: 0;
  box-sizing: border-box;
  justify-self: end;
  color: var(--preto);
}
.hero .sim-card {
  max-width: min(380px, 100%);
  background: #fff;
}
.sim-head {
  background: #fff;
  color: var(--preto);
  padding: 1.15rem 1.35rem .25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: .5rem 12px;
}
.sim-head h2 {
  font-size: clamp(15px, 2.2vh, 18px);
  margin: 0;
  text-transform: none;
  color: var(--preto);
  font-weight: 800;
  flex: 1 1 auto;
}
.sim-head::after {
  content: "Só valores da tabela · resposta no WhatsApp";
  display: block;
  flex: 1 1 100%;
  order: 3;
  margin-top: .15rem;
  font-family: var(--body);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--cinza);
}
.sim-close { order: 2; }
.sim-body { padding: .85rem 1.35rem 1.2rem; }
.sim-presets { display: grid; grid-template-columns: repeat(3, 1fr); gap: .45rem; margin-bottom: .9rem; }
.sim-presets button {
  font-family: var(--display);
  font-weight: 700;
  font-size: .78rem;
  padding: .55rem .15rem;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid #E8D5C6;
  background: var(--creme);
  color: var(--preto-2);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.sim-presets button:hover {
  border-color: var(--laranja);
  color: var(--preto);
}
.sim-presets button.active {
  background: var(--laranja);
  border-color: var(--laranja);
  color: #fff;
}
.sim-result {
  background: var(--creme);
  border: 1px solid #F0E3D8;
  border-radius: 14px;
  padding: .85rem 1rem;
  margin-bottom: .9rem;
}
.sim-result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12.5px;
  color: var(--cinza);
  padding: .25rem 0;
}
.sim-result-row strong {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--preto);
}
.sim-result-parcela strong { color: var(--laranja-escuro); font-size: 1.25rem; }
.sim-result-parcela em { font-style: normal; font-size: .85rem; color: var(--laranja-escuro); }
.sim-card .btn-wa {
  border-radius: 999px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(18, 140, 75, .55);
}
.sim-card .btn-wa:hover { color: #fff; }
.sim-note {
  font-size: 11.5px;
  color: var(--cinza);
  text-align: center;
  margin-top: .65rem;
  line-height: 1.35;
}

/* ---------- Soluções — página branca ---------- */
.solucoes {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  background: var(--branco);
  color: var(--preto);
}
.solucoes .section-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}
.solucoes .section-head { margin-bottom: clamp(14px, 3vh, 32px); text-align: center; }
.solucoes .section-head h2 {
  color: var(--preto);
  font-size: clamp(1.15rem, 2.8vh, 1.75rem);
  line-height: 1.25;
  text-wrap: balance;
  max-width: 42rem;
  margin-inline: auto;
}
.solucoes .section-head h2 .hl { color: var(--laranja); }
.solucoes .section-head p { color: var(--cinza); }
.sol-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.8vh, 18px);
}
.sol-card {
  background: #fff;
  border: 1px solid rgba(22, 17, 13, .1);
  border-radius: var(--radius);
  padding: clamp(14px, 2.2vh, 20px) clamp(14px, 1.6vw, 18px);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  color: var(--preto);
  box-shadow: 0 8px 24px -18px rgba(22, 17, 13, .2);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.sol-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -18px rgba(22, 17, 13, .28);
  border-color: rgba(254, 88, 2, .4);
  background: #fff;
}
.sol-card .sol-head h3 { color: var(--preto); }
.solucoes .sol-icon {
  background: var(--laranja-suave);
}
.solucoes .sol-card p { color: var(--cinza); }
.solucoes .sol-card > a { color: var(--laranja-escuro); }
.solucoes .sol-card > a:hover { color: var(--laranja); }
.sol-head {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: clamp(.45rem, 1.2vh, .7rem);
}
.sol-icon {
  flex-shrink: 0;
  width: clamp(36px, 5vh, 42px);
  height: clamp(36px, 5vh, 42px);
  display: grid;
  place-items: center;
  font-size: clamp(1.05rem, 2.2vh, 1.2rem);
  background: var(--laranja-suave);
  border-radius: 26%;
  transform: rotate(45deg);
}
.sol-icon span { display: block; transform: rotate(-45deg); }
.sol-head h3 {
  font-size: clamp(14px, 2.2vh, 16px);
  margin: 0;
  line-height: 1.2;
}
.sol-card p {
  font-size: clamp(12px, 1.9vh, 13.5px);
  color: var(--cinza);
  margin: 0 0 clamp(.55rem, 1.4vh, .85rem);
  line-height: 1.4;
  flex: 1;
}
.sol-card > a,
.sol-destaque-cta {
  font-family: var(--display);
  font-weight: 700;
  color: var(--laranja-escuro);
  font-size: clamp(12.5px, 1.9vh, 13.5px);
  margin-top: auto;
}
.sol-card > a:hover,
.sol-destaque-cta:hover { color: var(--laranja); }

/* Destaque: faixa laranja com vídeo (destaque na página branca) */
.sol-card-destaque {
  grid-column: 1 / -1;
  position: relative;
  display: block;
  border: 1px solid rgba(0, 0, 0, .18);
  color: #fff;
  min-height: clamp(260px, 36vh, 340px);
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  background: #111;
  box-shadow: 0 16px 40px -20px rgba(0, 0, 0, .35);
}
.sol-card-destaque:hover {
  border-color: rgba(0, 0, 0, .28);
  transform: none;
  box-shadow: 0 18px 44px -18px rgba(0, 0, 0, .4);
  background: #111;
}
.car-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 48%;
  display: block;
  pointer-events: none;
  /* GPU layer sem zoom digital (o scale antigo deixava o 720p borrado) */
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.car-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .38) 36%, rgba(0, 0, 0, .12) 58%, transparent 78%),
    linear-gradient(180deg, rgba(0, 0, 0, .18) 0%, transparent 48%, rgba(0, 0, 0, .22) 100%);
}
.sol-destaque-ui {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: inherit;
  padding: clamp(16px, 2.4vh, 24px) clamp(16px, 2vw, 28px);
  box-sizing: border-box;
}
.sol-destaque-main {
  display: grid;
  gap: .4rem;
  min-width: 0;
  max-width: 34rem;
  align-content: start;
  padding-right: 6rem;
}
.sol-card-destaque .sol-head { margin-bottom: 0; }
.sol-card-destaque .sol-icon {
  background: var(--laranja);
  box-shadow: 0 4px 14px rgba(254, 88, 2, .45);
}
/* Ganha do .solucoes .sol-card (texto escuro dos cards brancos) */
.solucoes .sol-card.sol-card-destaque,
.solucoes .sol-card.sol-card-destaque .sol-head h3,
.solucoes .sol-card.sol-card-destaque h3 {
  color: #fff;
}
.solucoes .sol-card.sol-card-destaque h3 {
  font-size: clamp(18px, 2.9vh, 24px);
  font-weight: 900;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .65);
}
.solucoes .sol-card.sol-card-destaque p {
  color: rgba(255, 255, 255, .9);
  margin: 0;
  max-width: 34rem;
  flex: none;
  font-size: clamp(13.5px, 2.1vh, 15.5px);
  font-weight: 500;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .55);
}
.solucoes .sol-card.sol-card-destaque p strong {
  color: #fff;
  font-weight: 800;
}
.solucoes .sol-card.sol-card-destaque > a,
.solucoes .sol-card.sol-card-destaque .sol-destaque-cta {
  color: #fff;
}
.sol-tag {
  position: absolute;
  top: clamp(16px, 2.4vh, 24px);
  right: clamp(16px, 2vw, 28px);
  font-family: var(--display);
  font-weight: 800;
  font-size: .65rem;
  letter-spacing: .18em;
  background: var(--laranja);
  color: #fff;
  padding: .28rem .65rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(254, 88, 2, .4);
}
.sol-destaque-cta {
  margin-top: auto;
  align-self: flex-start;
  white-space: nowrap;
  color: #fff !important;
  background: var(--laranja);
  border: 1px solid var(--laranja);
  border-radius: 12px;
  padding: .65rem 1.15rem;
  text-decoration: none !important;
  box-shadow: 0 8px 22px rgba(254, 88, 2, .4);
  transition: background .15s ease, transform .15s ease, color .15s ease, box-shadow .15s ease;
}
.sol-destaque-cta:hover {
  background: #fff;
  border-color: #fff;
  color: var(--laranja-escuro) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .25);
}

/* ---------- Passos — página branca ---------- */
.passos {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  background: var(--branco);
  color: var(--preto);
}
.passos .section-head { text-align: center; }
.passos .eyebrow { color: var(--laranja); }
.passos .section-head h2 { color: var(--preto); }
.passos .section-head h2 .hl { color: var(--laranja); }
.passos .section-head p {
  color: var(--cinza);
  max-width: 38rem;
  margin-inline: auto;
}
.passos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vh, 1.5rem);
}
.passo {
  text-align: left;
  padding: clamp(18px, 3vh, 28px) clamp(16px, 2vw, 24px);
  background: var(--creme);
  border: 1px solid rgba(22, 17, 13, .08);
  border-radius: var(--radius);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.passo:hover {
  transform: translateY(-3px);
  border-color: rgba(254, 88, 2, .35);
  box-shadow: 0 14px 32px -18px rgba(22, 17, 13, .2);
}
.passo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .85rem;
}
.passo-num {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 4vh, 36px);
  line-height: 1;
  color: var(--laranja);
  background: none;
  border: 0;
  transform: none;
  width: auto;
  height: auto;
  margin: 0;
}
.passo-wa {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: .78rem;
  color: #fff;
  background: var(--verde-wa);
  padding: .45rem .85rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s ease, transform .15s ease;
}
.passo-wa:hover { background: var(--verde-wa-escuro); color: #fff; transform: translateY(-1px); }
.passo h3 {
  font-size: clamp(15px, 2.4vh, 18px);
  margin: 0 0 .45rem;
  color: var(--preto);
}
.passo p {
  color: var(--cinza);
  font-size: clamp(12.5px, 2.1vh, 14px);
  line-height: 1.45;
  margin: 0;
}
.passos-note {
  margin: clamp(1.1rem, 2.5vh, 1.6rem) 0 0;
  text-align: center;
  font-size: .88rem;
  color: var(--cinza);
}

/* ---------- Loja + feed Instagram (direita) — página branca ---------- */
.loja {
  background: var(--branco);
  color: var(--preto);
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
}
.loja-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  align-items: center;
}
.loja-copy { color: var(--preto); max-width: 36rem; }
.loja .eyebrow,
.loja .eyebrow-orange {
  color: var(--laranja);
  letter-spacing: .18em;
  text-transform: uppercase;
  text-shadow: none;
}
.loja h2 {
  margin: .35rem 0 0;
  color: var(--preto);
  font-size: clamp(1.65rem, 4.2vh, 2.55rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  text-wrap: balance;
  text-shadow: none;
}
.loja h2 .hl {
  color: var(--laranja);
  text-shadow: none;
}
.loja-lead {
  margin: 1.05rem 0 1.35rem;
  color: var(--cinza);
  max-width: 34rem;
  font-size: clamp(14px, 2.3vh, 16.5px);
  font-weight: 500;
  line-height: 1.55;
  text-shadow: none;
}
.loja-lead-mobile { display: none; }
.loja-actions { display: none; }
.loja-midia-row {
  display: contents;
}
.loja-list {
  list-style: none;
  display: grid;
  gap: .65rem;
  margin: 0 0 1.45rem;
  padding: 0;
}
.loja-list li {
  display: grid;
  grid-template-columns: 6.5rem minmax(0, 1fr);
  gap: .55rem 1rem;
  align-items: baseline;
  padding: .55rem 0;
  border-top: 1px solid rgba(22, 17, 13, .1);
}
.loja-list li:last-child {
  padding-bottom: .15rem;
  border-bottom: 1px solid rgba(22, 17, 13, .1);
}
.loja-label {
  font-family: var(--display);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cinza);
}
.loja-value {
  font-size: clamp(14px, 2.2vh, 15.5px);
  font-weight: 600;
  color: var(--preto);
  text-decoration: none;
  line-height: 1.35;
}
a.loja-value:hover { color: var(--laranja); text-decoration: underline; text-underline-offset: 3px; }
.loja-social {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.loja-social-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  height: 100%;
}
.loja-social-top {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  flex-shrink: 0;
}
.loja-social-label {
  font-family: var(--display);
  font-weight: 800;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cinza);
  margin-right: .15rem;
}
.loja-midia {
  display: flex;
  align-items: center;
  gap: .55rem .65rem;
  flex-wrap: wrap;
}
.loja-midia-chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  max-width: 100%;
  padding: .28rem .75rem .28rem .28rem;
  border-radius: 999px;
  background: #fff;
  color: var(--preto);
  text-decoration: none;
  border: 1px solid rgba(22, 17, 13, .1);
  box-shadow: 0 6px 16px -12px rgba(22, 17, 13, .2);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.loja-midia-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(254, 88, 2, .4);
  box-shadow: 0 10px 22px -14px rgba(22, 17, 13, .28);
  color: var(--preto);
}
.loja-midia-chip img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #F3E8DF;
}
.loja-midia-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .01em;
  line-height: 1.1;
  white-space: nowrap;
}
.loja-feed-marquee {
  min-width: 0;
  flex: 1 1 auto;
}
.loja-feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  flex-shrink: 0;
}
.loja-feed-brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.loja-feed-logo {
  display: none;
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
}
.loja-midia-slot {
  margin-top: .15rem;
}
.loja-midia-slot:empty { display: none; }
.loja-feed-handle {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(.78rem, 1.8vh, .88rem);
  letter-spacing: .04em;
  color: var(--preto);
  text-shadow: none;
  text-decoration: none;
}
.loja-feed-brand:hover .loja-feed-handle { color: var(--laranja); }
.loja-feed-follow {
  font-family: var(--display);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--laranja);
  padding: .35rem .85rem;
  border-radius: 999px;
  transition: transform .15s ease, background .15s ease;
}
.loja-feed-follow:hover { transform: translateY(-1px); background: var(--laranja-escuro); color: #fff; }
.loja-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.4rem, 1.1vh, .7rem);
  width: 100%;
}
.loja-feed-slot--extra,
.loja-feed-slot--clone { display: none; }
.loja-feed-slot {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  background: var(--creme);
  border: 1px solid rgba(22, 17, 13, .1);
  box-shadow: 0 8px 22px -16px rgba(22, 17, 13, .25);
  opacity: 0;
  transform: scale(.92) translateY(8px);
  transition: opacity .55s ease, transform .55s ease;
}
.loja-feed-slot.is-on {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.loja-feed-slot.is-out {
  opacity: 0;
  transform: scale(.9) translateY(6px);
}
.loja-feed-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.loja-feed-slot:hover img { transform: scale(1.05); }

/* ---------- Última página: FAQ + rodapé (estilo Panda) ---------- */
.section-final {
  padding: 0;
  display: flex;
  flex-direction: column;
  background: #FAFAF8;
  color: var(--preto);
}
.final-page {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  flex: 1;
}
.faq-layout {
  flex: 1 1 auto;
  display: grid;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: center;
  width: 100%;
  padding-block: clamp(1.25rem, 3vh, 2.5rem);
  box-sizing: border-box;
}
.faq-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .85rem;
  min-width: 0;
}
.faq-intro h2 {
  margin: 0;
  font-size: clamp(24px, 4.5vh, 36px);
  color: var(--preto);
  text-wrap: balance;
}
.faq-intro p {
  margin: 0;
  max-width: 34ch;
  color: var(--cinza);
  font-size: clamp(13px, 2.2vh, 15px);
  line-height: 1.45;
}
.faq-intro .btn { margin-top: .25rem; }

/* Accordion em linha — sem caixas/pílulas (Panda) */
.faq-list {
  display: grid;
  gap: 0;
  width: 100%;
  min-width: 0;
  text-align: left;
}
.faq-list details {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(22, 17, 13, .12);
  border-radius: 0;
  padding: 0;
}
.faq-list details:first-child { border-top: 1px solid rgba(22, 17, 13, .12); }
.faq-list details[open] { border-bottom-color: rgba(254, 88, 2, .35); }
.faq-list summary {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(14px, 2.2vh, 16px);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: .95rem 2rem .95rem .15rem;
  color: var(--preto);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: .15rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--laranja);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
}
.faq-list details[open] summary { color: var(--laranja-escuro); }
.faq-list details[open] summary::after { content: "–"; }
.faq-list p {
  margin: 0;
  padding: 0 .15rem 1rem;
  max-width: 52ch;
  color: var(--cinza);
  font-size: 14px;
  line-height: 1.5;
}

/* Rodapé compacto (padrão JundCred: barra horizontal) */
.site-footer--in-final {
  margin-top: auto;
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  background: var(--laranja-escuro);
  color: rgba(255, 255, 255, .72);
  padding: 14px var(--container-pad);
  box-sizing: border-box;
  border-top: 0;
}
.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px 20px;
  flex-wrap: wrap;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  text-align: left;
}
.footer-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 0;
  border: 0;
  background: transparent;
  flex-shrink: 0;
}
.footer-brand strong,
.footer-brand .font-display {
  display: block;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .02em;
  white-space: nowrap;
}
.ig-link--footer {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  text-decoration: none;
  transition: border-color .15s ease, background .15s ease;
}
.ig-link--footer:hover {
  border-color: rgba(255, 255, 255, .45);
  background: rgba(255, 255, 255, .12);
  color: #fff;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
}
.footer-nav a { color: rgba(255, 255, 255, .72); }
.footer-nav a:hover { color: #fff; }
.footer-legal {
  font-size: 12px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.4;
  white-space: nowrap;
}
.footer-legal-short { display: none; }

/* ---------- WhatsApp flutuante (oculto no hero) ---------- */
.wa-float {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 90;
  width: 58px; height: 58px; display: grid; place-items: center;
  background: var(--verde-wa); border-radius: 50%;
  box-shadow: 0 12px 30px -8px rgba(18, 140, 75, .6);
  transition: transform .2s ease, opacity .2s ease, visibility .2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(.92);
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .5s ease, transform .5s ease; }
.reveal.on { opacity: 1; transform: none; }

/* ---------- Desktop: scroll página a página (≥900px) ---------- */
@media (min-width: 900px) {
  /* Snap CSS desligado: o JS controla a troca de página (evita “2 scrolls = 1 página”) */
  html { scroll-snap-type: none; }
  .wa-float { display: none !important; }
  main > section {
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    height: calc(100svh - var(--header-h));
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100dvh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    max-height: calc(100svh - var(--header-h));
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    display: flex;
    flex-direction: column;
    align-items: center; /* centra .container na horizontal */
    justify-content: safe center;
    /* Sem scroll interno nas páginas normais — overflow engolia o 1º giro da roda */
    overflow: hidden;
    overscroll-behavior-y: none;
  }
  main > section.hero {
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    height: calc(100svh - var(--header-h));
    min-height: calc(100vh - var(--header-h));
    min-height: calc(100dvh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
    max-height: calc(100vh - var(--header-h));
    max-height: calc(100dvh - var(--header-h));
    max-height: calc(100svh - var(--header-h));
    justify-content: stretch;
    overflow: hidden;
  }
  .hero-body { flex: 1; min-height: 0; }

  /* Desktop: tabela some até “Simular agora”; depois texto → direita, tabela → esquerda */
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }
  .hero-grid:not(.is-sim-open) .hero-copy {
    max-width: 36rem;
  }
  .hero-grid:not(.is-sim-open) .sim-card {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin-block: auto;
    height: fit-content;
    width: min(380px, 42%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(-56px, 0, 0);
  }
  .hero-grid.is-sim-open {
    grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  }
  .hero-grid.is-sim-open .sim-card {
    order: 1;
    justify-self: start;
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    /* visibilidade controlada pelo anime.js (só após o texto terminar de andar) */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .hero-grid.is-sim-open .sim-card.is-in {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .hero-grid.is-sim-open .hero-copy {
    order: 2;
    justify-self: end;
    align-items: flex-start;
    text-align: left; /* mesmo bloco — só muda de lugar, não “vira” outro texto */
    max-width: 34rem;
  }
  .hero-grid.is-sim-open .btn-hero-sim {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  /* Última página: cabe na viewport e, se precisar, rola por dentro (não corta o rodapé) */
  main > section.section-final {
    height: calc(100svh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
    max-height: calc(100svh - var(--header-h));
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    justify-content: stretch;
    align-items: stretch;
    padding: 0;
  }
  .section-final > .final-page,
  .section-final .final-page {
    width: 100%;
    min-height: 100%;
    margin: 0;
    align-self: stretch;
  }
  .section-final .final-page {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    height: 100%;
  }
  .section-final .faq-layout {
    flex: 1 1 auto;
    min-height: 0;
    grid-template-columns: minmax(220px, .85fr) minmax(0, 1.15fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: center;
    padding-block: clamp(.75rem, 2vh, 1.5rem);
  }
  .section-final .site-footer--in-final {
    flex: 0 0 auto;
    padding: 12px var(--container-pad);
  }
  .faq-intro h2 { font-size: clamp(22px, 4vh, 34px); }

  /* Loja = exatamente 1 viewport (sem faixa vazia / sem scroll interno) */
  .loja {
    box-sizing: border-box;
    height: calc(100svh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
    max-height: calc(100svh - var(--header-h));
    padding: clamp(10px, 2vh, 22px) 0;
    overflow: hidden;
    justify-content: stretch;
  }
  .loja > .container.section-inner {
    flex: 1 1 auto;
    align-self: stretch;
    width: min(100%, var(--container-max));
    max-width: var(--container-max);
    height: 100%;
    min-height: 0;
    margin-top: 0;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(1rem, 2.2vw, 2.25rem);
    align-items: stretch;
  }
  .loja-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
  }
  .loja h2 {
    font-size: clamp(22px, 4.2vh, 36px);
    line-height: 1.05;
  }
  .loja-lead {
    margin: clamp(.45rem, 1.4vh, .9rem) 0 clamp(.65rem, 1.8vh, 1.1rem);
    font-size: clamp(12.5px, 2vh, 15px);
  }
  .loja-list {
    gap: 0;
    margin-bottom: clamp(.65rem, 1.8vh, 1.15rem);
  }
  .loja-list li {
    padding: clamp(.4rem, 1vh, .55rem) 0;
    grid-template-columns: 5.75rem minmax(0, 1fr);
  }
  .loja-value { font-size: clamp(13px, 1.9vh, 15px); }
  .loja-social {
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .loja-social-card {
    min-height: 0;
    flex: 1 1 auto;
    justify-content: center;
  }
  .loja-feed-marquee {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 0;
    flex: 1 1 auto;
    container-type: size;
  }
  .loja-feed-grid {
    flex: 0 1 auto;
    width: min(100%, 100cqh);
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: clamp(.35rem, 1vh, .55rem);
  }
  .loja-feed-slot {
    aspect-ratio: auto;
    width: 100%;
    height: 100%;
    min-height: 0;
    min-width: 0;
    border-radius: 10px;
  }

  /* Soluções: cabe inteira na página — sem scroll interno */
  .solucoes {
    padding: clamp(10px, 2vh, 24px) 0;
    overflow: hidden;
    justify-content: center;
  }
  .solucoes .section-head {
    margin-bottom: clamp(10px, 2.2vh, 22px);
  }
  .solucoes .section-head h2 {
    font-size: clamp(1.2rem, 2.6vh, 1.85rem);
    white-space: nowrap;
  }
  .solucoes .section-head p {
    font-size: clamp(12.5px, 2vh, 15px);
  }
}

@media (min-width: 900px) and (max-height: 720px) {
  .solucoes .section-head p { display: none; }
  .sol-card p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .loja-lead-desktop {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .loja-midia-chip { padding: .22rem .6rem .22rem .22rem; }
  .loja-midia-chip img { width: 30px; height: 30px; }
  .loja-midia-name { font-size: .72rem; }
}

/* ---------- Mobile (≤899px) — base JundCred/Panda ---------- */
@media (max-width: 899px) {
  html,
  body {
    scroll-snap-type: none !important;
    scroll-padding-top: 0;
  }

  section {
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
    scroll-margin-top: 0;
    min-height: 0;
  }

  .site-header {
    position: absolute;
    left: 0; right: 0; top: 0;
    width: 100%;
    background: rgba(255, 255, 255, .96);
  }
  :root { --container-pad: 16px; --header-h: 58px; --hero-footer-h: 30px; }
  .header-inner {
    gap: 6px;
    padding: 8px max(12px, env(safe-area-inset-right, 0px)) 8px max(12px, env(safe-area-inset-left, 0px));
  }
  .brand { min-width: 0; flex: 1 1 auto; gap: 6px; }
  .brand-logo { width: 34px; height: 34px; }
  .brand-name {
    font-size: 13px;
    line-height: 1.1;
    min-width: 0;
    overflow: hidden;
  }
  .nav-toggle { font-size: 1.35rem; }

  .hero,
  section.hero {
    height: 100vh;
    height: 100dvh;
    height: 100svh;
    min-height: 100vh;
    min-height: 100dvh;
    min-height: 100svh;
    max-height: none;
    padding: calc(var(--header-h) + 6px) 0 max(14px, env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
  }
  .hero-body {
    align-items: stretch;
    padding: .2rem 0 0;
    min-height: 0;
  }
  .hero::before { background-position: calc(86% + 2px) 46%; }
  .hero::after {
    background:
      linear-gradient(
        180deg,
        rgba(40, 14, 6, .55) 0%,
        rgba(90, 28, 8, .68) 38%,
        rgba(40, 14, 6, .88) 72%,
        rgba(22, 17, 13, .94) 100%
      ),
      radial-gradient(
        ellipse 140% 80% at 50% 20%,
        rgba(254, 88, 2, .08) 30%,
        rgba(22, 17, 13, .4) 100%
      );
  }
  .hero-grid {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    gap: 0;
    grid-template-columns: 1fr;
  }
  .hero-copy {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: .75em;
    min-height: 0;
    width: 100%;
    font-size: var(--hero-fit);
  }
  .hero-copy h1 {
    font-size: 1.72em;
    line-height: 1.08;
    margin: 0;
    width: 100%;
    max-width: 19rem;
    letter-spacing: -.015em;
  }
  .hero-lead-desktop { display: none !important; }
  .hero-lead-mobile {
    display: block;
    margin-inline: auto;
    font-size: .95em;
    max-width: 19rem;
    width: 100%;
    line-height: 1.42;
  }
  .hero-badges { display: none; }
  .hero-cta-row {
    width: 100%;
    max-width: 17rem;
    align-items: stretch;
    gap: .45em;
    margin-top: .1em;
    flex-shrink: 0;
  }
  .btn-hero-sim {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: .68em 1em;
    font-size: .9em;
    border-radius: 999px;
    background: var(--verde-wa);
    border-color: var(--verde-wa);
    color: #053b1c;
  }
  .btn-hero-sim:hover {
    background: var(--verde-wa-escuro);
    border-color: var(--verde-wa-escuro);
    color: #fff;
  }
  .hero-secondary {
    display: block;
    width: 100%;
    text-align: center;
    font-size: .88em;
  }
  .hero-footer .marquee-track span { font-size: .62rem; }

  /* Simulador mobile = bottom sheet (altura do conteúdo) */
  .sim-sheet-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 220;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background: transparent;
    -webkit-tap-highlight-color: transparent;
  }
  body.sim-sheet-open .sim-sheet-backdrop {
    display: block;
  }
  body.sim-sheet-open .site-header {
    z-index: 230;
  }
  /* No body (JS move) ou no hero — acima do backdrop */
  body > .sim-card,
  .hero .sim-card {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 240;
    pointer-events: auto;
    max-width: none;
    width: 100%;
    height: auto;
    max-height: min(88dvh, 88vh);
    min-height: 0;
    margin: 0;
    border-radius: 22px 22px 0 0;
    border: 0;
    border-top: 1px solid #F0E3D8;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    padding:
      6px
      max(16px, env(safe-area-inset-right, 0px))
      max(16px, env(safe-area-inset-bottom, 0px))
      max(16px, env(safe-area-inset-left, 0px));
    background: #fff;
    box-shadow: 0 -18px 48px rgba(22, 17, 13, .22);
    overflow: auto;
    overscroll-behavior: contain;
  }
  body > .sim-card::before,
  .hero .sim-card::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    margin: 6px auto 10px;
    border-radius: 999px;
    background: #E0D5CB;
    flex-shrink: 0;
  }
  body.sim-sheet-open { overflow: hidden; }
  body.sim-sheet-open > .sim-card,
  body.sim-sheet-open .hero .sim-card {
    display: flex;
    animation: sim-sheet-up 340ms cubic-bezier(0.16, 1, 0.3, 1);
  }
  body.sim-sheet-open > .sim-card.is-sheet-out,
  body.sim-sheet-open .hero .sim-card.is-sheet-out {
    animation: sim-sheet-down 240ms ease-in forwards;
  }
  body.sim-sheet-open .sim-sheet-backdrop.is-sheet-out {
    animation: sim-backdrop-out 240ms ease-in forwards;
  }
  body.sim-sheet-open .hero-footer,
  body.sim-sheet-open .wa-float { display: none !important; }
  .sim-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
  }
  .sim-close {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #E8DED4;
    background: #fff;
    color: var(--preto-2);
    font-size: 1.1rem;
    cursor: pointer;
    flex-shrink: 0;
  }
  .sim-body { flex: 1; }

  .solucoes .section-head h2 { white-space: normal; }
  .loja-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    flex: 1 1 auto;
    min-height: 0;
  }
  .loja-list li { grid-template-columns: 5.25rem minmax(0, 1fr); gap: .4rem .75rem; }
  .sol-grid,
  .passos-grid { grid-template-columns: 1fr; gap: 12px; }
  .sol-card-destaque {
    grid-column: 1 / -1;
  }
  .car-video {
    object-position: 62% 50%;
    transform: translateZ(0);
  }
  .sol-destaque-main { padding-right: 0; }
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem max(16px, env(safe-area-inset-right, 0px)) 1rem max(16px, env(safe-area-inset-left, 0px));
    gap: .9rem;
    box-shadow: 0 14px 24px rgba(22, 17, 13, .12);
    border-bottom: 1px solid rgba(22, 17, 13, .08);
  }
  .nav a { color: var(--preto-2); }
  .nav .btn-erp-open {
    margin: .35rem 0 0;
    width: 100%;
    font-size: .78rem;
    padding: .7rem 1rem;
    text-align: center;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; margin-left: auto; flex-shrink: 0; }

  .solucoes,
  .passos {
    padding: 28px 0 36px;
    height: auto;
    max-height: none;
  }
  .loja {
    padding: 14px 0 0;
    height: auto;
    min-height: 100svh;
    min-height: 100dvh;
    max-height: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    overflow: visible;
  }
  .loja > .container.section-inner {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: calc(100svh - 14px);
    min-height: calc(100dvh - 14px);
    overflow: visible;
  }
  .loja-grid,
  .loja-social {
    overflow: visible;
  }
  .section-head { margin-bottom: 1rem; max-width: 34rem; }
  .section-head h2,
  h2 { font-size: 1.25rem; line-height: 1.2; }
  .section-head p,
  .faq-intro p { font-size: 13px; line-height: 1.45; }
  .eyebrow { font-size: 10px; letter-spacing: .12em; }
  .sol-card,
  .passo {
    padding: .85rem .9rem;
    border-radius: 14px;
  }
  .sol-icon {
    width: 34px;
    height: 34px;
    font-size: .85rem;
  }
  .sol-icon svg { width: 16px; height: 16px; }
  .sol-head h3,
  .passo h3 { font-size: 13.5px; margin: 0; }
  .sol-card p,
  .passo p { font-size: 12px; line-height: 1.4; margin-bottom: .45rem; }
  .sol-card > a,
  .sol-destaque-cta { font-size: 12px; }
  .sol-card-destaque {
    min-height: 210px;
    border-radius: 16px;
  }
  .solucoes .sol-card.sol-card-destaque h3 { font-size: 1.15rem; }
  .solucoes .sol-card.sol-card-destaque p { font-size: 12.5px; }
  .sol-destaque-ui { padding: 14px 14px; }
  .sol-card-destaque .sol-tag,
  .sol-card-destaque .sol-icon {
    display: none;
  }

  /* CTA “Simular grátis” só aparece perto do fim do vídeo */
  .sol-card-destaque .sol-destaque-cta {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px) scale(.96);
  }
  .sol-card-destaque.car-stage--cta-in .sol-destaque-cta {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    animation: car-cta-in 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .passos-grid { gap: 10px; }
  .passos-note { display: none; }
  .passo-num { font-size: .75rem; }
  .btn-lg { padding: .65rem 1rem; font-size: 14px; }
  .btn { padding: .65rem 1.05rem; font-size: 13.5px; }

  /* Loja mobile: preenche a tela; mapa cresce no espaço livre */
  .loja-copy {
    max-width: none;
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .loja-copy .eyebrow {
    font-size: 10px;
    letter-spacing: .14em;
    flex-shrink: 0;
  }
  .loja-copy h2 {
    font-size: clamp(1.3rem, 5.6vw, 1.55rem);
    line-height: 1.12;
    margin-top: .3rem;
    max-width: none;
    flex-shrink: 0;
  }
  .loja-copy h2 br { display: inline; }
  .loja-copy h2 .hl { display: inline; }
  .loja-lead-desktop { display: none; }
  .loja-lead-mobile {
    display: block;
    font-size: 13px;
    line-height: 1.4;
    margin: .45rem 0 .7rem;
    max-width: 28rem;
    flex-shrink: 0;
  }
  .loja-list { display: none; }

  .loja-actions {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    margin: 0;
    justify-content: center;
    align-items: center;
  }
  /* Card estilo Panda: moldura branca + mídia quadrada inset */
  .loja-map-card {
    flex: 0 1 auto;
    width: min(100%, 300px);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(22, 17, 13, .08);
    box-shadow:
      0 10px 28px -18px rgba(22, 17, 13, .28),
      0 1px 0 rgba(255, 255, 255, .6) inset;
  }
  .loja-map {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    flex: none;
    min-height: 0;
    background: #EDE6DF;
    overflow: hidden;
    border-radius: 12px;
  }
  /* Recorta UI do Google; toque abre o Maps pelo link */
  .loja-map iframe {
    position: absolute;
    left: 50%;
    top: 46%;
    width: 170%;
    height: 170%;
    border: 0;
    display: block;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: saturate(.92) contrast(1.02);
  }
  .loja-map-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-shrink: 0;
    padding: 2px 2px 0;
    background: transparent;
    border-top: 0;
  }
  .loja-map-meta-main {
    flex: 1 1 auto;
    min-width: 0;
    text-decoration: none;
    color: var(--preto);
  }
  .loja-map-meta-main:active { opacity: .85; }
  .loja-action-kicker {
    display: block;
    font-family: var(--display);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--laranja);
    margin-bottom: .18rem;
  }
  .loja-map-meta-main strong {
    display: block;
    font-family: var(--display);
    font-size: .95rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: .1rem;
  }
  .loja-map-meta-main span:last-child {
    display: block;
    font-size: 12px;
    color: var(--cinza);
    line-height: 1.3;
  }
  .loja-map-wa {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--verde-wa);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 16px -10px rgba(18, 140, 75, .55);
    transition: transform .15s ease, background .15s ease;
  }
  .loja-map-wa:active {
    transform: scale(.96);
    background: var(--verde-wa-escuro);
  }
  .loja-map-wa svg {
    display: block;
    width: 18px;
    height: 18px;
  }

  /* Bloco social unificado: preto, posts colados, sem Seguir */
  .loja-social {
    max-width: none;
    min-width: 0;
    margin-top: 12px;
    flex: 0 0 auto;
  }
  .loja-social-card {
    width: calc(100% + (2 * var(--container-pad)));
    max-width: none;
    margin-left: calc(-1 * var(--container-pad));
    margin-right: calc(-1 * var(--container-pad));
    gap: 0;
    background: #0A0A0A;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
  }
  .loja-social-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 14px;
    background: var(--laranja);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
  }
  .loja-feed-head {
    display: flex;
    align-items: center;
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-start;
  }
  .loja-feed-brand {
    gap: .45rem;
    min-width: 0;
  }
  .loja-midia-slot { display: none; }
  .loja-feed-logo {
    display: block;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: #fff;
  }
  .loja-feed-handle {
    display: block;
    color: #fff;
    font-size: 11px;
    letter-spacing: 0;
    max-width: 46vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .loja-feed-brand:hover .loja-feed-handle { color: rgba(255, 255, 255, .88); }
  .loja-feed-follow { display: none; }

  .loja-midia {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin: 0;
    min-width: 0;
    flex: 0 0 auto;
    overflow: visible;
    line-height: 1;
  }
  .loja-midia-row {
    display: flex;
    align-items: center;
    order: 1;
  }
  .loja-social-label {
    order: 2;
    color: rgba(255, 255, 255, .9);
    font-size: 7px;
    letter-spacing: .1em;
    margin: 0;
    flex-shrink: 0;
    line-height: 1;
    white-space: nowrap;
  }
  .loja-midia-chip {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: -5px;
  }
  .loja-midia-chip:first-child { margin-left: 0; }
  .loja-midia-chip:hover {
    transform: translateY(-1px);
    border-color: transparent;
    box-shadow: none;
    z-index: 2;
  }
  .loja-midia-chip img {
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--laranja);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .35);
  }
  .loja-midia-name {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .loja-midia--icons .loja-midia-chip,
  .loja-midia--icons .loja-midia-chip.is-expanded {
    padding: 0;
  }
  .loja-midia--icons .loja-midia-chip .loja-midia-name,
  .loja-midia--icons .loja-midia-chip.is-expanded .loja-midia-name {
    position: absolute;
    width: 1px;
    height: 1px;
    max-width: none;
    opacity: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
  }
  .loja-feed-marquee {
    background: #0A0A0A;
    border-radius: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    border-bottom: 3px solid var(--laranja);
  }
  .loja-feed-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
    width: max-content;
    max-width: none;
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
  }
  .loja-feed-grid--marquee {
    animation: loja-feed-marquee 32s linear infinite;
  }
  .loja-social-card:hover .loja-feed-grid--marquee,
  .loja-social-card:focus-within .loja-feed-grid--marquee {
    animation-play-state: paused;
  }
  .loja-feed-slot,
  .loja-feed-slot--extra,
  .loja-feed-slot--clone {
    display: block;
    flex: 0 0 112px;
    width: 112px;
    aspect-ratio: 1;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #111;
    opacity: 1;
    transform: none;
  }
  .loja-feed-slot.is-on,
  .loja-feed-slot.is-out,
  .loja-feed-slot--clone {
    opacity: 1;
    transform: none;
  }
  .loja-feed-slot img {
    border-radius: 0;
  }

@keyframes loja-feed-marquee {
  to { transform: translateX(-50%); }
}
@keyframes car-cta-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

  .section-final { padding: 0; }
  .section-final .faq-layout {
    grid-template-columns: 1fr;
    padding-block: 1.5rem 1rem;
    gap: 1.1rem;
  }
  .faq-intro h2 { font-size: 1.25rem; }
  .faq-item summary { font-size: 13.5px; padding: .75rem 0; }
  .faq-item p { font-size: 12.5px; }
  .faq-intro { text-align: left; }
  /* Rodapé compacto — padrão JundCred / Panda */
  .site-footer--in-final {
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  }
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 8px;
  }
  .footer-brand-row {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }
  .footer-brand { gap: .45rem; }
  .footer-brand img {
    width: 24px;
    height: 24px;
  }
  .footer-brand strong,
  .footer-brand .font-display {
    font-size: 13px;
    letter-spacing: .01em;
  }
  .ig-link--footer {
    width: 32px;
    height: 32px;
  }
  .ig-link--footer .ig-icon {
    width: 14px;
    height: 14px;
  }
  .footer-nav {
    justify-content: flex-start;
    gap: 10px 12px;
    font-size: 12px;
  }
  .footer-legal {
    white-space: normal;
    text-align: left;
    font-size: 10px;
    line-height: 1.35;
    color: rgba(255, 255, 255, .5);
  }
  .footer-legal-full { display: none; }
  .footer-legal-short { display: inline; }
  .wa-float { display: none !important; }

  .sim-head { padding: 1rem 1rem .15rem; }
  .sim-head h2 { font-size: 1.05rem; }
  .sim-head::after { font-size: 11.5px; }
  .sim-body { padding: .7rem 1rem 1rem; }
  .sim-presets button { font-size: .72rem; padding: .5rem .1rem; }
  .sim-result-row { font-size: .8rem; }
  .sim-result-parcela strong { font-size: 1.15rem; }
  .sim-close { width: 34px; height: 34px; font-size: .95rem; }

}

@keyframes sim-sheet-up {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}
@keyframes sim-sheet-down {
  from { transform: translateY(0); }
  to { transform: translateY(110%); }
}
@keyframes sim-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes sim-backdrop-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-footer .marquee-track { animation: none; }
  .loja-feed-grid--marquee { animation: none !important; }
  body.sim-sheet-open > .sim-card,
  body.sim-sheet-open > .sim-card.is-sheet-out,
  body.sim-sheet-open .hero .sim-card,
  body.sim-sheet-open .hero .sim-card.is-sheet-out,
  body.sim-sheet-open .sim-sheet-backdrop,
  body.sim-sheet-open .sim-sheet-backdrop.is-sheet-out {
    animation: none !important;
  }
}

/* ========== Área Restrita / ERP (regras visuais Eletrolar + laranja Conexão) ========== */
.erp[hidden] { display: none !important; }
.erp {
  --erp-black: #0A0A0A;
  --erp-accent: #FE5802;
  --erp-accent-ink: #0A0A0A;
  --erp-surface: #F3F4F6;
  --erp-card: #FFFFFF;
  --erp-muted: #6B7280;
  --erp-line: #E5E7EB;
  --erp-top-h: 76px;
  --erp-radius: 12px;
  --erp-shadow: 0 8px 24px -16px rgba(0, 0, 0, .28);
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 248px 1fr;
  overflow: hidden;
  background: var(--erp-surface);
  color: var(--erp-accent-ink);
  font-family: var(--body);
}
.erp-sidebar {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: 0 .85rem 1rem;
  background: var(--erp-black);
  color: #fff;
  min-height: 0;
}
.erp-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  height: var(--erp-top-h);
  min-height: var(--erp-top-h);
  padding: 0 .35rem;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.erp-brand-logo {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: contain;
  padding: 6px;
  box-sizing: border-box;
  background: #fff;
  border: 2px solid rgba(255, 255, 255, .2);
  display: block;
}
.erp-brand strong {
  display: block;
  font-family: var(--display);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.15;
}
.erp-brand span {
  display: block;
  font-size: .68rem;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: .2rem;
  line-height: 1.25;
}
.erp-nav {
  display: grid;
  gap: .4rem;
  flex: 1;
  align-content: start;
  padding-top: .35rem;
  min-height: 0;
  overflow: auto;
}
.erp-nav-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  width: 100%;
  text-align: left;
  padding: .72rem .8rem;
  border-radius: 10px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, .88);
  cursor: pointer;
  font-family: var(--display);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: background .15s ease, color .15s ease;
}
.erp-nav-icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-grid;
  place-items: center;
  background: transparent;
  color: inherit;
}
.erp-nav-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}
.erp-nav-item:hover {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}
.erp-nav-item.is-active {
  background: var(--erp-accent);
  color: var(--erp-accent-ink);
}
.erp-nav-item.is-active .erp-nav-icon { color: var(--erp-accent-ink); }
.erp-exit {
  width: 100%;
  margin-top: auto;
  padding: .8rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .35);
  background: transparent;
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
}
.erp-exit:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .06);
}
.erp-workspace {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: var(--erp-surface);
  color: var(--erp-accent-ink);
}
.erp-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--erp-top-h);
  min-height: var(--erp-top-h);
  padding: 0 1.5rem;
  box-sizing: border-box;
  background: var(--erp-black);
  color: #fff;
  border-bottom: none;
}
.erp-topbar-brand { display: none; }
.erp-topbar-text { min-width: 0; flex: 1; }
.erp-topbar h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}
.erp-topbar-sub {
  margin: .28rem 0 0;
  font-size: .82rem;
  color: rgba(255, 255, 255, .62);
  line-height: 1.3;
}
.erp-close-x {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .28);
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.erp-close-x:hover {
  border-color: var(--erp-accent);
  color: var(--erp-accent);
}
.erp-views {
  flex: 1;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1.35rem 1.5rem 2rem;
  scrollbar-width: thin;
  scrollbar-color: #C4C4C4 transparent;
  -ms-overflow-style: auto;
}
.erp-views::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
  display: block !important;
  background: transparent;
}
.erp-views::-webkit-scrollbar-thumb {
  background: #C4C4C4;
  border-radius: 999px;
}
.erp-views::-webkit-scrollbar-track { background: transparent; }
.erp-view[hidden] { display: none !important; }
.erp-view.is-active { display: block; }

.erp-panel {
  background: var(--erp-card);
  border-radius: var(--erp-radius);
  box-shadow: var(--erp-shadow);
  overflow: hidden;
  margin-bottom: 1rem;
}
.erp-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  min-height: 48px;
  padding: .85rem 1.1rem;
  background: var(--erp-accent);
  color: var(--erp-accent-ink);
}
.erp-panel-head strong {
  font-family: var(--display);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.erp-panel-body {
  padding: 1.15rem 1.2rem 1.25rem;
  background: var(--erp-card);
}
.erp-panel-body > p {
  margin: 0;
  color: var(--erp-muted);
  line-height: 1.55;
  max-width: 42rem;
}

.erp-welcome {
  width: 100%;
  max-width: 920px;
}
.erp-welcome-copy {
  margin-bottom: 1.5rem;
  max-width: 46rem;
}
.erp-welcome-copy h3 {
  margin: 0 0 .85rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--erp-accent-ink);
  text-transform: none;
}
.erp-welcome-copy p {
  margin: 0 0 .85rem;
  color: #374151;
  line-height: 1.65;
  font-size: .95rem;
  max-width: none;
}
.erp-welcome-copy p:last-child { margin-bottom: 0; }
.erp-welcome-copy strong { color: var(--erp-accent-ink); }
.erp-welcome-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--erp-line);
  border-bottom: 1px solid var(--erp-line);
}
.erp-stat-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.erp-stat-label {
  display: block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--erp-muted);
  margin-bottom: .45rem;
}
.erp-stat-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  margin-bottom: .4rem;
  color: var(--erp-accent-ink);
  line-height: 1.25;
}
.erp-stat-card > span:last-child {
  display: block;
  font-size: .85rem;
  color: var(--erp-muted);
  line-height: 1.45;
}
.erp-welcome-more {
  max-width: 46rem;
}
.erp-welcome-more h4 {
  margin: 0 0 .75rem;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--erp-accent-ink);
  text-transform: none;
}
.erp-welcome-list {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  color: #374151;
  line-height: 1.75;
  font-size: .95rem;
}
.erp-welcome-list li + li { margin-top: .15rem; }
.erp-welcome-cta-note {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #374151;
  font-size: .92rem;
  line-height: 1.55;
}
.erp-welcome-cta-note strong { color: var(--erp-accent-ink); }
/* ---------- Calculadora empresarial (integrada ao workspace) ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.erp-biz {
  --biz-line: #E8DED4;
  --biz-muted: var(--cinza);
  --biz-surface: #fff;
  --biz-field: var(--creme);
  --biz-accent: var(--laranja);
  --biz-accent-ink: #fff;
  --biz-radius-sm: 10px;
  --biz-radius-md: 12px;
  --biz-radius-pill: 999px;
  width: 100%;
  max-width: 980px;
}

.erp-biz-intro {
  display: none;
}

.erp-biz-lead {
  margin: 0 0 1.1rem;
  color: var(--erp-muted, var(--cinza));
  font-size: .92rem;
  max-width: 40rem;
  line-height: 1.5;
}

.erp-biz .font-display {
  font-family: var(--display);
  font-weight: 800;
}

.erp-biz .biz-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  min-width: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.erp-biz .biz-cta-slot:empty { display: none; }

.erp-biz .sim-card {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  box-sizing: border-box;
  min-width: 0;
}

.erp-biz .sim-fields,
.erp-biz .sim-step1 {
  display: flex;
  flex-direction: column;
}

.erp-biz .sim-step1 { gap: 14px; }

.erp-biz .sim-label {
  font-family: var(--body);
  font-size: .8rem;
  font-weight: 700;
  color: var(--biz-muted);
  display: block;
  margin: 0;
}

.erp-biz .sim-label + .sim-input-wrap { margin-top: -4px; }

.erp-biz .sim-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.erp-biz .sim-prefix {
  position: absolute;
  left: 14px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  color: var(--biz-muted);
  pointer-events: none;
  z-index: 1;
}

.erp-biz .sim-suffix {
  position: absolute;
  right: 14px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  color: var(--biz-muted);
  pointer-events: none;
  z-index: 1;
}

.erp-biz .sim-input {
  padding: .75rem 14px .75rem 42px;
  border-radius: var(--biz-radius-sm);
  border: 1px solid var(--biz-line);
  background: var(--biz-field);
  color: var(--preto);
  caret-color: var(--preto);
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  width: 100%;
  box-sizing: border-box;
  outline: none;
}

.erp-biz .sim-input--pct {
  padding-left: 14px;
  padding-right: 40px;
}

.erp-biz .sim-input::placeholder {
  color: #B5A89C;
  font-weight: 600;
}

.erp-biz .sim-input:focus {
  border-color: var(--laranja);
  box-shadow: 0 0 0 3px rgba(254, 88, 2, 0.18);
  background: #fff;
}

.erp-biz .sim-tabs {
  display: flex;
  gap: 8px;
}

.erp-biz .sim-tab {
  flex: 1;
  padding: .7rem 8px;
  border-radius: var(--biz-radius-sm);
  font-family: var(--body);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms ease-out, color 150ms ease-out, border-color 150ms ease-out;
  border: 1px solid var(--biz-line);
  background: var(--biz-field);
  color: var(--preto-2);
}

.erp-biz .sim-tab.is-active {
  border-color: var(--laranja);
  background: var(--laranja);
  color: var(--biz-accent-ink);
}

.erp-biz .sim-dd { position: relative; }

.erp-biz .sim-dd-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
  padding: .75rem 14px;
  border-radius: var(--biz-radius-sm);
  border: 1px solid var(--biz-line);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  color: var(--preto);
  background: var(--biz-field);
  cursor: pointer;
  outline: none;
}

.erp-biz .sim-dd-toggle:focus-visible,
.erp-biz .sim-dd.is-open .sim-dd-toggle {
  border-color: var(--laranja);
  box-shadow: 0 0 0 3px rgba(254, 88, 2, 0.18);
  background: #fff;
}

.erp-biz .sim-dd-chevron {
  flex-shrink: 0;
  color: var(--biz-muted);
  transition: transform 150ms ease-out;
}

.erp-biz .sim-dd.is-open .sim-dd-chevron { transform: rotate(180deg); }

.erp-biz .sim-dd-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 40;
  display: none;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--biz-line);
  border-radius: var(--biz-radius-md);
  box-shadow: 0 12px 28px -16px rgba(22, 17, 13, .28);
}

.erp-biz .sim-dd.is-open .sim-dd-menu { display: grid; }

.erp-biz .sim-dd-opt {
  padding: 9px 0;
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  background: transparent;
  color: var(--preto-2);
  cursor: pointer;
  transition: background 120ms ease-out, color 120ms ease-out, border-color 120ms ease-out;
}

.erp-biz .sim-dd-opt:hover {
  border-color: #FFD9C2;
  background: var(--laranja-suave);
  color: var(--laranja-escuro);
}

.erp-biz .sim-dd-opt.is-active {
  background: var(--laranja);
  border-color: var(--laranja);
  color: #fff;
}

.erp-biz .sim-summary {
  background: var(--laranja-suave);
  border: 1px solid #FFD9C2;
  border-radius: var(--biz-radius-md);
  padding: 1rem 1.05rem;
}

.erp-biz .sim-summary-label {
  font-family: var(--body);
  font-size: .82rem;
  color: var(--biz-muted);
  margin-bottom: 4px;
}

.erp-biz .sim-summary-pmt {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.2vw, 2rem);
  color: var(--laranja-escuro);
  line-height: 1.1;
}

.erp-biz .sim-summary-pmt.is-empty,
.erp-biz .sim-summary.is-empty .sim-summary-pmt {
  font-size: 1.25rem;
  font-weight: 700;
  color: #B5A89C;
  letter-spacing: 0.04em;
}

.erp-biz .sim-summary-meta {
  font-family: var(--body);
  font-size: .82rem;
  color: var(--biz-muted);
  margin-top: 6px;
}

.erp-biz .sim-cta-slot {
  display: flex;
  flex-direction: column;
}

.erp-biz .sim-primary,
.erp-biz button.sim-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--verde-wa);
  color: #053b1c !important;
  border: none;
  border-radius: var(--biz-radius-pill);
  padding: .85rem 1.25rem;
  font-family: var(--body);
  font-size: .95rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none !important;
  text-align: center;
  box-sizing: border-box;
  transition: opacity 150ms ease-out;
}

.erp-biz .sim-primary.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.erp-biz .sim-field-alert {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding: .85rem 1.25rem;
  border-radius: var(--biz-radius-pill);
  border: 1px dashed #E0D2C6;
  background: var(--biz-field);
  color: var(--biz-muted);
  font-family: var(--body);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.erp-biz .sim-field-alert[hidden],
.erp-biz .sim-cta-slot .sim-primary[hidden] { display: none !important; }

.erp-biz .sim-input.is-missing,
.erp-biz .sim-dd-toggle.is-missing,
.erp-biz [data-sim-bandeiras].is-missing .sim-tab {
  border-color: var(--laranja);
  box-shadow: 0 0 0 3px rgba(254, 88, 2, 0.16);
}

.erp-biz [data-dd-label].is-placeholder {
  color: #B5A89C;
  font-weight: 600;
}

.erp-biz .biz-panel {
  margin-top: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.erp-biz .biz-step {
  padding: 12px 0 8px;
  border-top: 1px solid #F0E8E0;
}

.erp-biz .biz-step:first-of-type {
  border-top: none;
  padding-top: 0;
}

.erp-biz .biz-step-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}

.erp-biz .biz-step-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--laranja);
  color: #fff;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.erp-biz .biz-step-title {
  font-family: var(--body);
  font-size: .9rem;
  font-weight: 700;
  color: var(--preto);
  line-height: 1.25;
}

.erp-biz .biz-step-desc {
  margin: 2px 0 0;
  font-family: var(--body);
  font-size: .78rem;
  line-height: 1.4;
  color: var(--biz-muted);
}

.erp-biz .biz-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 5px 0 5px 32px;
  font-family: var(--body);
  font-size: .85rem;
  color: var(--biz-muted);
}

.erp-biz .biz-row strong {
  color: var(--preto);
  font-weight: 700;
  white-space: nowrap;
}

.erp-biz .biz-row strong.biz-gain { color: var(--verde); }
.erp-biz .biz-row strong.biz-cost { color: var(--laranja-escuro); }

.biz-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%) translateY(12px);
  z-index: 220;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(22, 17, 13, 0.94);
  border: 1px solid rgba(254, 88, 2, 0.35);
  color: #fff;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease-out, transform 180ms ease-out;
}

.biz-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 860px) {
  .erp-biz .biz-stack {
    gap: 1.35rem;
  }

  .erp-biz .biz-panel {
    padding-top: 1.15rem;
    border-top: 1px solid var(--biz-line);
  }

  .erp-biz .biz-stack .biz-cta-slot {
    display: block;
    padding: 0;
  }

  .erp-biz .biz-stack .biz-cta-slot:empty { display: none; }
}

@media (min-width: 861px) {
  .erp-biz.biz-layout .biz-stack {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 1.75rem;
    align-items: start;
  }

  .erp-biz.biz-layout .calc-card-wrap {
    padding-right: 1.75rem;
    border-right: 1px solid var(--biz-line);
  }

  .erp-biz.biz-layout .biz-panel {
    padding: 0;
    align-self: start;
  }

  .erp-biz.biz-layout .biz-cta-slot { display: none; }

  .erp-biz.biz-layout .sim-card { padding: 0; }
  .erp-biz.biz-layout .sim-step1 { gap: 12px; }
}

.erp-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .65rem;
}
.erp-table-item {
  background: var(--creme);
  border: 1px solid #F0E3D8;
  border-radius: 12px;
  padding: .9rem .85rem;
  text-align: center;
}
.erp-table-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--preto);
}
.erp-table-item span {
  display: block;
  margin-top: .25rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--laranja-escuro);
}
.erp-ideas {
  margin: 0 0 1rem;
  padding-left: 1.1rem;
  color: var(--preto-2);
  line-height: 1.7;
}
.erp-hint {
  margin: 0;
  font-size: .82rem;
  color: var(--cinza);
}

body.erp-open { overflow: hidden; }

/* Tab bar — só mobile (desktop usa sidebar) */
.erp-tabbar {
  display: none;
}

@media (max-width: 899px) {
  .erp {
    --erp-top-h: 56px;
    --erp-tab-h: calc(58px + env(safe-area-inset-bottom, 0px));
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    background: #F7F5F3;
  }

  /* Sidebar some; navegação vai para a tab bar */
  .erp-sidebar { display: none; }

  .erp-workspace {
    min-height: 0;
    grid-row: 1;
    background: #F7F5F3;
  }

  .erp-topbar {
    height: var(--erp-top-h);
    min-height: var(--erp-top-h);
    padding: 0 .9rem;
    padding-top: env(safe-area-inset-top, 0px);
    height: calc(var(--erp-top-h) + env(safe-area-inset-top, 0px));
    min-height: calc(var(--erp-top-h) + env(safe-area-inset-top, 0px));
    gap: .65rem;
    background: #111;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }
  .erp-topbar-brand {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    flex-shrink: 0;
    overflow: hidden;
    border: 1.5px solid rgba(255, 255, 255, .25);
  }
  .erp-topbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
    box-sizing: border-box;
    display: block;
  }
  .erp-topbar h2 {
    font-size: 1.05rem;
    letter-spacing: .02em;
  }
  .erp-topbar-sub {
    font-size: .68rem;
    opacity: .65;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .erp-close-x {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 1.05rem;
  }

  .erp-views {
    padding: .9rem .9rem calc(.9rem + 8px);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain;
  }

  /* —— Bottom tab bar (estilo app) —— */
  .erp-tabbar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-row: 2;
    height: var(--erp-tab-h);
    padding: .35rem .4rem calc(.35rem + env(safe-area-inset-bottom, 0px));
    box-sizing: border-box;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(22, 17, 13, .08);
    box-shadow: 0 -8px 28px -18px rgba(22, 17, 13, .35);
    z-index: 5;
  }
  .erp-tab {
    appearance: none;
    border: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .2rem;
    min-height: 48px;
    padding: .25rem .2rem;
    border-radius: 14px;
    color: #8A8178;
    cursor: pointer;
    font-family: var(--display);
    transition: color .15s ease, background .15s ease, transform .12s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .erp-tab:active { transform: scale(.96); }
  .erp-tab-icon {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
  }
  .erp-tab-icon svg {
    width: 22px;
    height: 22px;
    display: block;
  }
  .erp-tab-label {
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    line-height: 1;
  }
  .erp-tab.is-active {
    color: var(--erp-accent);
    background: rgba(254, 88, 2, .1);
  }
  .erp-tab-exit { color: #6E645C; }
  .erp-tab-exit:hover,
  .erp-tab-exit:active { color: var(--erp-accent-ink); }

  /* Welcome mobile */
  .erp-welcome { max-width: none; gap: 1rem; }
  .erp-welcome-copy {
    padding: 1.1rem 1rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(22, 17, 13, .08);
    box-shadow: 0 10px 28px -20px rgba(22, 17, 13, .28);
  }
  .erp-welcome-copy h3 {
    font-size: 1.15rem;
    line-height: 1.25;
    margin-bottom: .65rem;
  }
  .erp-welcome-copy p {
    font-size: .9rem;
    line-height: 1.5;
    margin-bottom: .7rem;
  }
  .erp-welcome-grid {
    grid-template-columns: 1fr;
    gap: .65rem;
    border: 0;
    padding: 0;
  }
  .erp-stat-card {
    padding: .95rem 1rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(22, 17, 13, .08);
  }
  .erp-welcome-more {
    padding: 1rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(22, 17, 13, .08);
  }
  .erp-welcome-more h4 { font-size: .95rem; }
  .erp-welcome-list { font-size: .88rem; gap: .35rem; }
  .erp-welcome-cta-note {
    font-size: .82rem;
    margin-top: .85rem;
  }

  /* Calculadora mobile — contexto do piloto no topo */
  .erp-biz-intro {
    display: block;
    margin: 0 0 1rem;
    padding: 1.05rem 1.1rem 1.15rem;
    border-radius: 18px;
    background:
      linear-gradient(145deg, rgba(254, 88, 2, 0.12) 0%, rgba(255, 255, 255, 0.96) 42%, #fff 100%),
      #fff;
    border: 1px solid rgba(199, 68, 0, 0.14);
    box-shadow: 0 10px 28px rgba(22, 17, 13, 0.06);
  }
  .erp-biz-intro-kicker {
    display: inline-block;
    margin: 0 0 .45rem;
    font-family: var(--body);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--laranja-escuro);
  }
  .erp-biz-intro-title {
    margin: 0 0 .55rem;
    font-family: var(--display);
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--preto);
  }
  .erp-biz-intro p {
    margin: 0;
    font-size: .9rem;
    line-height: 1.55;
    color: var(--preto-2, #3a322c);
  }
  .erp-biz-intro p + p { margin-top: .55rem; }
  .erp-biz-intro strong { color: var(--laranja-escuro); font-weight: 800; }
  .erp-biz-intro-more {
    color: var(--cinza) !important;
    font-size: .86rem !important;
  }

  .erp-biz-lead {
    font-size: .88rem;
    margin-bottom: .75rem;
  }
  .erp-biz.biz-layout .biz-stack {
    grid-template-columns: 1fr;
    gap: .85rem;
  }
  .erp-biz .biz-panel {
    border-radius: 16px;
    padding: .85rem;
  }
  .erp-biz .sim-card {
    border-radius: 16px;
    max-width: none;
  }
  .erp-biz .sim-primary,
  .erp-biz button.sim-primary {
    min-height: 48px;
    border-radius: 14px;
    font-size: .95rem;
  }
  .erp-table { grid-template-columns: 1fr; }

  body.erp-open .biz-toast {
    bottom: calc(var(--erp-tab-h, 64px) + 12px);
  }
}

@media (max-width: 899px) and (max-height: 700px) {
  .erp-welcome-copy p:nth-child(n+3) { display: none; }
  .erp-welcome-more .erp-welcome-list li:nth-child(n+4) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .erp-tab { transition: none; }
  .erp-tab:active { transform: none; }
}
