/* ===== "Por que é tão barato?" — linha do tempo da cadeia de preço (alinhado ao design system) ===== */
.pricechain {
  padding: var(--s10) var(--s4);
  text-align: center;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  overflow: hidden;
}

/* ----- cabeçalho ----- */
.pc-kicker {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: var(--t-xs); font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--red); margin-bottom: var(--s3);
}
.pc-kicker::before, .pc-kicker::after { content: ""; width: 16px; height: 1px; background: rgba(226,32,40,.4); }
.pc-title {
  font-size: var(--t-2xl); font-weight: 800; line-height: 1.2; letter-spacing: -.02em;
  color: var(--ink); max-width: 19ch; margin: 0 auto var(--s3);
}
.pc-title b { color: var(--red); }
.pc-sub {
  font-size: var(--t-base); line-height: 1.55; color: var(--ink-2);
  max-width: 36ch; margin: 0 auto var(--s6);
}
.pc-sub b { color: var(--ink); font-weight: 700; }

/* ----- card "recibo" ----- */
.pc-card {
  /* preenche o gutter da seção (16px) — mesmo alinhamento dos outros cards da página */
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--sh-sm);
  overflow: hidden;
  text-align: left;
}

/* ----- timeline ----- */
.pc-timeline { padding: var(--s5) var(--s5) var(--s4); }
.pc-tl-row {
  position: relative;
  padding: 9px 0 9px 30px;
}
/* linha vertical conectando os pontos */
.pc-tl-row::before {
  content: "";
  position: absolute; left: 7px; top: 10px; height: 100%;
  width: 2px; background: var(--line);
}
.pc-tl-row:last-child::before { display: none; }
.pc-tl-dot {
  position: absolute; left: 0; top: 2px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--c);
  box-shadow: 0 0 0 4px var(--white), 0 0 0 5px var(--line);
}
.pc-tl-head { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s3); }
.pc-tl-name { font-size: var(--t-md); font-weight: 800; color: var(--ink); letter-spacing: -.01em; }
.pc-tl-total {
  font-size: var(--t-lg); font-weight: 900; letter-spacing: -.02em;
  color: var(--c); font-variant-numeric: tabular-nums; white-space: nowrap;
}
.pc-tl-sub { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s3); margin-top: 1px; }
.pc-tl-tag { font-size: var(--t-sm); color: var(--ink-3); font-weight: 500; }
.pc-tl-add { font-size: var(--t-sm); font-weight: 800; color: var(--c); white-space: nowrap; }
.pc-tl-add.pc-base { color: var(--ink-3); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: var(--t-xs); }

/* ----- faixa do total (rodapé do card) ----- */
.pc-result {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color: #fff;
  padding: var(--s4) var(--s5);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s3);
}
.pc-result-l { display: flex; flex-direction: column; }
.pc-result-lbl { font-size: var(--t-xs); font-weight: 700; color: rgba(255,255,255,.82); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.pc-result-big { font-size: var(--t-2xl); font-weight: 900; letter-spacing: -.02em; line-height: 1; font-variant-numeric: tabular-nums; }
.pc-result-mult {
  flex: 0 0 auto; text-align: center;
  font-size: var(--t-md); font-weight: 900; line-height: 1;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--r); padding: 8px 12px;
}
.pc-result-mult small { display: block; font-size: 9.5px; font-weight: 700; letter-spacing: .04em; color: rgba(255,255,255,.85); margin-top: 3px; }

/* ----- fecho ----- */
.pc-foot {
  margin: var(--s6) auto 0; font-size: var(--t-base); line-height: 1.5; color: var(--ink-2); max-width: 32ch; text-align: center;
}
.pc-foot b { color: var(--ink); font-weight: 800; }
.pc-punch {
  margin: var(--s4) auto 0; max-width: max-content;
  font-size: var(--t-sm); font-weight: 700; color: var(--ink);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 9px 18px;
}
.pc-punch span { color: #15a349; font-weight: 800; }
.pc-punch b { color: var(--red); }

/* ----- continuação: a solução (direto da fábrica), igual ao popup ----- */
.pc-solution { max-width: 360px; margin: 26px auto 0; text-align: center; }
.pc-sol-kicker { font-size: var(--t-xs); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: #15a349; margin-bottom: 8px; }
.pc-sol-title { font-size: var(--t-xl); font-weight: 800; line-height: 1.25; letter-spacing: -.015em; color: var(--ink); margin: 0 auto 16px; max-width: 18ch; }
.pc-sol-title b { color: #15a349; }
.pc-flow { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0 0 12px; }
.pc-node { font-size: 13px; font-weight: 800; color: #fff; border-radius: 10px; padding: 9px 14px; white-space: nowrap; }
.pc-node-on { background: #15a349; }
.pc-node-you { background: var(--ink); }
.pc-arrow { font-size: 12px; font-weight: 800; color: #15a349; white-space: nowrap; }
.pc-cross { font-size: 13px; color: var(--ink-3); margin: 0 0 16px; }
.pc-cross s { margin: 0 4px; text-decoration-color: var(--red); text-decoration-thickness: 2px; }
.pc-diff { display: flex; align-items: flex-start; gap: 12px; text-align: left; background: rgba(21,163,73,.06); border: 1px solid rgba(21,163,73,.22); border-radius: 14px; padding: 14px; margin: 0 0 16px; }
.pc-diff-ic { flex: none; line-height: 0; margin-top: 1px; }
.pc-diff p { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--ink-2); }
.pc-diff b { color: var(--ink); font-weight: 800; }
.pc-pricebox { display: flex; align-items: center; justify-content: space-between; background: rgba(21,163,73,.07); border: 1px solid rgba(21,163,73,.25); border-radius: 14px; padding: 12px 16px; margin: 0 0 14px; text-align: left; }
.pc-pricebox span { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #15a349; }
.pc-pricebox b { font-size: 26px; font-weight: 900; letter-spacing: -.02em; color: #15a349; }
.pc-pricebox small { font-size: 13px; font-weight: 700; }
.pc-cta { width: 100%; border: none; cursor: pointer; border-radius: 14px; padding: 15px; font-family: inherit; font-weight: 800; font-size: 16px; color: #fff; background: #15a349; box-shadow: 0 10px 24px rgba(21,163,73,.3); }
