:root {
  --pj-navy: #0e345c;
  --pj-navy-deep: #071f38;
  --pj-yellow: #fccd0a;
  --pj-ink: #12263b;
  --pj-muted: #617286;
  --pj-line: #dfe6ed;
  --pj-soft: #f4f7fa;
  --pj-white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.pj-blog-page { margin: 0; font-family: "Poppins", sans-serif; color: var(--pj-ink); background: #fff; }
a { color: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.blog-shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.blog-header { position: sticky; top: 0; z-index: 20; background: rgba(14,52,92,.97); border-bottom: 3px solid var(--pj-yellow); backdrop-filter: blur(16px); }
.blog-header__inner { width: min(1180px, calc(100% - 48px)); height: 76px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.blog-brand img { display: block; width: 126px; height: auto; }
.blog-nav { display: flex; align-items: center; gap: 10px; }
.blog-nav a { color: rgba(255,255,255,.78); text-decoration: none; font-size: 13px; font-weight: 700; padding: 10px 14px; border-radius: 999px; transition: .2s ease; }
.blog-nav a:hover, .blog-nav a.is-active { color: #fff; background: rgba(255,255,255,.09); }
.blog-nav a.is-active { box-shadow: inset 0 0 0 1px rgba(252,205,10,.42); }

.blog-hero { position: relative; overflow: hidden; padding: 94px 0 88px; color: #fff; background: radial-gradient(circle at 83% 20%, rgba(252,205,10,.14), transparent 26%), linear-gradient(145deg, #071f38 0%, #0e345c 62%, #123f70 100%); }
.blog-hero::after { content: ""; position: absolute; width: 420px; height: 420px; right: -170px; bottom: -220px; border: 1px solid rgba(252,205,10,.22); transform: rotate(45deg); }
.blog-eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--pj-yellow); font-size: 12px; font-weight: 800; letter-spacing: .16em; }
.blog-eyebrow::before { content: ""; width: 28px; height: 3px; background: currentColor; border-radius: 999px; }
.blog-eyebrow--dark { color: #9b7a00; }
.blog-hero h1 { max-width: 820px; margin: 18px 0 18px; font-size: clamp(40px, 6vw, 74px); line-height: .98; letter-spacing: -.045em; font-weight: 900; text-transform: uppercase; }
.blog-hero h1 span { color: var(--pj-yellow); }
.blog-hero p { max-width: 700px; margin: 0; color: rgba(255,255,255,.76); font-size: 17px; line-height: 1.75; }
.blog-local-note { width: fit-content; margin-top: 26px; padding: 9px 12px; border-radius: 8px; color: #ffe987; background: rgba(252,205,10,.08); border: 1px solid rgba(252,205,10,.25); font-size: 11px; font-weight: 700; }

.blog-content-section { padding: 58px 0 88px; background: linear-gradient(180deg, #fff 0%, #f8fafc 100%); }
.blog-toolbar { display: flex; align-items: center; gap: 18px; justify-content: space-between; margin-bottom: 38px; }
.blog-search { width: min(360px, 100%); display: flex; align-items: center; gap: 10px; padding: 0 15px; border: 1px solid var(--pj-line); border-radius: 12px; background: #fff; box-shadow: 0 10px 28px rgba(8,34,58,.05); }
.blog-search svg { width: 18px; height: 18px; fill: none; stroke: var(--pj-muted); stroke-width: 2; }
.blog-search input { width: 100%; min-width: 0; height: 48px; border: 0; outline: 0; font: inherit; font-size: 13px; color: var(--pj-ink); background: transparent; }
.blog-categories { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.blog-chip { border: 1px solid var(--pj-line); background: #fff; color: #536477; padding: 9px 13px; border-radius: 999px; cursor: pointer; font: inherit; font-size: 11px; font-weight: 700; transition: .2s; }
.blog-chip:hover, .blog-chip.is-active { color: var(--pj-navy); border-color: #d5b10d; background: #fff8d5; }

.blog-featured { margin-bottom: 58px; }
.blog-featured-card { min-height: 360px; display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden; border-radius: 26px; background: var(--pj-navy); box-shadow: 0 28px 70px rgba(6,32,57,.17); }
.blog-featured-visual { min-height: 360px; position: relative; background: linear-gradient(135deg, #123f70, #071f38); overflow: hidden; }
.blog-featured-visual img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured-placeholder { position: absolute; inset: 0; display: grid; place-items: center; background: radial-gradient(circle at 30% 30%, rgba(252,205,10,.24), transparent 24%), linear-gradient(145deg,#164b82,#071f38); }
.blog-featured-placeholder::before, .blog-card-placeholder::before { content: "POSTA JÁ"; font-weight: 900; letter-spacing: -.05em; color: rgba(255,255,255,.09); font-size: clamp(42px, 7vw, 90px); transform: rotate(-7deg); }
.blog-featured-copy { padding: 48px; display: flex; flex-direction: column; justify-content: center; color: #fff; }
.blog-category-row { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 16px; }
.blog-category-tag { display: inline-flex; padding: 6px 9px; border-radius: 999px; background: rgba(252,205,10,.14); border: 1px solid rgba(252,205,10,.24); color: var(--pj-yellow); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.blog-featured-copy h2 { margin: 0 0 14px; font-size: clamp(28px, 3.5vw, 45px); line-height: 1.06; letter-spacing: -.035em; }
.blog-featured-copy p { margin: 0; color: rgba(255,255,255,.7); line-height: 1.7; }
.blog-card-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 20px; font-size: 11px; font-weight: 600; color: #8190a0; }
.blog-featured-copy .blog-card-meta { color: rgba(255,255,255,.55); }
.blog-read-link { display: inline-flex; align-items: center; width: fit-content; gap: 8px; margin-top: 24px; color: var(--pj-yellow); text-decoration: none; font-size: 12px; font-weight: 800; }

.blog-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.blog-section-heading h2 { margin: 7px 0 0; color: var(--pj-navy); font-size: clamp(27px, 4vw, 38px); line-height: 1.1; letter-spacing: -.035em; }
.blog-result-count { color: #788899; font-size: 12px; font-weight: 600; }
.blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.blog-card { display: flex; flex-direction: column; overflow: hidden; min-height: 100%; border: 1px solid #e2e8ee; border-radius: 18px; background: #fff; box-shadow: 0 15px 38px rgba(10,37,62,.06); transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 22px 48px rgba(10,37,62,.11); }
.blog-card-visual { height: 190px; position: relative; overflow: hidden; background: linear-gradient(145deg,#164b82,#071f38); }
.blog-card-visual img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-placeholder { position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; }
.blog-card-placeholder::before { font-size: 45px; }
.blog-card-body { display: flex; flex: 1; flex-direction: column; padding: 22px; }
.blog-card h3 { margin: 0; color: var(--pj-navy); font-size: 19px; line-height: 1.25; letter-spacing: -.02em; }
.blog-card p { color: var(--pj-muted); margin: 11px 0 0; font-size: 13px; line-height: 1.65; }
.blog-card .blog-read-link { margin-top: auto; padding-top: 20px; color: var(--pj-navy); }
.blog-empty { padding: 50px 20px; text-align: center; border: 1px dashed #ccd6df; border-radius: 18px; color: var(--pj-muted); background: #fff; }
.blog-empty strong { color: var(--pj-navy); }
.blog-empty p { margin: 7px 0 0; }

.blog-footer { padding: 34px 0; color: #fff; background: #071f38; border-top: 3px solid var(--pj-yellow); }
.blog-footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.blog-footer strong { font-size: 18px; color: var(--pj-yellow); }
.blog-footer p { margin: 4px 0 0; color: rgba(255,255,255,.55); font-size: 12px; }
.blog-footer a { color: #fff; text-decoration: none; font-size: 12px; font-weight: 700; }
.blog-footer__links { display: flex; align-items: center; gap: 10px; }
.blog-footer__access { padding: 8px 12px; border: 1px solid rgba(255,255,255,.2); border-radius: 8px; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.blog-footer__access:hover, .blog-footer__access:focus-visible { background: var(--pj-yellow); border-color: var(--pj-yellow); color: var(--pj-navy); outline: none; }

.article-main { min-height: 72vh; padding: 58px 0 88px; background: #f4f7fa; }
.article-shell { width: min(900px, calc(100% - 48px)); margin: 0 auto; }
.article-back { display: inline-flex; margin-bottom: 20px; color: var(--pj-navy); text-decoration: none; font-size: 12px; font-weight: 800; }
.article-card { overflow: hidden; border: 1px solid #e0e7ee; border-radius: 24px; background: #fff; box-shadow: 0 26px 70px rgba(8,34,58,.1); }
.article-cover { width: 100%; max-height: 470px; object-fit: cover; display: block; }
.article-cover-placeholder { height: 330px; display: grid; place-items: center; background: radial-gradient(circle at 30% 30%, rgba(252,205,10,.22), transparent 25%), linear-gradient(145deg,#164b82,#071f38); color: rgba(255,255,255,.1); font-weight: 900; font-size: clamp(48px, 11vw, 110px); letter-spacing: -.06em; }
.article-head { padding: 48px 58px 28px; }
.article-head h1 { margin: 10px 0 14px; color: var(--pj-navy); font-size: clamp(35px, 5vw, 58px); line-height: 1.05; letter-spacing: -.045em; }
.article-excerpt { color: var(--pj-muted); font-size: 17px; line-height: 1.7; }
.article-body { padding: 12px 58px 56px; color: #33485d; font-size: 16px; line-height: 1.82; }
.article-body h2, .article-body h3 { color: var(--pj-navy); line-height: 1.2; letter-spacing: -.025em; margin: 2em 0 .6em; }
.article-body h2 { font-size: 28px; }
.article-body h3 { font-size: 22px; }
.article-body a { color: #0d5ba0; }
.article-body img { max-width: 100%; border-radius: 14px; }
.article-loading, .article-error { padding: 70px 30px; text-align: center; color: var(--pj-muted); }

@media (max-width: 860px) {
  .blog-header__inner { height: 68px; }
  .blog-nav a:first-child { display: none; }
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-visual { min-height: 250px; }
  .blog-featured-copy { padding: 34px; }
  .blog-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 620px) {
  .blog-shell, .blog-header__inner, .article-shell { width: min(100% - 28px, 1180px); }
  .blog-brand img { width: 106px; }
  .blog-nav { gap: 2px; }
  .blog-nav a { padding: 8px 9px; font-size: 11px; }
  .blog-hero { padding: 68px 0 62px; }
  .blog-hero h1 { font-size: 43px; }
  .blog-hero p { font-size: 14px; }
  .blog-content-section { padding: 36px 0 64px; }
  .blog-toolbar { align-items: stretch; flex-direction: column; margin-bottom: 28px; }
  .blog-search { width: 100%; }
  .blog-categories { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 5px; }
  .blog-chip { white-space: nowrap; }
  .blog-featured { margin-bottom: 42px; }
  .blog-featured-card { border-radius: 18px; }
  .blog-featured-visual { min-height: 210px; }
  .blog-featured-copy { padding: 26px; }
  .blog-section-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-visual { height: 210px; }
  .blog-footer__inner { align-items: flex-start; flex-direction: column; }
  .blog-footer__links { flex-wrap: wrap; }
  .article-main { padding: 28px 0 60px; }
  .article-card { border-radius: 17px; }
  .article-cover-placeholder { height: 220px; }
  .article-head { padding: 28px 24px 20px; }
  .article-head h1 { font-size: 35px; }
  .article-excerpt { font-size: 15px; }
  .article-body { padding: 5px 24px 38px; font-size: 15px; }
}

/* R134 - elementos funcionais trazidos do CMS: referencias, autor e preview. */
.article-references { margin: 0 58px 34px; padding: 30px 0 0; border-top: 1px solid #e0e7ee; }
.article-references h2 { margin: 0 0 14px; color: var(--pj-navy); font-size: 22px; }
.article-references ol { margin: 0; padding-left: 22px; color: #53677a; }
.article-references li + li { margin-top: 8px; }
.article-references a { color: #0d5ba0; overflow-wrap: anywhere; }
.article-author { margin: 0 58px 52px; padding: 24px; display: flex; align-items: flex-start; gap: 18px; border: 1px solid #e0e7ee; border-radius: 18px; background: #f8fafc; }
.article-author img { width: 68px; height: 68px; flex: 0 0 68px; border-radius: 50%; object-fit: cover; }
.article-author span { display: block; margin-bottom: 4px; color: #74879a; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.article-author strong { display: block; color: var(--pj-navy); font-size: 17px; }
.article-author p { margin: 6px 0 0; color: #53677a; line-height: 1.65; }
.blog-preview-bar { position: sticky; top: 0; z-index: 50; min-height: 58px; padding: 10px max(24px, calc((100vw - 1180px) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 24px; background: #071f38; color: #fff; box-shadow: 0 8px 24px rgba(7,31,56,.18); }
.blog-preview-bar div { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.blog-preview-bar strong { color: #fccd0a; font-size: 12px; letter-spacing: .08em; }
.blog-preview-bar span { font-size: 12px; color: #cbd6e1; }
.blog-preview-bar a { padding: 8px 13px; border-radius: 9px; background: #fccd0a; color: #071f38; text-decoration: none; font-size: 11px; font-weight: 800; white-space: nowrap; }

@media (max-width: 720px) {
  .article-references { margin: 0 24px 28px; }
  .article-author { margin: 0 24px 34px; padding: 18px; }
  .article-author img { width: 54px; height: 54px; flex-basis: 54px; }
  .blog-preview-bar { position: static; padding: 10px 14px; align-items: flex-start; }
  .blog-preview-bar div { gap: 2px; flex-direction: column; }
}

/* =========================================================
 * R137 — Blog público alinhado à identidade visual Posta Já
 * Escopo exclusivo da listagem /blog.
 * ======================================================= */
.page-blog {
  --pj-blog-navy: #2c4364;
  --pj-blog-navy-deep: #0d1825;
  --pj-blog-yellow: #fccd04;
  --pj-blog-yellow-bright: #fff112;
  --pj-blog-text: #263b55;
  --pj-blog-muted: #66778b;
  --pj-blog-border: #e5ebf2;
  --pj-blog-soft: #f5f7fa;
  color: var(--pj-blog-text);
  background: #fff;
}

.page-blog header {
  border-bottom: 3px solid var(--pj-blog-yellow);
}

.page-blog .blog-nav-current {
  background: #fff9d8;
}

.page-blog .blog-nav-current .nav-dropdown-icon {
  background: var(--pj-blog-yellow);
}

.page-blog .blog-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.page-blog .blog-home-hero {
  position: relative;
  overflow: hidden;
  padding: 68px 0 78px;
  background: #ffffff;
  color: var(--pj-blog-text);
}

.page-blog .blog-home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #edf2f7;
}

.page-blog .blog-home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
}

.page-blog .blog-home-hero__copy {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.page-blog .blog-home-hero__headline {
  width: min(100%, 640px);
  margin: 0 auto;
  display: grid;
  gap: 10px;
  justify-items: center;
  color: var(--pj-blog-navy);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -.028em;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.page-blog .blog-home-hero__headline > span {
  display: block;
}

.page-blog .blog-home-hero__headline-highlight {
  display: inline-block;
  padding: .11em .34em .14em;
  border-radius: 17px;
  color: #223954;
  background: var(--pj-blog-yellow);
  box-shadow: 0 12px 30px rgba(252,205,4,.16);
  white-space: nowrap;
  font-size: clamp(1.7rem, 3.1vw, 2.75rem);
}

.page-blog .blog-home-hero__eyebrow {
  margin-top: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.page-blog .blog-home-hero__rule {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 460px;
  margin: 22px auto 4px;
}

.page-blog .blog-home-hero__rule-line {
  flex: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(44,67,100,.15) 0%, rgba(44,67,100,.05) 100%);
}

.page-blog .blog-home-hero__rule-line--rev {
  background: linear-gradient(90deg, rgba(44,67,100,.05) 0%, rgba(44,67,100,.15) 100%);
}

.page-blog .blog-home-hero__rule-mark {
  flex-shrink: 0;
  display: block;
}

.page-blog .blog-home-hero__caption {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog .blog-home-hero__brand-title {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.page-blog .blog-home-hero__brand-line {
  display: inline-block;
  color: var(--pj-blog-navy);
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
}

.page-blog .blog-home-hero__brand-line--highlight {
  padding: .06em .34em .1em;
  border-radius: 12px;
  color: #223954;
  background: var(--pj-blog-yellow);
  box-shadow: 0 12px 28px rgba(252,205,4,.18);
}

.page-blog .blog-home-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 20rem);
  min-height: 3.4rem;
  margin-top: 20px;
  padding: 1rem 2rem;
  border: 2px solid rgba(255, 205, 0, 0.62);
  border-radius: 1rem;
  background: linear-gradient(180deg, #314d73 0%, var(--pj-blog-navy) 55%, #263d5c 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(35, 57, 86, 0.2);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.page-blog .blog-home-hero__cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #35547e 0%, #294464 58%, #203754 100%);
  border-color: rgba(255, 205, 0, 0.82);
  box-shadow: 0 18px 34px rgba(35, 57, 86, 0.24);
}

.page-blog .blog-home-hero__cta:active {
  transform: translateY(0);
  box-shadow: 0 10px 20px rgba(35, 57, 86, 0.2);
}

.page-blog .blog-home-hero__cta:focus-visible {
  outline: 3px solid rgba(255, 205, 0, 0.72);
  outline-offset: 4px;
}


.page-blog .blog-home-hero__cta--mobile {
  display: none;
}

.page-blog .blog-home-hero__rule--aside {
  max-width: 340px;
  margin: 26px auto 12px;
}

.page-blog .blog-home-hero__eyebrow--aside {
  justify-content: center;
  margin-bottom: 14px;
}

.page-blog .blog-home-hero__caption-text {
  margin: 0;
  max-width: 370px;
  text-align: center;
  color: var(--pj-blog-muted);
  font-size: 14px;
  line-height: 1.62;
}

.page-blog .blog-home-hero__caption-text strong {
  display: block;
  margin-bottom: 3px;
  color: var(--pj-blog-navy);
  font-size: 14.5px;
  font-weight: 800;
}

.page-blog .blog-home-hero__eyebrow-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 8px;
  color: #203752;
  background: var(--pj-blog-yellow);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.page-blog .blog-home-hero__eyebrow-text {
  color: var(--pj-blog-navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* R141 — refinamento da composição tipográfica da coluna esquerda */
.page-blog .blog-home-hero__statement {
  width: min(100%, 560px);
  margin-top: 22px;
  display: grid;
  gap: 8px;
  justify-items: start;
  align-self: center;
  text-align: left;
}

.page-blog .blog-home-hero__statement-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.page-blog .blog-home-hero__statement-plain,
.page-blog .blog-home-hero__statement-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pj-blog-navy);
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.page-blog .blog-home-hero__statement-chip {
  padding: .08em .34em .12em;
  border-radius: 11px;
}

.page-blog .blog-home-hero__statement-chip--yellow {
  color: #223954;
  background: var(--pj-blog-yellow-bright);
  box-shadow: 0 10px 24px rgba(252,205,4,.14);
}

.page-blog .blog-home-hero__statement-chip--hero-yellow {
  background: var(--pj-blog-yellow);
}

.page-blog .blog-home-hero__statement-chip--navy {
  color: #fff;
  background: var(--pj-blog-navy);
  box-shadow: 0 10px 24px rgba(44,67,100,.13);
}

.page-blog .blog-home-hero__statement-chip--logistica {
  padding-inline: .42em;
}


.page-blog .blog-home-hero__support {
  width: min(100%, 520px);
  margin-top: 26px;
  display: grid;
  gap: 10px;
  align-self: center;
  text-align: center;
}

.page-blog .blog-home-hero__support-title {
  display: block;
  margin: 0;
  color: var(--pj-blog-navy);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: .01em;
  text-transform: uppercase;
}

.page-blog .blog-home-hero__support-text {
  margin: 0;
  color: var(--pj-blog-muted);
  font-size: clamp(.98rem, 1.2vw, 1.06rem);
  line-height: 1.68;
}

.page-blog .blog-home-hero__support-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 2px;
}

.page-blog .blog-home-hero__support-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(44, 67, 100, 0.14);
  background: rgba(255, 255, 255, 0.64);
  color: var(--pj-blog-navy);
  box-shadow: 0 8px 20px rgba(35, 57, 86, 0.06);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-blog .blog-home-hero__aside {
  position: relative;
}

.page-blog .blog-home-hero__aside--monitor {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.page-blog .blog-monitor {
  position: relative;
  width: min(100%, 470px);
  margin: 0 auto;
  padding-bottom: 0;
}

.page-blog .blog-monitor__frame {
  position: relative;
  overflow: hidden;
  border: 8px solid #233a57;
  border-bottom-width: 10px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
  box-shadow: 0 30px 70px rgba(23,47,73,.18);
}

.page-blog .blog-monitor__topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid #dfe6ee;
  background: #f3f6fa;
}

.page-blog .blog-monitor__topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c8d4e0;
}

.page-blog .blog-monitor__topbar span:first-child { background: #f28d84; }
.page-blog .blog-monitor__topbar span:nth-child(2) { background: #f5ca5b; }
.page-blog .blog-monitor__topbar span:nth-child(3) { background: #7ed7a1; }

.page-blog .blog-monitor__screen {
  padding: 15px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,250,253,.98) 100%);
}

.page-blog .blog-monitor__hero-card {
  display: block;
  margin-bottom: 14px;
  padding: 20px 16px 22px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 15px;
  background: linear-gradient(160deg, #2c4364 0%, #1c3452 60%, #16293f 100%);
  text-align: center;
}

.page-blog .blog-monitor__hero-copy {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.page-blog .blog-monitor__hero-copy strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.page-blog .blog-monitor__hero-brand {
  display: block;
  width: 100%;
  max-width: 190px;
  height: auto;
  object-fit: contain;
}

.page-blog .blog-monitor__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.page-blog .blog-monitor__topics span,
.page-blog .blog-monitor__widget-chips span,
.page-blog .blog-monitor__post-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  border-radius: 999px;
  color: #765f00;
  background: #fff6ca;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-blog .blog-monitor__hero-graphic {
  display: grid;
  place-items: center;
  min-height: 104px;
}

.page-blog .blog-monitor__hero-logo-card {
  display: grid;
  place-items: center;
  width: min(100%, 88px);
  aspect-ratio: 9 / 16;
  padding: 14px 10px;
  border: 1px solid #dfe6ee;
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.page-blog .blog-monitor__hero-logo {
  display: block;
  width: 100%;
  max-width: 58px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.page-blog .blog-monitor__content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.page-blog .blog-monitor__ph-card {
  display: grid;
  gap: 10px;
  padding: 11px;
  border: 1px solid #e0e7ef;
  border-radius: 14px;
  background: #fff;
}

.page-blog .blog-monitor__ph-media {
  position: relative;
  overflow: hidden;
  min-height: 74px;
  border-radius: 10px;
  background: linear-gradient(145deg, #395677, #223954);
}

.page-blog .blog-monitor__ph-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(252,205,4,.20), transparent 40%);
}

.page-blog .blog-monitor__ph-media::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 34px;
  height: 34px;
  background: center / contain no-repeat url("/assets/images/symbol-yellow-circle.svg");
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 8px 18px rgba(15,29,48,.24));
}

.page-blog .blog-monitor__ph-lines {
  display: grid;
  gap: 7px;
}

.page-blog .blog-monitor__ph-lines span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #dde6ef;
}

.page-blog .blog-monitor__ph-lines span:nth-child(2) { width: 82%; }
.page-blog .blog-monitor__ph-lines span:nth-child(3) { width: 60%; }

.page-blog .blog-monitor__posts,
.page-blog .blog-monitor__sidebar {
  display: grid;
  gap: 12px;
}

.page-blog .blog-monitor__post {
  border: 1px solid #e0e7ef;
  border-radius: 16px;
  background: #fff;
}

.page-blog .blog-monitor__post--featured {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  padding: 12px;
}

.page-blog .blog-monitor__post-image,
.page-blog .blog-monitor__post-thumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #395677, #223954);
}

.page-blog .blog-monitor__post-image {
  border-radius: 12px;
}

.page-blog .blog-monitor__post-image::before,
.page-blog .blog-monitor__post-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(252,205,4,.22), transparent 36%);
}

.page-blog .blog-monitor__post-image::after,
.page-blog .blog-monitor__post-thumb::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 40px;
  height: 40px;
  background: center / contain no-repeat url("/assets/images/symbol-yellow-circle.svg");
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 8px 18px rgba(15,29,48,.24));
}

.page-blog .blog-monitor__post-copy {
  display: grid;
  gap: 9px;
  align-content: start;
}

.page-blog .blog-monitor__post-copy strong {
  color: var(--pj-blog-navy);
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: -.02em;
}

.page-blog .blog-monitor__post-copy p {
  margin: 0;
  color: #6b7c90;
  font-size: 10px;
  line-height: 1.55;
}

.page-blog .blog-monitor__post-list {
  display: grid;
  gap: 10px;
}

.page-blog .blog-monitor__post--mini {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 10px;
}

.page-blog .blog-monitor__post-thumb {
  min-height: 46px;
  border-radius: 8px;
  background: linear-gradient(145deg, #5d7593, #314963);
}

.page-blog .blog-monitor__post-thumb::after {
  width: 28px;
  height: 28px;
}

.page-blog .blog-monitor__post-lines {
  display: grid;
  gap: 8px;
}

.page-blog .blog-monitor__post-lines span,
.page-blog .blog-monitor__widget-list span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: #dde6ef;
}

.page-blog .blog-monitor__post-lines span:last-child { width: 76%; }

.page-blog .blog-monitor__widget {
  padding: 12px;
  border: 1px solid #e0e7ef;
  border-radius: 16px;
  background: #fff;
}

.page-blog .blog-monitor__widget-title {
  display: block;
  margin-bottom: 10px;
  color: var(--pj-blog-navy);
  font-size: 10px;
  font-weight: 700;
}

.page-blog .blog-monitor__widget-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.page-blog .blog-monitor__widget-list {
  display: grid;
  gap: 8px;
}

.page-blog .blog-monitor__widget-list span:nth-child(2) { width: 78%; }
.page-blog .blog-monitor__widget-list span:nth-child(3) { width: 62%; }

.page-blog .blog-monitor__base {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 140px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d7e1ea 0%, #b8c5d4 100%);
  transform: translateX(-50%);
  box-shadow: 0 8px 18px rgba(23,47,73,.14);
}

.page-blog .blog-local-note {
  margin-top: 22px;
  border-color: rgba(252,205,4,.18);
  color: #8a6f00;
  background: #fff8d4;
}

.page-blog .blog-content-section {
  padding: 68px 0 96px;
  background:
    linear-gradient(180deg, #f6f8fb 0, #fff 250px, #fff 75%, #f8fafc 100%);
}

/* R149 — título de conteúdos recentes + filtros em painel lateral */
.page-blog .blog-recent-head {
  display: grid;
  justify-items: center;
  gap: 26px;
  margin-bottom: 66px;
  text-align: center;
}

.page-blog .blog-recent-title {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .18em;
  color: var(--pj-blog-navy);
  font-size: clamp(2.35rem, 4.15vw, 3.8rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.page-blog .blog-recent-title__highlight {
  display: inline-block;
  padding: .05em .18em .09em;
  border-radius: .18em;
  color: #223954;
  background: var(--pj-blog-yellow);
  box-shadow: 0 14px 34px rgba(252,205,4,.15);
}

.page-blog .blog-filter-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 10px 14px 10px 18px;
  border: 1px solid #dce4ec;
  border-radius: 999px;
  background: #fff;
  color: var(--pj-blog-navy);
  box-shadow: 0 10px 28px rgba(35,57,86,.06);
  font: inherit;
  font-size: .95rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.page-blog .blog-filter-trigger:hover {
  transform: translateY(-1px);
  border-color: rgba(44,67,100,.28);
  box-shadow: 0 14px 32px rgba(35,57,86,.09);
}

.page-blog .blog-filter-trigger:focus-visible {
  outline: 3px solid rgba(252,205,4,.5);
  outline-offset: 3px;
}

.page-blog .blog-filter-trigger > svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.page-blog .blog-filter-trigger__count {
  display: inline-grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 999px;
  background: #fff3ad;
  color: var(--pj-blog-navy);
  font-size: .78rem;
  font-weight: 900;
}

body.blog-filter-is-open {
  overflow: hidden;
}

.blog-filter-layer {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(520px, 100vw);
}

.blog-filter-layer[hidden] {
  display: none;
}

.blog-filter-backdrop {
  grid-column: 1 / -1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(12, 26, 43, .58);
  backdrop-filter: blur(3px);
  opacity: 0;
  cursor: default;
  transition: opacity .24s ease;
}

.blog-filter-drawer {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: 100%;
  height: 100dvh;
  background: #fff;
  box-shadow: -24px 0 60px rgba(11,29,49,.18);
  transform: translateX(100%);
  transition: transform .24s ease;
}

.blog-filter-layer.is-open .blog-filter-backdrop {
  opacity: 1;
}

.blog-filter-layer.is-open .blog-filter-drawer {
  transform: translateX(0);
}

.blog-filter-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 34px 24px;
  border-bottom: 1px solid #e8edf2;
  background: #fff;
}

.blog-filter-drawer__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: #9a7c00;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.blog-filter-drawer__header h2 {
  margin: 0;
  color: #142a45;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.035em;
}

.blog-filter-close {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid #dfe6ed;
  border-radius: 999px;
  background: #fff;
  color: var(--pj-blog-navy);
  cursor: pointer;
}

.blog-filter-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.blog-filter-drawer__body {
  min-height: 0;
  overflow-y: auto;
  padding: 28px 34px 34px;
}

.blog-filter-field,
.blog-filter-fieldset {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
}

.blog-filter-field > span:first-child,
.blog-filter-fieldset legend {
  color: #243a56;
  font-size: .88rem;
  font-weight: 800;
}

.blog-filter-fieldset {
  padding: 0;
  border: 0;
}

.blog-filter-fieldset legend {
  margin-bottom: 10px;
}

.blog-filter-searchbox {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 15px;
  border: 1px solid #dfe6ed;
  border-radius: 12px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.blog-filter-searchbox:focus-within {
  border-color: rgba(44,67,100,.42);
  box-shadow: 0 0 0 3px rgba(44,67,100,.08);
}

.blog-filter-searchbox svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: #738499;
  stroke-width: 2;
}

.blog-filter-searchbox input {
  width: 100%;
  min-width: 0;
  height: 50px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #243a56;
  font: inherit;
  font-size: .93rem;
}

.blog-filter-searchbox input::placeholder {
  color: #8d9bab;
}

.blog-filter-select,
.blog-filter-date-field input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #dfe6ed;
  border-radius: 12px;
  background: #fff;
  color: #243a56;
  font: inherit;
  font-size: .93rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.blog-filter-select {
  padding: 0 42px 0 15px;
  cursor: pointer;
}

.blog-filter-select:focus,
.blog-filter-date-field input:focus {
  outline: 0;
  border-color: rgba(44,67,100,.42);
  box-shadow: 0 0 0 3px rgba(44,67,100,.08);
}

.blog-filter-date-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.blog-filter-date-field {
  display: grid;
  gap: 8px;
}

.blog-filter-date-field > span {
  color: #728398;
  font-size: .78rem;
  font-weight: 700;
}

.blog-filter-date-field input {
  padding: 0 14px;
  cursor: pointer;
}

.blog-filter-categories {
  display: grid;
  gap: 9px;
}

.blog-filter-category {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid #dfe6ed;
  border-radius: 12px;
  background: #fff;
  color: #4d6076;
  text-align: left;
  font: inherit;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.blog-filter-category:hover {
  border-color: rgba(44,67,100,.28);
  background: #f9fbfd;
}

.blog-filter-category.is-active {
  border-color: rgba(252,205,4,.85);
  background: #fff9d7;
  color: var(--pj-blog-navy);
}

.blog-filter-category__radio {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  border: 1.5px solid #8a98a8;
  border-radius: 999px;
  box-shadow: inset 0 0 0 3px #fff;
  background: #fff;
}

.blog-filter-category.is-active .blog-filter-category__radio {
  border-color: var(--pj-blog-navy);
  background: var(--pj-blog-yellow);
}

.blog-filter-drawer__actions {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 12px;
  padding: 18px 34px 24px;
  border-top: 1px solid #e8edf2;
  background: rgba(255,255,255,.96);
}

.blog-filter-action {
  min-height: 52px;
  padding: 12px 16px;
  border-radius: 12px;
  font: inherit;
  font-size: .9rem;
  font-weight: 900;
  cursor: pointer;
}

.blog-filter-action--ghost {
  border: 1px solid #dce4ec;
  background: #fff;
  color: var(--pj-blog-navy);
}

.blog-filter-action--primary {
  border: 1px solid var(--pj-blog-navy);
  background: var(--pj-blog-navy);
  color: #fff;
}

.page-blog .blog-discovery {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: auto minmax(260px, 350px) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 92px;
  margin: 0 0 60px;
  padding: 18px 20px 18px 24px;
  transform: translateY(-32px);
  border: 1px solid rgba(44,67,100,.08);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(30,52,78,.12);
}

.page-blog .blog-discovery__intro {
  min-width: 175px;
  padding-right: 20px;
  border-right: 1px solid #e7edf3;
}

.page-blog .blog-discovery__intro span {
  display: block;
  margin-bottom: 3px;
  color: #9a7c00;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.page-blog .blog-discovery__intro strong {
  display: block;
  max-width: 150px;
  color: var(--pj-blog-navy);
  font-size: 13px;
  line-height: 1.35;
}

.page-blog .blog-search {
  width: 100%;
  min-width: 0;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid #dfe6ed;
  border-radius: 10px;
  box-shadow: none;
  background: #f8fafc;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.page-blog .blog-search:focus-within {
  border-color: rgba(44,67,100,.42);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(44,67,100,.08);
}

.page-blog .blog-search input {
  height: 46px;
  font-size: 12px;
}

.page-blog .blog-categories {
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
}

.page-blog .blog-chip {
  padding: 8px 12px;
  border: 1px solid #e1e7ed;
  border-radius: 8px;
  color: #617287;
  background: #fff;
  font-size: 10px;
  letter-spacing: .02em;
}

.page-blog .blog-chip:hover,
.page-blog .blog-chip.is-active {
  border-color: var(--pj-blog-yellow);
  color: var(--pj-blog-navy);
  background: #fff9d8;
}

.page-blog .blog-featured-heading,
.page-blog .blog-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.page-blog .blog-featured-heading h2,
.page-blog .blog-section-heading h2 {
  margin: 6px 0 0;
  color: var(--pj-blog-navy);
  font-size: clamp(27px, 3.5vw, 38px);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.page-blog .blog-featured {
  margin-bottom: 76px;
}

.page-blog .blog-featured-card {
  min-height: 410px;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  overflow: hidden;
  border: 1px solid #e1e7ed;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(24,47,74,.11);
}

.page-blog .blog-featured-visual {
  display: block;
  min-height: 410px;
  background: linear-gradient(145deg,#395677,#213850);
  text-decoration: none;
}

.page-blog .blog-featured-visual::after,
.page-blog .blog-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(13,24,37,.18));
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.page-blog .blog-featured-card:hover .blog-featured-visual::after,
.page-blog .blog-card:hover .blog-card-visual::after {
  opacity: 1;
}

.page-blog .blog-featured-visual img,
.page-blog .blog-card-visual img {
  transition: transform .35s ease;
}

.page-blog .blog-featured-card:hover .blog-featured-visual img,
.page-blog .blog-card:hover .blog-card-visual img {
  transform: scale(1.018);
}

.page-blog .blog-featured-copy {
  padding: clamp(34px, 4vw, 50px);
  color: var(--pj-blog-text);
  background:
    linear-gradient(145deg, #fff 0%, #fff 72%, #fbfcfd 100%);
}

.page-blog .blog-category-row {
  gap: 6px;
  margin-bottom: 15px;
}

.page-blog .blog-category-tag {
  padding: 5px 8px;
  border: 1px solid #ead567;
  border-radius: 6px;
  color: #765f00;
  background: #fff9d8;
  font-size: 9px;
  letter-spacing: .06em;
}

.page-blog .blog-featured-copy h2 {
  margin: 0 0 16px;
  color: var(--pj-blog-navy);
  font-size: clamp(30px, 3.35vw, 43px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.page-blog .blog-featured-copy h2 a,
.page-blog .blog-card h3 a {
  color: inherit;
  text-decoration: none;
}

.page-blog .blog-featured-copy p {
  color: var(--pj-blog-muted);
  font-size: 14px;
  line-height: 1.72;
}

.page-blog .blog-card-meta {
  align-items: center;
  gap: 8px 16px;
  margin-top: 20px;
  color: #7b8999;
  font-size: 10px;
  font-weight: 600;
}

.page-blog .blog-featured-copy .blog-card-meta {
  color: #7b8999;
}

.page-blog .blog-card-meta span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 9px 2px 0;
  border-radius: 50%;
  background: var(--pj-blog-yellow);
}

.page-blog .blog-read-link {
  gap: 10px;
  margin-top: 22px;
  color: var(--pj-blog-navy);
  font-size: 10px;
  letter-spacing: .08em;
  transition: gap .2s ease, color .2s ease;
}

.page-blog .blog-read-link:hover {
  gap: 14px;
  color: #172d47;
}

.page-blog .blog-read-link--featured {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 8px;
  color: #223954;
  background: var(--pj-blog-yellow);
}

.page-blog .blog-read-link--featured:hover {
  color: #172d47;
  background: var(--pj-blog-yellow);
}

.page-blog .blog-section-heading {
  margin-bottom: 25px;
  padding-top: 4px;
  border-top: 1px solid #edf1f5;
}

.page-blog .blog-section-heading > div {
  padding-top: 26px;
}

.page-blog .blog-result-count {
  padding: 6px 9px;
  border-radius: 6px;
  color: #738397;
  background: #f4f7fa;
  font-size: 10px;
  font-weight: 700;
}

.page-blog .blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.page-blog .blog-card {
  overflow: hidden;
  border: 1px solid #e2e8ee;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(27,48,73,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.page-blog .blog-card:hover {
  transform: translateY(-5px);
  border-color: #d6dfe8;
  box-shadow: 0 18px 40px rgba(27,48,73,.12);
}

.page-blog .blog-card-visual {
  display: block;
  height: 205px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg,#395677,#213850);
  text-decoration: none;
}

.page-blog .blog-card-body {
  padding: 22px 22px 21px;
}

.page-blog .blog-card h3 {
  color: var(--pj-blog-navy);
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -.025em;
}

.page-blog .blog-card p {
  margin-top: 10px;
  color: var(--pj-blog-muted);
  font-size: 12px;
  line-height: 1.7;
}

.page-blog .blog-card .blog-read-link {
  padding-top: 19px;
}

.page-blog .blog-empty {
  border-color: #d8e0e8;
  border-radius: 14px;
  background: #f9fbfc;
}

.page-blog .blog-featured-placeholder,
.page-blog .blog-card-placeholder {
  background:
    radial-gradient(circle at 32% 28%, rgba(252,205,4,.18), transparent 24%),
    linear-gradient(145deg,#395677,#1f344b);
}

.page-blog .blog-featured-placeholder::before,
.page-blog .blog-card-placeholder::before {
  color: rgba(255,255,255,.08);
}

@media (max-width: 980px) {
  .page-blog .blog-home-hero__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .page-blog .blog-home-hero__copy {
    max-width: none;
    align-items: center;
    text-align: center;
  }

  .page-blog .blog-home-hero__headline {
    justify-items: center;
  }

  .page-blog .blog-home-hero__eyebrow {
    justify-content: center;
  }

  .page-blog .blog-home-hero__rule {
    margin-inline: auto;
  }

  .page-blog .blog-home-hero__statement {
    align-self: center;
    margin-inline: auto;
  }

  .page-blog .blog-home-hero__support {
    align-self: center;
    margin-inline: auto;
    text-align: center;
  }

  .page-blog .blog-monitor {
    width: min(100%, 620px);
  }

  .page-blog .blog-recent-head {
    margin-bottom: 54px;
  }

  .page-blog .blog-recent-title {
    font-size: clamp(2.3rem, 6.2vw, 3.45rem);
  }

  .page-blog .blog-discovery {
    grid-template-columns: minmax(210px, .75fr) minmax(280px, 1.25fr);
  }

  .page-blog .blog-discovery__intro {
    grid-row: span 2;
  }

  .page-blog .blog-categories {
    grid-column: 2;
  }

  .page-blog .blog-featured-card {
    grid-template-columns: 1fr;
  }

  .page-blog .blog-featured-visual {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .page-blog .blog-shell {
    width: min(100% - 32px, 1180px);
  }

  .page-blog .blog-home-hero {
    padding: 58px 0 72px;
  }

  .page-blog .blog-home-hero__headline {
    width: min(100%, 100%);
    gap: 8px;
    font-size: clamp(1.74rem, 7.2vw, 2.35rem);
  }

  .page-blog .blog-home-hero__headline-highlight {
    border-radius: 14px;
    padding-inline: .3em;
    font-size: clamp(1.16rem, 4.8vw, 1.8rem);
  }

  .page-blog .blog-home-hero__eyebrow {
    margin-top: 20px;
    gap: 10px;
  }

  .page-blog .blog-home-hero__eyebrow-pill,
  .page-blog .blog-home-hero__eyebrow-text {
    font-size: 12px;
  }

  .page-blog .blog-home-hero__statement {
    width: min(100%, 470px);
    margin-top: 20px;
    gap: 7px;
  }

  .page-blog .blog-home-hero__statement-row {
    gap: 8px;
  }

  .page-blog .blog-home-hero__statement-plain,
  .page-blog .blog-home-hero__statement-chip {
    font-size: clamp(1.28rem, 6vw, 1.88rem);
  }

  .page-blog .blog-home-hero__support {
    width: min(100%, 470px);
    margin-top: 24px;
    gap: 10px;
  }

  .page-blog .blog-home-hero__cta--mobile {
    display: inline-flex;
    width: min(100%, 22rem);
    margin: 0 auto 6px;
  }

  .page-blog .blog-home-hero__support-title {
    display: none;
  }

  .page-blog .blog-home-hero__caption > .blog-home-hero__cta {
    display: none;
  }

  .page-blog .blog-home-hero__support-text {
    font-size: .96rem;
    line-height: 1.62;
  }

  .page-blog .blog-home-hero__support-pills {
    gap: 8px;
  }

  .page-blog .blog-home-hero__support-pill {
    min-height: 32px;
    padding: 7px 12px;
    font-size: .74rem;
  }

  .page-blog .blog-home-hero__caption-text {
    max-width: 380px;
    font-size: 14.5px;
    line-height: 1.62;
  }

  .page-blog .blog-home-hero__caption-text strong {
    font-size: 15px;
  }

  .page-blog .blog-monitor__frame {
    border-width: 8px;
    border-bottom-width: 10px;
    border-radius: 22px;
  }

  .page-blog .blog-monitor__screen {
    padding: 14px;
  }

  .page-blog .blog-monitor__hero-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }

  .page-blog .blog-monitor__hero-copy strong {
    font-size: 18px;
  }

  .page-blog .blog-monitor__content-grid {
    grid-template-columns: 1fr;
  }

  .page-blog .blog-monitor__post--featured {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .page-blog .blog-content-section {
    padding: 48px 0 70px;
  }

  .page-blog .blog-recent-head {
    gap: 20px;
    margin-bottom: 42px;
  }

  .page-blog .blog-recent-title {
    gap: .16em;
    font-size: clamp(1.95rem, 8.6vw, 2.75rem);
  }

  .page-blog .blog-filter-trigger {
    min-height: 50px;
    gap: 10px;
    padding: 9px 12px 9px 16px;
    font-size: .88rem;
  }

  .page-blog .blog-filter-trigger > svg {
    width: 20px;
    height: 20px;
  }

  .page-blog .blog-filter-trigger__count {
    width: 27px;
    height: 27px;
    font-size: .74rem;
  }

  .page-blog .blog-discovery {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 36px;
    padding: 18px;
    transform: translateY(-24px);
    border-radius: 14px;
  }

  .page-blog .blog-discovery__intro {
    padding: 0 0 14px;
    border-right: 0;
    border-bottom: 1px solid #e7edf3;
  }

  .page-blog .blog-discovery__intro strong {
    max-width: none;
  }

  .page-blog .blog-categories {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 3px;
  }

  .page-blog .blog-chip {
    white-space: nowrap;
  }

  .page-blog .blog-featured-heading,
  .page-blog .blog-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .page-blog .blog-featured {
    margin-bottom: 54px;
  }

  .page-blog .blog-featured-card {
    min-height: 0;
    border-radius: 15px;
  }

  .page-blog .blog-featured-visual {
    min-height: 230px;
  }

  .page-blog .blog-featured-copy {
    padding: 26px 23px 25px;
  }

  .page-blog .blog-featured-copy h2 {
    font-size: 29px;
  }

  .page-blog .blog-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .page-blog .blog-card-visual {
    height: 220px;
  }

  .page-blog .blog-result-count {
    align-self: flex-start;
  }
}

@media (max-width: 420px) {
  .blog-filter-date-grid {
    grid-template-columns: 1fr;
  }

  .page-blog .blog-shell {
    width: min(100% - 26px, 1180px);
  }

  .page-blog .blog-home-hero {
    padding-top: 52px;
  }

  .page-blog .blog-home-hero__headline {
    font-size: 1.62rem;
  }

  .page-blog .blog-home-hero__headline-highlight {
    font-size: 1.06rem;
  }

  .page-blog .blog-recent-title {
    font-size: clamp(1.75rem, 8.8vw, 2.25rem);
  }

  .page-blog .blog-filter-trigger {
    width: min(100%, 250px);
  }

  .page-blog .blog-home-hero__statement {
    width: 100%;
  }

  .page-blog .blog-home-hero__statement-row {
    gap: 7px;
  }

  .page-blog .blog-home-hero__statement-plain,
  .page-blog .blog-home-hero__statement-chip {
    font-size: clamp(1.12rem, 6.5vw, 1.52rem);
  }

  .page-blog .blog-home-hero__support {
    width: 100%;
    margin-top: 22px;
    gap: 8px;
  }

  .page-blog .blog-home-hero__cta--mobile {
    min-height: 3.15rem;
    padding: .9rem 1.4rem;
  }

  .page-blog .blog-home-hero__support-title {
    font-size: .92rem;
  }

  .page-blog .blog-home-hero__support-text {
    font-size: .9rem;
    line-height: 1.58;
  }

  .page-blog .blog-home-hero__support-pills {
    gap: 7px;
  }

  .page-blog .blog-home-hero__support-pill {
    min-height: 30px;
    padding: 7px 11px;
    font-size: .7rem;
    letter-spacing: .07em;
  }

  .page-blog .blog-monitor__hero-copy strong {
    font-size: 17px;
  }

  .page-blog .blog-monitor__post--featured {
    grid-template-columns: 1fr;
  }

  .page-blog .blog-monitor__post-image {
    min-height: 110px;
  }

  .page-blog .blog-monitor__hero-logo-card {
    width: min(100%, 76px);
    padding: 12px 8px;
    border-radius: 14px;
  }

  .page-blog .blog-featured-visual {
    min-height: 205px;
  }
}


@media (max-width: 680px) {
  .blog-filter-layer {
    grid-template-columns: 1fr;
  }

  .blog-filter-drawer {
    grid-column: 1;
  }

  .blog-filter-drawer__header {
    padding: 24px 20px 20px;
  }

  .blog-filter-drawer__body {
    padding: 24px 20px 28px;
  }

  .blog-filter-drawer__actions {
    grid-template-columns: 1fr 1fr;
    padding: 14px 20px calc(18px + env(safe-area-inset-bottom));
  }

  .blog-filter-drawer__header h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 420px) {
  .blog-filter-drawer__actions {
    grid-template-columns: 1fr;
  }

  .blog-filter-action {
    min-height: 48px;
  }
}


/* R152 — grade editorial em duas colunas, sem publicação em destaque */
.page-blog .blog-recent-head {
  margin-bottom: 44px;
}

.page-blog .blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.page-blog .blog-card {
  display: grid;
  grid-template-columns: minmax(190px, .88fr) minmax(0, 1.12fr);
  min-height: 338px;
  overflow: hidden;
  border: 1px solid #e0e7ee;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(27, 48, 73, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.page-blog .blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(44, 67, 100, .2);
  box-shadow: 0 22px 50px rgba(27, 48, 73, .13);
}

.page-blog .blog-card-visual {
  display: block;
  position: relative;
  height: 100%;
  min-height: 338px;
  overflow: hidden;
  background: linear-gradient(145deg, #395677, #213850);
  text-decoration: none;
}

.page-blog .blog-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-blog .blog-card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 28px 27px 26px;
}

.page-blog .blog-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.page-blog .blog-category-tag {
  padding: 6px 10px;
  border: 1px solid rgba(252, 205, 4, .45);
  border-radius: 999px;
  color: var(--pj-blog-navy);
  background: #fff8cf;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .065em;
  text-transform: uppercase;
}

.page-blog .blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 0 0 15px;
  color: #748397;
  font-size: .72rem;
  font-weight: 600;
}

.page-blog .blog-card-author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pj-blog-navy);
  font-weight: 700;
}

.page-blog .blog-card-author__avatar {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  overflow: hidden;
  flex: 0 0 34px;
  border: 1px solid rgba(44, 67, 100, .14);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(35, 57, 86, .08);
}

.page-blog .blog-card-author__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.page-blog .blog-card-author__avatar img.is-brand-avatar {
  object-fit: contain;
}

.page-blog .blog-card-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-blog .blog-card-date::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pj-blog-yellow);
}

.page-blog .blog-card-meta span + span::before {
  display: none;
}

.page-blog .blog-card h3 {
  margin: 0;
  color: var(--pj-blog-navy);
  font-size: clamp(1.3rem, 1.65vw, 1.72rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.page-blog .blog-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 14px 0 0;
  color: var(--pj-blog-muted);
  font-size: .9rem;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.page-blog .blog-card .blog-read-link {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  margin-top: auto;
  padding: 12px 17px;
  border: 1px solid rgba(252, 205, 4, .72);
  border-radius: 12px;
  background: var(--pj-blog-navy);
  color: #fff;
  box-shadow: 0 10px 22px rgba(35, 57, 86, .12);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-decoration: none;
}

.page-blog .blog-card .blog-read-link:hover {
  gap: 12px;
  color: var(--pj-blog-navy);
  background: var(--pj-blog-yellow);
}

.page-blog .blog-card-placeholder {
  height: 100%;
  min-height: 338px;
}

@media (max-width: 980px) {
  .page-blog .blog-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .page-blog .blog-card {
    grid-template-columns: minmax(240px, .9fr) minmax(0, 1.1fr);
    min-height: 320px;
  }

  .page-blog .blog-card-visual,
  .page-blog .blog-card-placeholder {
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  .page-blog .blog-recent-head {
    margin-bottom: 34px;
  }

  .page-blog .blog-card {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 20px;
  }

  .page-blog .blog-card-visual,
  .page-blog .blog-card-placeholder {
    height: 240px;
    min-height: 240px;
  }

  .page-blog .blog-card-body {
    padding: 23px 21px 22px;
  }

  .page-blog .blog-card h3 {
    font-size: 1.42rem;
  }

  .page-blog .blog-card p {
    font-size: .94rem;
    -webkit-line-clamp: 4;
  }

  .page-blog .blog-card .blog-read-link {
    margin-top: 20px;
  }
}

@media (max-width: 420px) {
  .page-blog .blog-card-visual,
  .page-blog .blog-card-placeholder {
    height: 210px;
    min-height: 210px;
  }

  .page-blog .blog-card-body {
    padding: 21px 18px 20px;
  }

  .page-blog .blog-card-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .page-blog .blog-card-date {
    padding-left: 36px;
  }
}

/* =========================================================
 * R154 — Página individual do artigo em linguagem editorial
 * Referência estrutural adaptada para a identidade Posta Já.
 * ======================================================= */
.page-blog-article {
  --article-reading-width: 800px;
}

.page-blog-article .article-main {
  min-height: 72vh;
  padding: 24px 0 96px;
  background:
    radial-gradient(circle at 88% 8%, rgba(252, 205, 4, .08), transparent 24%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 28%, #f8fafc 100%);
}

.page-blog-article .article-shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.page-blog-article .article-layout {
  overflow: visible;
}

.page-blog-article .article-intro {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 18%, rgba(252, 205, 4, .16), transparent 24%),
    linear-gradient(145deg, #314d73 0%, var(--pj-blog-navy) 58%, #203754 100%);
  box-shadow: 0 28px 70px rgba(26, 48, 74, .16);
}

.page-blog-article .article-intro::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -180px;
  bottom: -220px;
  border: 1px solid rgba(252, 205, 4, .2);
  transform: rotate(45deg);
}

.page-blog-article .article-intro__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  padding: clamp(28px, 3vw, 36px) clamp(34px, 5.4vw, 72px) clamp(38px, 3.8vw, 46px);
}

.page-blog-article .article-breadcrumb {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .58);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.page-blog-article .article-breadcrumb a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  transition: color .2s ease;
}

.page-blog-article .article-breadcrumb a:hover {
  color: var(--pj-blog-yellow);
}

.page-blog-article .article-breadcrumb__separator {
  color: var(--pj-blog-yellow);
}

.page-blog-article .article-breadcrumb__current {
  max-width: min(78%, 760px);
  color: rgba(255, 255, 255, .58);
}

.page-blog-article .article-intro .blog-category-row {
  margin-bottom: 14px;
}

.page-blog-article .article-intro .blog-category-tag {
  border-color: rgba(252, 205, 4, .48);
  color: #253d5b;
  background: var(--pj-blog-yellow);
}

.page-blog-article .article-intro h1 {
  max-width: 1040px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.5rem, 4vw, 3.9rem);
  font-weight: 900;
  line-height: .99;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.page-blog-article .article-excerpt {
  max-width: 860px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(.98rem, 1.25vw, 1.1rem);
  line-height: 1.66;
}

.page-blog-article .article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: 18px;
  color: rgba(255, 255, 255, .76);
  font-size: .8rem;
  font-weight: 600;
}

.page-blog-article .article-meta__author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
}

.page-blog-article .article-meta__avatar {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  overflow: hidden;
  flex: 0 0 38px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  background: #fff;
}

.page-blog-article .article-meta__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.page-blog-article .article-meta__avatar img.is-brand-avatar {
  object-fit: contain;
}

.page-blog-article .article-meta__date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.page-blog-article .article-meta__date::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--pj-blog-yellow);
}

.page-blog-article .article-cover-wrap {
  width: min(1100px, calc(100% - 44px));
  margin: 28px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(27, 48, 73, .15);
}

.page-blog-article .article-cover {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: none;
  object-fit: cover;
  border-radius: 18px;
}

.page-blog-article .article-cover-placeholder {
  min-height: 0;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 30%, rgba(252, 205, 4, .16), transparent 24%),
    linear-gradient(145deg, #395677, #213850);
  color: #fff;
  text-align: center;
}

.page-blog-article .article-cover-placeholder__mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--pj-blog-yellow);
}

.page-blog-article .article-cover-placeholder__mark img {
  width: 33px;
  height: 33px;
}

.page-blog-article .article-cover-placeholder__eyebrow {
  color: var(--pj-blog-yellow);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.page-blog-article .article-cover-placeholder strong {
  max-width: 620px;
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -.035em;
}

.page-blog-article .article-reading-shell {
  width: min(var(--article-reading-width), calc(100% - 40px));
  margin: 58px auto 0;
}

.page-blog-article .article-body {
  padding: 0;
  color: #40546a;
  font-size: 1.04rem;
  line-height: 1.9;
}

.page-blog-article .article-body > :first-child {
  margin-top: 0;
}

.page-blog-article .article-body > :last-child {
  margin-bottom: 0;
}

.page-blog-article .article-body p {
  margin: 0 0 1.35em;
}

.page-blog-article .article-body h2,
.page-blog-article .article-body h3,
.page-blog-article .article-body h4 {
  color: var(--pj-blog-navy);
  font-weight: 800;
  letter-spacing: -.03em;
}

.page-blog-article .article-body h2 {
  margin: 2.45em 0 .72em;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.16;
}

.page-blog-article .article-body h3 {
  margin: 2em 0 .65em;
  font-size: clamp(1.35rem, 2.3vw, 1.62rem);
  line-height: 1.22;
}

.page-blog-article .article-body h4 {
  margin: 1.8em 0 .55em;
  font-size: 1.16rem;
}

.page-blog-article .article-body strong {
  color: #2c4364;
  font-weight: 700;
}

.page-blog-article .article-body a {
  color: #1b5d93;
  font-weight: 600;
  text-decoration-color: rgba(252, 205, 4, .9);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.page-blog-article .article-body a:hover {
  color: var(--pj-blog-navy);
  background: #fff8cf;
}

.page-blog-article .article-body ul,
.page-blog-article .article-body ol {
  margin: 1.1em 0 1.6em;
  padding-left: 1.4em;
}

.page-blog-article .article-body li {
  margin: .42em 0;
  padding-left: .24em;
}

.page-blog-article .article-body li::marker {
  color: #d2aa00;
}

.page-blog-article .article-body blockquote {
  position: relative;
  margin: 2.1em 0;
  padding: 24px 26px 24px 30px;
  border: 1px solid rgba(252, 205, 4, .34);
  border-left: 5px solid var(--pj-blog-yellow);
  border-radius: 0 16px 16px 0;
  background: #fffbed;
  color: #334a63;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.75;
}

.page-blog-article .article-body blockquote p:last-child {
  margin-bottom: 0;
}

.page-blog-article .article-body img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 2.1em auto;
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(28, 51, 78, .1);
}

.page-blog-article .article-body figure {
  margin: 2.2em 0;
}

.page-blog-article .article-body figure img {
  margin: 0;
}

.page-blog-article .article-body figcaption {
  margin-top: 10px;
  color: #7b8999;
  font-size: .78rem;
  line-height: 1.55;
  text-align: center;
}

.page-blog-article .article-body hr {
  margin: 2.6em 0;
  border: 0;
  border-top: 1px solid #e5ebf0;
}

.page-blog-article .article-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 2em 0;
  border: 1px solid #e1e7ed;
  border-radius: 14px;
  background: #fff;
}

.page-blog-article .article-body table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: .9rem;
}

.page-blog-article .article-body th,
.page-blog-article .article-body td {
  padding: 13px 15px;
  border-bottom: 1px solid #e9eef3;
  text-align: left;
}

.page-blog-article .article-body th {
  color: var(--pj-blog-navy);
  background: #f8fafc;
  font-weight: 800;
}

.page-blog-article .article-references {
  margin: 70px 0 0;
  padding: 36px 0 0;
  border-top: 1px solid #e1e7ed;
}

.page-blog-article .article-section-kicker {
  margin-bottom: 7px;
  color: #9a7c00;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.page-blog-article .article-references h2 {
  margin: 0 0 20px;
  color: var(--pj-blog-navy);
  font-size: clamp(1.65rem, 3vw, 2rem);
  line-height: 1.15;
  letter-spacing: -.035em;
}

.page-blog-article .article-reference-list {
  display: grid;
  gap: 10px;
}

.page-blog-article .article-reference-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 10px 16px 10px 10px;
  border: 1px solid #e1e7ed;
  border-radius: 14px;
  color: var(--pj-blog-navy);
  background: #fff;
  box-shadow: 0 8px 22px rgba(35, 57, 86, .04);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.page-blog-article .article-reference-item:hover {
  transform: translateY(-2px);
  border-color: rgba(252, 205, 4, .8);
  box-shadow: 0 12px 26px rgba(35, 57, 86, .08);
}

.page-blog-article .article-reference-item__index {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: var(--pj-blog-navy);
  background: var(--pj-blog-yellow);
  font-size: .72rem;
  font-weight: 900;
}

.page-blog-article .article-reference-item__title {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: .9rem;
  font-weight: 700;
}

.page-blog-article .article-reference-item__arrow {
  color: #718095;
  font-size: 1rem;
}

.page-blog-article .article-author-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid #e1e7ed;
  border-radius: 20px;
  background: linear-gradient(135deg, #f9fbfd 0%, #fff 100%);
  box-shadow: 0 12px 32px rgba(35, 57, 86, .06);
}

.page-blog-article .article-author-card__avatar {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  overflow: hidden;
  border: 1px solid rgba(44, 67, 100, .14);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(35, 57, 86, .08);
}

.page-blog-article .article-author-card__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.page-blog-article .article-author-card__avatar img.is-brand-avatar {
  object-fit: contain;
}

.page-blog-article .article-author-card__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: #8a98a8;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .11em;
}

.page-blog-article .article-author-card strong {
  display: block;
  color: var(--pj-blog-navy);
  font-size: 1rem;
}

.page-blog-article .article-author-card p {
  margin: 7px 0 0;
  color: #66778b;
  font-size: .84rem;
  line-height: 1.65;
}

/* R159 — Fechamento comercial e conteúdos relacionados */
.page-blog-article .article-upsell {
  position: relative;
  overflow: hidden;
  width: min(1100px, calc(100% - 44px));
  margin: 72px auto 0;
  padding: clamp(32px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, .65fr);
  align-items: center;
  gap: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(252, 205, 4, .32);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 18%, rgba(252, 205, 4, .18), transparent 26%),
    linear-gradient(145deg, #314d73 0%, var(--pj-blog-navy) 58%, #203754 100%);
  box-shadow: 0 26px 62px rgba(26, 48, 74, .16);
  color: #fff;
}

.page-blog-article .article-upsell::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -170px;
  bottom: -190px;
  border: 1px solid rgba(252, 205, 4, .24);
  transform: rotate(45deg);
}

.page-blog-article .article-upsell__copy,
.page-blog-article .article-upsell__actions {
  position: relative;
  z-index: 1;
}

.page-blog-article .article-upsell__eyebrow {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 9px;
  background: var(--pj-blog-yellow);
  color: var(--pj-blog-navy);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.page-blog-article .article-upsell h2 {
  max-width: 720px;
  margin: 15px 0 0;
  color: #fff;
  font-size: clamp(1.9rem, 3.65vw, 3.05rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.035em;
}

.page-blog-article .article-upsell__copy > p {
  max-width: 690px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 1rem;
  line-height: 1.72;
}

.page-blog-article .article-upsell__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin-top: 20px;
}

.page-blog-article .article-upsell__benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .9);
  font-size: .77rem;
  font-weight: 600;
}

.page-blog-article .article-upsell__benefits i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--pj-blog-yellow);
  box-shadow: 0 0 0 3px rgba(252, 205, 4, .12);
}

.page-blog-article .article-upsell__actions {
  display: grid;
  gap: 12px;
}

.page-blog-article .article-upsell__primary,
.page-blog-article .article-upsell__secondary {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .025em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.page-blog-article .article-upsell__primary {
  border: 1px solid var(--pj-blog-yellow);
  background: var(--pj-blog-yellow);
  color: var(--pj-blog-navy);
}

.page-blog-article .article-upsell__secondary {
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .07);
  color: #fff;
}

.page-blog-article .article-upsell__primary:hover,
.page-blog-article .article-upsell__secondary:hover {
  transform: translateY(-2px);
}

.page-blog-article .article-upsell__secondary:hover {
  border-color: var(--pj-blog-yellow);
  color: var(--pj-blog-yellow);
}

.page-blog-article #article-related-root:empty {
  display: none;
}

.page-blog-article .article-related {
  width: min(1100px, calc(100% - 44px));
  margin: 72px auto 0;
  padding-top: 52px;
  border-top: 1px solid #e0e7ee;
}

.page-blog-article .article-related__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.page-blog-article .article-related__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--pj-blog-navy);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.page-blog-article .article-related__eyebrow span {
  padding: 5px 8px;
  border-radius: 8px;
  background: var(--pj-blog-yellow);
}

.page-blog-article .article-related h2 {
  margin: 10px 0 0;
  color: var(--pj-blog-navy);
  font-size: clamp(1.8rem, 3.15vw, 2.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.page-blog-article .article-related__all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid rgba(252, 205, 4, .7);
  border-radius: 12px;
  color: #fff;
  background: var(--pj-blog-navy);
  text-decoration: none;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
}

.page-blog-article .article-related__all:hover {
  color: var(--pj-blog-navy);
  background: var(--pj-blog-yellow);
}

.page-blog-article .article-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.page-blog-article .article-related-card {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  overflow: hidden;
  min-height: 270px;
  border: 1px solid #e0e7ee;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(35, 57, 86, .07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.page-blog-article .article-related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(252, 205, 4, .55);
  box-shadow: 0 22px 46px rgba(35, 57, 86, .11);
}

.page-blog-article .article-related-card__visual {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: linear-gradient(145deg, #395677, #213850);
}

.page-blog-article .article-related-card__visual img,
.page-blog-article .article-related-card__visual .blog-card-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition: transform .28s ease;
}

.page-blog-article .article-related-card:hover .article-related-card__visual img {
  transform: scale(1.025);
}

.page-blog-article .article-related-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.page-blog-article .article-related-card__category {
  width: fit-content;
  max-width: 100%;
  padding: 6px 9px;
  border-radius: 999px;
  background: #fff7cf;
  color: #6f5a00;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.page-blog-article .article-related-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin-top: 14px;
  color: #75869a;
  font-size: .67rem;
  font-weight: 700;
}

.page-blog-article .article-related-card__author {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.page-blog-article .article-related-card__avatar {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  overflow: hidden;
  border: 1px solid #e0e7ee;
  border-radius: 999px;
  background: #fff;
}

.page-blog-article .article-related-card__avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-blog-article .article-related-card__avatar img.is-brand-avatar {
  object-fit: contain;
}

.page-blog-article .article-related-card__date::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 8px;
  border-radius: 999px;
  background: var(--pj-blog-yellow);
  vertical-align: middle;
}

.page-blog-article .article-related-card h3 {
  margin: 15px 0 0;
  color: var(--pj-blog-navy);
  font-size: clamp(1.1rem, 1.6vw, 1.36rem);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.025em;
}

.page-blog-article .article-related-card h3 a {
  color: inherit;
  text-decoration: none;
}

.page-blog-article .article-related-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 10px 0 0;
  color: #68798d;
  font-size: .76rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.page-blog-article .article-related-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 16px;
  color: var(--pj-blog-navy);
  font-size: .7rem;
  font-weight: 800;
  text-decoration: none;
}

.page-blog-article .article-related-card__link:hover {
  color: #9a7c00;
}

.page-blog-article .article-related-empty {
  padding: 30px;
  border: 1px solid #e0e7ee;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(35, 57, 86, .05);
  text-align: center;
}

.page-blog-article .article-related-empty strong {
  color: var(--pj-blog-navy);
  font-size: 1.05rem;
  font-weight: 700;
}

.page-blog-article .article-related-empty p {
  margin: 7px 0 16px;
  color: #6d7c8d;
  font-size: .88rem;
}

.page-blog-article .article-related-empty a {
  color: var(--pj-blog-navy);
  font-size: .72rem;
  font-weight: 800;
  text-decoration: none;
}

.page-blog-article .article-loading,
.page-blog-article .article-error {
  padding: 90px 30px;
  border: 1px solid #e1e7ed;
  border-radius: 24px;
  color: var(--pj-blog-muted);
  background: #fff;
  box-shadow: 0 18px 48px rgba(35, 57, 86, .07);
  text-align: center;
}

.page-blog-article .article-error strong {
  color: var(--pj-blog-navy);
}

.page-blog-article .article-error a {
  color: var(--pj-blog-navy);
  font-weight: 800;
}

@media (max-width: 980px) {
  .page-blog-article .article-upsell {
    grid-template-columns: 1fr;
    width: min(100% - 28px, 1000px);
  }

  .page-blog-article .article-upsell__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-blog-article .article-related {
    width: min(100% - 28px, 1000px);
  }

  .page-blog-article .article-related-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-article .article-related-card {
    grid-template-columns: minmax(220px, 38%) minmax(0, 62%);
  }
}

@media (max-width: 980px) {
  .page-blog-article .article-main {
    padding-top: 28px;
  }

  .page-blog-article .article-intro {
    border-radius: 25px;
  }

  .page-blog-article .article-intro__inner {
    max-width: 100%;
    padding: 40px 40px 36px;
  }

  .page-blog-article .article-cover-wrap {
    width: min(100% - 28px, 1000px);
  }

  .page-blog-article .article-related-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 720px) {
  .page-blog-article .article-main {
    padding: 18px 0 72px;
  }

  .page-blog-article .article-shell {
    width: min(100% - 28px, 1180px);
  }

  .page-blog-article .article-intro {
    border-radius: 21px;
  }

  .page-blog-article .article-intro__inner {
    padding: 24px 24px 28px;
  }

  .page-blog-article .article-breadcrumb {
    margin-bottom: 15px;
    gap: 7px;
    font-size: .64rem;
    line-height: 1.4;
  }

  .page-blog-article .article-breadcrumb__current {
    max-width: 100%;
  }

  .page-blog-article .article-intro h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8.7vw, 2.75rem);
    line-height: 1.02;
  }

  .page-blog-article .article-excerpt {
    margin-top: 15px;
    font-size: .95rem;
    line-height: 1.62;
  }

  .page-blog-article .article-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }

  .page-blog-article .article-meta__date {
    padding-left: 48px;
  }

  .page-blog-article .article-cover-wrap {
    width: calc(100% - 14px);
    margin-top: 20px;
    border-width: 6px;
    border-radius: 20px;
  }

  .page-blog-article .article-cover,
  .page-blog-article .article-cover-placeholder {
    border-radius: 14px;
  }

  .page-blog-article .article-reading-shell {
    width: min(100% - 16px, var(--article-reading-width));
    margin-top: 42px;
  }

  .page-blog-article .article-body {
    font-size: .98rem;
    line-height: 1.82;
  }

  .page-blog-article .article-body h2 {
    margin-top: 2.15em;
  }

  .page-blog-article .article-body blockquote {
    padding: 20px 20px 20px 22px;
  }

  .page-blog-article .article-references {
    margin-top: 56px;
  }

  .page-blog-article .article-author-card {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 15px;
    padding: 19px;
    border-radius: 17px;
  }

  .page-blog-article .article-author-card__avatar {
    width: 58px;
    height: 58px;
  }

  .page-blog-article .article-author-card__avatar img {
    width: 49px;
    height: 49px;
  }

  .page-blog-article .article-upsell {
    width: calc(100% - 14px);
    margin-top: 56px;
    padding: 28px 22px;
    border-radius: 22px;
  }

  .page-blog-article .article-upsell h2 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .page-blog-article .article-upsell__copy > p {
    font-size: .92rem;
  }

  .page-blog-article .article-upsell__actions {
    grid-template-columns: 1fr;
  }

  .page-blog-article .article-related {
    width: calc(100% - 14px);
    margin-top: 58px;
    padding-top: 42px;
  }

  .page-blog-article .article-related-card {
    grid-template-columns: 1fr;
  }

  .page-blog-article .article-related-card__visual {
    min-height: 210px;
    aspect-ratio: 16 / 9;
  }

  .page-blog-article .article-related__head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .page-blog-article .article-shell {
    width: min(100% - 22px, 1180px);
  }

  .page-blog-article .article-intro__inner {
    padding: 28px 20px 26px;
  }

  .page-blog-article .article-intro h1 {
    font-size: 1.82rem;
  }

  .page-blog-article .article-intro .blog-category-tag {
    font-size: .62rem;
  }

  .page-blog-article .article-cover-wrap {
    width: calc(100% - 8px);
  }

  .page-blog-article .article-reading-shell {
    width: 100%;
    padding: 0 4px;
  }

  .page-blog-article .article-body {
    font-size: .95rem;
  }

  .page-blog-article .article-reference-item {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 10px;
    padding-right: 12px;
  }

  .page-blog-article .article-reference-item__index {
    width: 34px;
    height: 34px;
  }

  .page-blog-article .article-author-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-blog-article .article-author-card__avatar {
    margin: 0 auto;
  }

  .page-blog-article .article-related__all {
    width: 100%;
    justify-content: center;
  }
}

/* BLOG R165 - percepcao de carregamento e renderizacao progressiva */
.blog-card--skeleton{pointer-events:none;user-select:none}
.blog-card--skeleton .blog-card-visual{background:#e8eef4}
.blog-skeleton{position:relative;overflow:hidden;border-radius:8px;background:#e8eef4}
.blog-skeleton::after{content:"";position:absolute;inset:0;transform:translateX(-100%);background:linear-gradient(90deg,transparent,rgba(255,255,255,.72),transparent);animation:pj-blog-skeleton 1.25s ease-in-out infinite}
.blog-skeleton--tag{width:34%;height:22px;margin-bottom:14px;border-radius:999px}
.blog-skeleton--meta{width:52%;height:13px;margin-bottom:17px}
.blog-skeleton--title{width:94%;height:20px;margin-bottom:8px}
.blog-skeleton--title-short{width:68%;margin-bottom:17px}
.blog-skeleton--text{width:100%;height:12px;margin-bottom:7px}
.blog-skeleton--text-short{width:82%;margin-bottom:24px}
.blog-skeleton--link{width:29%;height:13px;margin-top:auto}
@keyframes pj-blog-skeleton{to{transform:translateX(100%)}}
@media(prefers-reduced-motion:reduce){.blog-skeleton::after{animation:none}}
\n\n/* BLOG R166 - compartilhamento e formatacao editorial */
.page-blog-article .article-body a.blog-content-button{display:flex;width:max-content;max-width:100%;align-items:center;justify-content:center;min-height:48px;margin:.55em auto 1.7em;padding:0 22px;border:1px solid var(--pj-blog-navy,#0e345c);border-radius:999px;background:var(--pj-blog-navy,#0e345c);color:#fff!important;font:800 .78rem/1 "Poppins",sans-serif;text-decoration:none!important;text-align:center;white-space:normal;box-shadow:0 10px 26px rgba(8,34,58,.13);transition:transform .18s ease,background .18s ease,border-color .18s ease,color .18s ease,box-shadow .18s ease}
.page-blog-article .article-body a.blog-content-button:hover,.page-blog-article .article-body a.blog-content-button:focus-visible{transform:translateY(-2px);border-color:#fccd04;background:#fccd04;color:#0e345c!important;box-shadow:0 14px 30px rgba(8,34,58,.17)}
.page-blog-article .article-body a.blog-content-button:focus-visible{outline:3px solid rgba(252,205,4,.24);outline-offset:3px}
.page-blog-article .article-body .blog-align-left{text-align:left!important}
.page-blog-article .article-body .blog-align-center{text-align:center!important}
.page-blog-article .article-body .blog-align-right{text-align:right!important}
.page-blog-article .article-body .blog-align-justify{text-align:justify!important;text-justify:inter-word}
.page-blog-article .article-body p.blog-font-small,.page-blog-article .article-body li.blog-font-small{font-size:.92em}
.page-blog-article .article-body p.blog-font-large,.page-blog-article .article-body li.blog-font-large{font-size:1.12em}
.page-blog-article .article-body p.blog-font-xlarge,.page-blog-article .article-body li.blog-font-xlarge{font-size:1.28em}
.page-blog-article .article-body blockquote.blog-font-small{font-size:.96rem}.page-blog-article .article-body blockquote.blog-font-large{font-size:1.16rem}.page-blog-article .article-body blockquote.blog-font-xlarge{font-size:1.34rem}
.page-blog-article .article-body h2.blog-font-small{font-size:clamp(1.45rem,2.5vw,2rem)}.page-blog-article .article-body h2.blog-font-large{font-size:clamp(2rem,3vw,2.55rem)}.page-blog-article .article-body h2.blog-font-xlarge{font-size:clamp(2.25rem,3.5vw,2.9rem)}
.page-blog-article .article-body h3.blog-font-small{font-size:clamp(1.18rem,2vw,1.55rem)}.page-blog-article .article-body h3.blog-font-large{font-size:clamp(1.6rem,2.4vw,2rem)}.page-blog-article .article-body h3.blog-font-xlarge{font-size:clamp(1.9rem,2.8vw,2.3rem)}
.page-blog-article .article-share{margin:28px 0 34px;padding:32px 0 0;border-top:1px solid #d9e2ea;display:flex;align-items:center;justify-content:space-between;gap:28px;background:transparent;box-shadow:none;border-radius:0}
.page-blog-article .article-share__copy{min-width:0;max-width:none;flex:1 1 auto}.page-blog-article .article-share__eyebrow{display:block;margin-bottom:10px;color:#0f8fb5;font-size:.72rem;font-weight:800;letter-spacing:.16em;text-transform:uppercase}.page-blog-article .article-share h2{margin:0;color:#0b1b2e;font-size:clamp(1.2rem,2vw,1.5rem);line-height:1.2;letter-spacing:-.01em;font-weight:800;text-wrap:balance}
.page-blog-article .article-share__actions{display:flex;align-items:center;justify-content:flex-end;flex-wrap:wrap;gap:14px;flex:0 0 auto}.page-blog-article .article-share__button{position:relative;width:60px;height:60px;display:grid;place-items:center;border:1px solid #e4ebf2;border-radius:50%;background:#fff;color:#0e345c;cursor:pointer;box-shadow:none;transition:transform .18s ease,border-color .18s ease,background .18s ease,color .18s ease}.page-blog-article .article-share__button:hover,.page-blog-article .article-share__button:focus-visible{transform:translateY(-2px);border-color:transparent;background:#0e345c;color:#fff}.page-blog-article .article-share__button:focus-visible{outline:3px solid rgba(14,52,92,.12);outline-offset:2px}
/* Cada rede assume sua cor real no hover/foco */
.page-blog-article .article-share__button[data-article-share="whatsapp"]:hover,.page-blog-article .article-share__button[data-article-share="whatsapp"]:focus-visible{background:#25d366;color:#fff}
.page-blog-article .article-share__button[data-article-share="facebook"]:hover,.page-blog-article .article-share__button[data-article-share="facebook"]:focus-visible{background:#1877f2;color:#fff}
.page-blog-article .article-share__button[data-article-share="linkedin"]:hover,.page-blog-article .article-share__button[data-article-share="linkedin"]:focus-visible{background:#0a66c2;color:#fff}
.page-blog-article .article-share__button[data-article-share="x"]:hover,.page-blog-article .article-share__button[data-article-share="x"]:focus-visible{background:#000;color:#fff}
.page-blog-article .article-share__button[data-article-share="instagram"]:hover,.page-blog-article .article-share__button[data-article-share="instagram"]:focus-visible{background:#d6249f;color:#fff}
.page-blog-article .article-share__button[data-article-share="copy"]:hover,.page-blog-article .article-share__button[data-article-share="copy"]:focus-visible{background:#0e345c;color:#fff}.page-blog-article .article-share__button svg{width:23px;height:23px;display:block;fill:currentColor;stroke:none}.page-blog-article .article-share__button.is-feedback{border-color:#16825d;color:#16825d}.page-blog-article .article-share__button.is-loading{cursor:wait;pointer-events:none;opacity:.8;transform:none}.page-blog-article .article-share__button.is-loading svg{opacity:.18}.page-blog-article .article-share__button.is-loading::after{content:"";position:absolute;width:17px;height:17px;border:2px solid currentColor;border-right-color:transparent;border-radius:50%;animation:pj-share-spin .75s linear infinite}.page-blog-article .article-share__feedback{position:absolute;left:50%;bottom:calc(100% + 8px);width:max-content;max-width:180px;padding:6px 9px;border-radius:8px;background:#071f38;color:#fff;font-size:.68rem;font-weight:800;line-height:1;white-space:nowrap;opacity:0;pointer-events:none;transform:translate(-50%,4px);transition:.18s ease;z-index:5}.page-blog-article .article-share__button.is-feedback .article-share__feedback,.page-blog-article .article-share__button.is-loading .article-share__feedback{opacity:1;transform:translate(-50%,0)}
@keyframes pj-share-spin{to{transform:rotate(360deg)}}
@media(max-width:900px){.page-blog-article .article-share{flex-direction:column;align-items:flex-start}.page-blog-article .article-share h2{max-width:none}.page-blog-article .article-share__actions{justify-content:flex-start}}
@media(max-width:560px){.page-blog-article .article-share{padding-top:26px;gap:18px}.page-blog-article .article-share h2{font-size:1.25rem}.page-blog-article .article-share__actions{gap:10px}.page-blog-article .article-share__button{width:56px;height:56px}.page-blog-article .article-body .blog-align-justify{text-align:left!important}}
@media(prefers-reduced-motion:reduce){.page-blog-article .article-share__button,.page-blog-article .article-body a.blog-content-button{transition:none}.page-blog-article .article-share__button.is-loading::after{animation-duration:1.4s}}
