@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500;1,9..144,600&display=swap');

*, *::before, *::after { box-sizing: border-box; }

:root {
  --hp-blue: #0A4E7A;
  --hp-blue-2: #0D6FAF;
  --hp-blue-soft: #E6F1F8;
  --hp-green: #10B981;
  --ink: #1F2937;
  --muted: #667085;
  --line: #E4E7EC;
  --line-strong: #D0D5DD;
  --bg: #FFFFFF;
  --soft: #F6F8FB;
  --card: #FFFFFF;
  --warning: #F58220;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Manrope, system-ui, sans-serif;
  line-height: 1.45;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--hp-blue); }
img, svg { display: block; }
button, input { font: inherit; }

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

.network-bar {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.network-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 38px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.network-inner a:first-child {
  color: var(--hp-blue);
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--hp-blue);
  color: #fff;
  box-shadow: 0 2px 10px rgba(10, 78, 122, .2);
}

.masthead-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.12);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-button svg,
.search-link svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  color: inherit;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 800;
  white-space: nowrap;
}

.brand:hover { color: #fff; }

.brand img {
  width: 34px;
  height: 34px;
  filter: brightness(0) invert(1);
}

.search-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.search-link:hover { color: #D9F4FF; }

.masthead-user {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  white-space: nowrap;
}

.wa-invite {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 14px;
  margin-right: 10px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(4, 35, 56, .14);
  transition: background .2s, transform .2s;
}

.wa-invite:hover {
  background: #1ebe57;
  color: #fff;
  transform: translateY(-1px);
}

.wa-invite-icon {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .wa-invite {
    padding: 9px 10px;
    margin-right: 6px;
  }
  .wa-invite-text {
    display: none;
  }
}

.masthead-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.masthead-search {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 40px;
  padding: 4px 4px 4px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  transition: background .2s, box-shadow .2s;
}

.masthead-search:focus-within {
  background: rgba(255,255,255,.22);
  box-shadow: 0 0 0 2px rgba(255,255,255,.35);
}

.masthead-search-input {
  width: 190px;
  max-width: 30vw;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  padding: 4px 0;
}

.masthead-search-input::placeholder {
  color: rgba(255,255,255,.75);
  font-weight: 600;
}

.masthead-search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.masthead-search-submit {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--hp-blue);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.masthead-search-submit:hover { background: #f1f6fa; }

.masthead-search-submit svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-results-head {
  margin: 8px 0 24px;
}

.search-results-head h2 {
  margin: 0 0 4px;
  font-size: clamp(22px, 4vw, 30px);
}

.search-results-head p {
  margin: 0;
  color: var(--hp-ink-soft, #64748B);
  font-size: 14px;
}

.search-results-head a {
  color: var(--hp-blue);
  font-weight: 700;
}

@media (max-width: 900px) {
  .masthead-search-input { width: 130px; }
}

@media (max-width: 600px) {
  .masthead-search {
    background: transparent;
    padding: 0;
    gap: 0;
  }
  .masthead-search:focus-within {
    background: transparent;
    box-shadow: none;
  }
  .masthead-search-input {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    margin: 0;
    padding: 14px 20px;
    font-size: 16px;
    background: var(--hp-blue);
    border-top: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 10px 18px rgba(4,35,56,.28);
  }
  .masthead-search.open .masthead-search-input { display: block; }
  .masthead-search-submit {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.12);
    color: #fff;
  }
  .masthead-search-submit:hover { background: rgba(255,255,255,.18); }
}

.blog-user-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.blog-user-link:hover {
  color: #D9F4FF;
}

.blog-user-link--primary {
  background: #fff;
  color: var(--hp-blue);
  box-shadow: 0 8px 18px rgba(4, 35, 56, .14);
}

.blog-user-link--primary:hover {
  background: #f1f6fa;
  color: var(--hp-blue);
}

.blog-user-link--ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
}

.blog-user-link--ghost:hover {
  background: rgba(255,255,255,.18);
  color: #fff;
}

.blog-user-menu {
  position: relative;
}

.blog-user-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  max-width: 190px;
  padding: 5px 10px 5px 5px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.blog-user-trigger:hover,
.blog-user-menu.open .blog-user-trigger {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.36);
  box-shadow: 0 10px 24px rgba(4,35,56,.18);
}

.blog-user-avatar {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #E6F1F8 0%, #FFFFFF 48%, #CDE7F7 100%);
  color: var(--hp-blue);
  font-family: Fraunces, Georgia, serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 4px 12px rgba(4,35,56,.18);
  position: relative;
  overflow: hidden;
}

.blog-user-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 32% 22%, rgba(255,255,255,.95), transparent 48%);
  pointer-events: none;
}

.blog-user-avatar--large {
  width: 46px;
  height: 46px;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #0D6FAF, #0A4E7A);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 10px 20px rgba(10,78,122,.2);
}

.blog-user-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-user-chevron {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .18s ease;
}

.blog-user-menu.open .blog-user-chevron {
  transform: rotate(180deg);
}

.blog-user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(286px, calc(100vw - 24px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 22px 50px rgba(15, 23, 42, .2), 0 4px 12px rgba(15,23,42,.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 80;
}

.blog-user-menu.open .blog-user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.blog-user-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 17px 18px 15px;
  background: linear-gradient(180deg, #F4FAFD 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
}

.blog-user-header strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--hp-blue);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 800;
}

.blog-user-header > span:not(.blog-user-avatar):not(.blog-user-badge) {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.blog-user-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 7px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.blog-user-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.blog-user-badge--admin { background: #E6F1F8; color: var(--hp-blue); }
.blog-user-badge--active { background: #DCFCE7; color: #15803D; }
.blog-user-badge--trial { background: #FEF3C7; color: #92400E; }
.blog-user-badge--blocked { background: #FEE2E2; color: #991B1B; }

.blog-user-item {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  min-height: 42px;
  padding: 10px 18px;
  border: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: background .14s ease, color .14s ease, padding-left .14s ease;
}

.blog-user-item:hover {
  padding-left: 22px;
  background: var(--hp-blue-soft);
  color: var(--hp-blue);
}

.blog-user-item svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-user-item--danger {
  color: #B42318;
}

.blog-user-item--danger:hover {
  background: #FEE2E2;
  color: #991B1B;
}

.blog-user-divider {
  height: 1px;
  margin: 4px 0;
  background: var(--line);
}

.topics-nav {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.topics-track {
  display: flex;
  gap: 24px;
  min-height: 46px;
  align-items: center;
  flex-wrap: wrap;
  overflow: visible;
  color: var(--hp-blue);
  font-size: 14px;
  font-weight: 800;
}

.headline-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
  scrollbar-width: thin;
}

.headline-strip strong {
  flex: 0 0 auto;
  color: var(--hp-blue);
  font-size: 13px;
  font-weight: 800;
}

.headline-strip a {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.headline-strip a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--hp-green);
  vertical-align: middle;
}

.cover-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(280px, .72fr) minmax(260px, .58fr);
  gap: 28px;
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--line);
}

.main-story {
  padding-right: 4px;
}

.section-label {
  display: inline-flex;
  margin: 0 0 10px;
  color: var(--hp-blue);
  font-size: 13px;
  font-weight: 800;
}

.main-story h1 {
  margin: 0;
  color: var(--hp-blue);
  font-size: clamp(38px, 4.9vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.summary {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.story-bullets {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.story-bullets li {
  position: relative;
  padding-left: 18px;
  font-weight: 800;
}

.story-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warning);
}

.side-stories {
  display: grid;
  gap: 18px;
}

.media-card {
  min-height: 210px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--hp-blue);
  position: relative;
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 78, 122, .08), rgba(9, 30, 46, .92)),
    radial-gradient(circle at 20% 16%, rgba(255,255,255,.85) 0 4px, transparent 5px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.14) 0 1px, transparent 1px 26px);
}

.card-tech::after,
.card-career::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 20px;
  width: 76px;
  height: 76px;
  border: 3px solid rgba(255,255,255,.55);
  border-radius: 50%;
}

.card-career { background: #0E766F; }

.media-card a {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 20px;
  color: #fff;
}

.media-card a:hover { color: #fff; }

.media-card span {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.media-card h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.16;
  letter-spacing: 0;
}

.latest-panel {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.panel-title,
.most-read h2,
.newsletter h2 {
  margin: 0 0 16px;
  color: var(--hp-blue);
  font-size: 22px;
  font-weight: 800;
}

.latest-list,
.most-read ol {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  counter-reset: item;
}

.latest-list li,
.most-read li {
  counter-increment: item;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.latest-list li::before,
.most-read li::before {
  content: counter(item);
  color: var(--hp-blue-2);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  padding: 38px 0 58px;
}

.feed-header {
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.feed-header h2 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: 0;
}

.feed-header p {
  margin: 8px 0 0;
  color: var(--muted);
}

.news-row {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.thumb {
  min-height: 144px;
  border-radius: 8px;
  background-color: var(--soft);
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(31,41,55,.22));
}

.thumb-pay {
  background-image:
    repeating-linear-gradient(0deg, rgba(10,78,122,.16) 0 2px, transparent 2px 22px),
    linear-gradient(135deg, #DFF1FA, #F7E3C8);
}

.thumb-rights {
  background-image:
    linear-gradient(90deg, rgba(10,78,122,.16) 1px, transparent 1px),
    linear-gradient(135deg, #EAF1F5, #CFE7DE);
  background-size: 28px 28px, auto;
}

.thumb-ai {
  background-image:
    radial-gradient(circle at 28% 24%, rgba(255,255,255,.78) 0 10px, transparent 11px),
    linear-gradient(135deg, #0A4E7A, #10B981);
}

.thumb-calendar {
  background-image:
    repeating-linear-gradient(90deg, rgba(31,41,55,.14) 0 1px, transparent 1px 34px),
    linear-gradient(135deg, #F3E9D6, #D9ECF4);
}

.news-row h3 {
  margin: 0;
  color: var(--hp-blue);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.1;
  letter-spacing: 0;
}

.news-row p {
  margin: 10px 0 12px;
  color: var(--muted);
  font-size: 15px;
}

.news-row time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.sidebar {
  display: grid;
  gap: 24px;
  align-content: start;
}

.most-read,
.newsletter {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.newsletter {
  background: var(--hp-blue-soft);
}

.newsletter p {
  margin: 0 0 16px;
  color: var(--muted);
}

.newsletter form {
  display: grid;
  gap: 10px;
}

.newsletter label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.newsletter input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0 12px;
}

.newsletter input:focus-visible {
  outline: 2px solid var(--hp-blue);
  outline-offset: 2px;
  border-color: var(--hp-blue);
}

.newsletter button {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--hp-blue);
  font-weight: 800;
  cursor: pointer;
}

.blog-footer {
  border-top: 1px solid var(--line);
  background: var(--soft);
  padding: 56px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col--brand { align-items: flex-start; }
.footer-col--nav { align-items: center; }
.footer-col--social { align-items: flex-end; }

.footer-col-title {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--hp-blue);
  font-size: 16px;
  font-weight: 900;
}

.footer-logo .logo-icon {
  width: auto;
  height: 18px;
}

.footer-brand {
  justify-content: flex-start;
  color: var(--hp-blue);
  font-size: 22px;
}

.footer-brand img {
  filter: none;
}

.footer-brand:hover {
  color: var(--hp-blue);
}

.blog-footer > .footer-inner > p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  text-align: right;
}

.footer-tagline {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-insta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition: color .15s;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-insta:hover {
  color: #e1306c;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 16px 0;
  text-align: center;
}

.footer-copy {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
}

.contact-fab-wrap {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

@keyframes fabFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes fabPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55), 0 4px 20px rgba(37,211,102,.45); }
  70% { box-shadow: 0 0 0 20px rgba(37,211,102,0), 0 4px 20px rgba(37,211,102,.3); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 4px 20px rgba(37,211,102,.45); }
}

.whatsapp-fab {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: transform .2s, box-shadow .2s;
  animation: fabFloat 3.6s ease-in-out infinite, fabPulse 2.4s ease-out infinite;
}

.whatsapp-fab:hover,
.cfab-open .whatsapp-fab {
  animation: none;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.65);
}

.whatsapp-fab::after {
  content: 'Fale conosco';
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  white-space: nowrap;
  background: rgba(8,14,28,.93);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s, transform .22s;
  box-shadow: 0 3px 14px rgba(0,0,0,.35);
}

.whatsapp-fab:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.cfab-open .whatsapp-fab::after { opacity: 0 !important; }

.fab-icon-close { display: none; }
.cfab-open .fab-icon-chat { display: none; }
.cfab-open .fab-icon-close { display: block; }

.contact-fab-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s, transform .2s;
}

.cfab-open .contact-fab-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-fab-option {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--card);
  color: var(--ink);
  padding: 10px 18px 10px 14px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(10, 78, 122, .14);
  transition: background .15s, transform .15s, color .15s;
}

button.contact-fab-option {
  font-family: inherit;
  cursor: pointer;
}

.contact-fab-option:hover {
  transform: translateX(-3px);
  background: var(--hp-blue-soft);
  color: var(--hp-blue);
}

.back-to-top {
  position: fixed;
  left: 28px;
  bottom: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--hp-blue);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(10, 78, 122, .35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s, transform .25s, box-shadow .2s;
}

.back-to-top.btt-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(10, 78, 122, .52);
}

.suporte-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(15, 23, 42, .58);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}

.suporte-backdrop.suporte-visible {
  opacity: 1;
  pointer-events: auto;
}

.suporte-modal {
  width: 100%;
  max-width: 480px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  box-shadow: 0 24px 60px rgba(15, 23, 42, .24);
  transform: translateY(16px);
  transition: transform .2s;
}

.suporte-backdrop.suporte-visible .suporte-modal {
  transform: translateY(0);
}

.suporte-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 0;
}

.suporte-titulo {
  margin: 0;
  color: var(--hp-blue);
  font-size: 18px;
  font-weight: 800;
}

.suporte-fechar {
  border: 0;
  border-radius: 6px;
  background: none;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  padding: 4px;
}

.suporte-fechar:hover { color: var(--ink); }

.suporte-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 24px 24px;
}

.suporte-form[hidden],
.suporte-sucesso[hidden] {
  display: none !important;
}

.suporte-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.suporte-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.suporte-input {
  width: 100%;
  border: 1.5px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  padding: 10px 12px;
  transition: border-color .15s;
}

.suporte-input:focus-visible {
  outline: 2px solid var(--hp-blue);
  outline-offset: 2px;
  border-color: var(--hp-blue);
}

.suporte-textarea {
  min-height: 110px;
  resize: vertical;
}

.suporte-counter {
  color: var(--muted);
  font-size: 11px;
  text-align: right;
  margin-top: 2px;
}

.suporte-erro {
  min-height: 18px;
  margin: 0;
  color: #ef4444;
  font-size: 13px;
}

.suporte-btn {
  border: 0;
  border-radius: 8px;
  background: var(--hp-blue);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  padding: 12px;
  transition: background .15s, opacity .15s;
}

.suporte-btn:hover { background: var(--hp-blue-2); }
.suporte-btn:disabled { opacity: .6; cursor: not-allowed; }

.suporte-sucesso {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 24px;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

@media (max-width: 1020px) {
  .cover-grid {
    grid-template-columns: minmax(0, 1fr) minmax(270px, .8fr);
  }

  .latest-panel {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 22px 0 0;
  }

  .latest-list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 26px;
  }

  .content-layout {
    grid-template-columns: 1fr;
  }
}

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

  .network-inner {
    gap: 14px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .masthead-inner {
    min-height: 66px;
  }

  .brand {
    font-size: 22px;
  }

  .brand img {
    width: 28px;
    height: 28px;
  }

  .search-link {
    width: 40px;
    height: 40px;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,.12);
    font-size: 0;
  }

  .cover-grid,
  .side-stories,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .cover-grid {
    gap: 24px;
    padding-top: 28px;
  }

  .main-story h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .summary {
    font-size: 16px;
  }

  .latest-list {
    grid-template-columns: 1fr;
  }

  .news-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .thumb {
    min-height: 190px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }

  .footer-col--brand,
  .footer-col--nav,
  .footer-col--social {
    align-items: center;
    text-align: center;
  }

  .footer-tagline { text-align: center; }
}

@media (max-width: 480px) {
  .masthead-inner {
    gap: 10px;
    padding: 10px 0;
  }

  .brand {
    font-size: 20px;
  }

  .blog-user-link {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .masthead-actions {
    gap: 8px;
  }

  .blog-user-trigger {
    min-height: 36px;
    padding-right: 6px;
  }

  .blog-user-avatar {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .blog-user-name,
  .blog-user-chevron,
  .blog-user-link--ghost {
    display: none;
  }

  .topics-track {
    gap: 18px;
  }

  .contact-fab-wrap {
    right: 16px;
    bottom: 16px;
  }

  .back-to-top {
    left: 16px;
    bottom: 16px;
  }

  .whatsapp-fab,
  .back-to-top {
    width: 50px;
    height: 50px;
  }

  .media-card {
    min-height: 190px;
  }

  .most-read,
  .newsletter {
    padding: 18px;
  }
}

/* ─── Novo blog dinâmico ─────────────────────────── */

.cta-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--hp-blue);
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
}
.cta-new:hover { background: #f1f6fa; color: var(--hp-blue); }
.cta-new svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; }
.cta-new--ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
}
.cta-new--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

.topic-link.active {
  color: var(--ink);
  position: relative;
}
.topic-link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -14px;
  height: 3px;
  background: var(--hp-blue);
  border-radius: 3px;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
  padding: 36px 0 28px;
  border-bottom: 1px solid var(--line);
}
.blog-hero h1 {
  margin: 6px 0 12px;
  color: var(--hp-blue);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}
.blog-hero .summary { margin: 0; max-width: 620px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary { background: var(--hp-blue); color: #fff; }
.btn-primary:hover { background: #0c5e92; color: #fff; }
.btn-secondary { background: #fff; color: var(--hp-blue); border-color: var(--line-strong); }
.btn-secondary:hover { background: var(--soft); color: var(--hp-blue); }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: var(--ink); }

/* ─── Destaques — estilo editorial G1 ─────────────── */
.featured {
  position: relative;
  padding: 34px 0 44px;
  border-bottom: 1px solid #D7E0E8;
  margin-bottom: 10px;
  counter-reset: rank;
}

.featured-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.featured-head h2 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0;
  color: var(--ink);
}
.featured-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: #FFF4D8;
  color: #7A3E00;
  font-family: Manrope, sans-serif;
  font-style: normal;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid #F7CF75;
  border-radius: 8px;
}
.featured-pill::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #F58220;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}
.featured-refresh { display: none; }

.featured-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .86fr);
  gap: 20px;
  align-items: stretch;
  min-width: 0;
}
.feat-main-col, .feat-side-col { min-width: 0; }
.feat-side, .feat-side .feat-body { min-width: 0; }
.feat-card {
  counter-increment: rank;
  position: relative;
}

/* Eyebrow comum com prefixo "Nº 0X" */
.feat-card .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 0;
  background: transparent;
  color: var(--hp-blue);
  font-family: Manrope, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.feat-card .section-label::before {
  content: "Nº 0" counter(rank);
  padding-right: 10px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

/* ── Card principal ── */
.feat-main {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition:
    transform .4s cubic-bezier(.16,1,.3,1),
    box-shadow .4s cubic-bezier(.16,1,.3,1),
    border-color .25s ease;
}
.feat-main:hover {
  transform: translateY(-3px);
  border-color: var(--hp-blue);
  box-shadow: 0 1px 2px rgba(10,78,122,.05), 0 22px 44px -12px rgba(10,78,122,.22);
}
.feat-main .feat-cover {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--hp-blue-soft);
}
.feat-main .feat-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.feat-main:hover .feat-cover img { transform: scale(1.04); }
.feat-main .feat-body { padding: 24px 28px 28px; }
.feat-main h3 {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: clamp(24px, 2.7vw, 34px);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
}
.feat-main h3 a {
  color: inherit;
  background-image: linear-gradient(var(--hp-blue), var(--hp-blue));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size .45s cubic-bezier(.16,1,.3,1), color .25s ease;
}
.feat-main:hover h3 a { color: var(--hp-blue); background-size: 100% 1px; }
.feat-main p {
  margin: 14px 0 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

/* ── Coluna lateral: um único quadro com até 3 matérias ── */
.feat-side-col {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}
.feat-side-col > .feat-card + .feat-card { border-top: 1px solid var(--line); }

.feat-side {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  position: relative;
  transition: background .25s ease;
  width: 100%;
}
.feat-side::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 16px;
  width: 22px;
  height: 2px;
  background: var(--hp-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.feat-side:hover { background: var(--soft); }
.feat-side:hover::after { transform: scaleX(1); }
.feat-side .feat-body { padding: 0; min-width: 0; }
.feat-side .section-label { margin-bottom: 8px; }
.feat-side h3 {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 14.5px;
  line-height: 1.22;
  letter-spacing: -.01em;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: normal;
  overflow-wrap: anywhere;
}
.feat-side h3 a { color: inherit; transition: color .2s ease; }
.feat-side:hover h3 a { color: var(--hp-blue); }
.feat-side .feat-cover {
  display: block;
  width: 96px;
  height: 96px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--hp-blue-soft);
  flex-shrink: 0;
}
.feat-side .feat-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.16,1,.3,1);
}
.feat-side:hover .feat-cover img { transform: scale(1.06); }
.feat-side .feat-meta { font-size: 12.5px; margin-top: 6px; }

.promo-carousel {
  position: relative;
  margin: 26px 0 8px;
}
.promo-track {
  position: relative;
  display: grid;
  grid-template-areas: "stack";
  overflow: hidden;
  border-radius: 18px;
}
.promo-track > .promo-slide {
  grid-area: stack;
  margin: 0 !important;
  align-self: stretch;
  opacity: 0;
  transform: translateX(40px) scale(.98);
  filter: blur(4px);
  transition:
    opacity .6s cubic-bezier(.16,1,.3,1),
    transform .6s cubic-bezier(.16,1,.3,1),
    filter .6s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
  visibility: hidden;
  z-index: 1;
}
.promo-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
  visibility: visible;
  z-index: 2;
}
.promo-slide.is-prev { transform: translateX(-40px) scale(.98); }
.promo-slide.is-next { transform: translateX(40px) scale(.98); }

.promo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  background: rgba(10, 78, 122, .55);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}
.promo-nav:hover { background: rgba(10, 78, 122, .85); transform: translateY(-50%) scale(1.06); }
.promo-nav:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.promo-nav--prev { left: 12px; }
.promo-nav--next { right: 12px; }

.promo-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
}
.promo-dot {
  pointer-events: auto;
  width: 28px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background .25s ease, width .25s ease;
}
.promo-dot:hover { background: rgba(255,255,255,.7); }
.promo-dot.is-active { background: #fff; width: 38px; }
.promo-dot:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

.app-promo {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 32px;
  align-items: center;
  margin: 26px 0 8px;
  padding: 30px clamp(22px, 4vw, 42px) 50px;
  border: 1px solid #C8DBEA;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10,78,122,.98) 0%, rgba(13,111,175,.96) 52%, rgba(16,185,129,.88) 100%),
    #0A4E7A;
  color: #fff;
  box-shadow: 0 18px 45px rgba(10, 78, 122, .16);
}

.promo-slide--publish {
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(245, 130, 32, .55) 0%, transparent 55%),
    linear-gradient(135deg, rgba(16, 86, 64, .98) 0%, rgba(16,185,129,.94) 45%, rgba(13,111,175,.92) 100%),
    #0A4E7A;
  border-color: #B8E4D2;
}

.publish-card {
  position: relative;
  width: min(100%, 320px);
  padding: 16px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  box-shadow: 0 24px 50px rgba(4, 35, 56, .28);
  transform: rotate(-1.5deg);
  display: grid;
  gap: 14px;
}
.publish-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.publish-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hp-blue), var(--hp-green));
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .02em;
}
.publish-author { display: grid; line-height: 1.1; }
.publish-author strong { color: var(--ink); font-size: 13px; }
.publish-author small { color: var(--muted); font-size: 11px; font-weight: 600; }
.publish-tag {
  margin-left: auto;
  padding: 4px 8px;
  border-radius: 999px;
  background: #FFF4D8;
  color: #7A3E00;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.publish-card-title { display: grid; gap: 7px; }
.publish-line {
  display: block;
  height: 9px;
  border-radius: 6px;
  background: linear-gradient(90deg, #DCE7EF, #EEF4F8);
}
.publish-line--lg { height: 14px; width: 92%; background: linear-gradient(90deg, #0A4E7A, #0D6FAF); }
.publish-line--md { height: 14px; width: 70%; background: linear-gradient(90deg, #0A4E7A, #10B981); }
.publish-line--sm { width: 55%; }
.publish-card-body { display: grid; gap: 6px; }
.publish-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
  padding-top: 12px;
  border-top: 1px dashed #DCE7EF;
}
.publish-cta {
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--hp-blue), var(--hp-green));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  box-shadow: 0 8px 18px rgba(10, 78, 122, .25);
}
.publish-meta { color: var(--muted); font-size: 11px; font-weight: 700; }

.publish-badge {
  position: absolute;
  left: -6px;
  bottom: 18px;
  min-width: 150px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 14px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  padding: 10px 14px;
  box-shadow: 0 16px 30px rgba(4, 35, 56, .22);
  transform: rotate(2deg);
}
.publish-badge span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.publish-badge strong {
  display: block;
  margin-top: 2px;
  color: var(--hp-green);
  font-size: 13px;
}

@media (max-width: 980px) {
  .promo-nav { display: none; }
  .promo-dots { bottom: 10px; }
}
@media (max-width: 640px) {
  .publish-badge { left: auto; right: 0; bottom: -6px; }
}
@media (prefers-reduced-motion: reduce) {
  .promo-slide { transition: none; }
}

.app-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 36px 36px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  opacity: .34;
  pointer-events: none;
}

.app-promo-copy,
.app-promo-visual {
  position: relative;
  z-index: 1;
}

.app-promo-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #EAF7FF;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.app-promo h2 {
  max-width: 740px;
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.05;
  letter-spacing: 0;
}

.app-promo p {
  max-width: 650px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 16px;
  line-height: 1.65;
}

.app-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.app-promo .btn-primary,
.app-promo .btn-secondary {
  min-height: 48px;
}

.app-promo-main {
  background: #fff;
  color: var(--hp-blue);
  box-shadow: 0 8px 18px rgba(4, 35, 56, .16);
}

.app-promo-main:hover {
  background: #F4FAFD;
  color: var(--hp-blue);
}

.app-promo-secondary {
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.1);
  color: #fff;
}

.app-promo-secondary:hover {
  background: rgba(255,255,255,.18);
  color: #fff;
}

.app-promo-visual {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-promo-device {
  width: min(100%, 310px);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  color: var(--ink);
  box-shadow: 0 24px 50px rgba(4, 35, 56, .28);
  overflow: hidden;
  transform: rotate(-2deg);
}

.app-promo-device-top {
  display: flex;
  gap: 6px;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  background: #F3F7FA;
  border-bottom: 1px solid var(--line);
}

.app-promo-device-top span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F58220;
}

.app-promo-device-top span:nth-child(2) { background: #10B981; }
.app-promo-device-top span:nth-child(3) { background: #0D6FAF; }

.app-promo-device-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.app-promo-metric,
.app-promo-stats div {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}

.app-promo-metric small,
.app-promo-stats small,
.app-promo-badge span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.app-promo-metric strong {
  display: block;
  margin-top: 4px;
  color: var(--hp-blue);
  font-size: 26px;
  line-height: 1;
}

.app-promo-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.app-promo-stats strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 18px;
}

.app-promo-progress {
  height: 10px;
  border-radius: 999px;
  background: var(--hp-blue-soft);
  overflow: hidden;
}

.app-promo-progress span {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--hp-blue), var(--hp-green));
}

.app-promo-badge {
  position: absolute;
  right: 8px;
  bottom: 28px;
  min-width: 140px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 14px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  padding: 12px 14px;
  box-shadow: 0 16px 30px rgba(4, 35, 56, .22);
}

.app-promo-badge strong {
  display: block;
  margin-top: 2px;
  color: var(--hp-green);
  font-size: 16px;
}

/* ─── Slide Finanças ─── */
.promo-slide--finance {
  background:
    radial-gradient(130% 130% at 0% 100%, rgba(16,185,129,.5) 0%, transparent 52%),
    linear-gradient(135deg, rgba(10,78,122,.98) 0%, rgba(13,111,175,.95) 55%, rgba(16,86,64,.95) 100%),
    #0A4E7A;
  border-color: #A9D8C8;
}

.fin-card {
  position: relative;
  width: min(100%, 320px);
  padding: 18px;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  color: var(--ink);
  box-shadow: 0 24px 50px rgba(4, 35, 56, .28);
  transform: rotate(1.6deg);
  display: grid;
  gap: 15px;
}
.fin-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.fin-card-period small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.fin-card-period strong {
  display: block;
  margin-top: 4px;
  color: var(--hp-green);
  font-size: 26px;
  line-height: 1;
}
.fin-trend {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: #E7F8F0;
  color: #0B7A57;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
}
.fin-bars { display: grid; gap: 9px; }
.fin-bar {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 10px;
}
.fin-bar-label { color: var(--muted); font-size: 11px; font-weight: 700; }
.fin-bar-track {
  height: 9px;
  border-radius: 999px;
  background: var(--hp-blue-soft);
  overflow: hidden;
}
.fin-bar-fill { display: block; height: 100%; border-radius: inherit; }
.fin-bar-fill--in  { background: linear-gradient(90deg, var(--hp-blue), var(--hp-green)); }
.fin-bar-fill--out { background: linear-gradient(90deg, #F58220, #F2A65A); }
.fin-cats {
  display: grid;
  gap: 8px;
  padding-top: 13px;
  border-top: 1px dashed #DCE7EF;
}
.fin-cat {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}
.fin-cat b { margin-left: auto; font-weight: 800; color: var(--hp-blue); }
.fin-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.fin-dot--1 { background: var(--hp-blue-2); }
.fin-dot--2 { background: #F58220; }
.fin-dot--3 { background: var(--hp-green); }

.fin-badge {
  position: absolute;
  left: -10px;
  bottom: -14px;
  min-width: 150px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 14px;
  background: rgba(255,255,255,.95);
  color: var(--ink);
  padding: 10px 14px;
  box-shadow: 0 16px 30px rgba(4, 35, 56, .22);
  transform: rotate(-2.5deg);
}
.fin-badge span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.fin-badge strong {
  display: block;
  margin-top: 2px;
  color: var(--hp-green);
  font-size: 13px;
}

@media (max-width: 980px) {
  .featured-grid { grid-template-columns: minmax(0, 1fr); }
  .feat-main h3 { font-size: clamp(22px, 5vw, 30px); }
  .app-promo { grid-template-columns: 1fr; }
  .app-promo-visual { min-height: 230px; }
}
@media (max-width: 640px) {
  .featured-head { padding-bottom: 14px; }
  .feat-main .feat-body { padding: 20px 18px 22px; }
  .feat-side { grid-template-columns: minmax(0, 1fr) 92px; padding: 18px; gap: 14px; }
  .feat-side .feat-cover { width: 92px; height: 92px; }
  .app-promo { padding: 24px 18px; border-radius: 14px; }
  .app-promo-actions { flex-direction: column; }
  .app-promo .btn-primary,
  .app-promo .btn-secondary { width: 100%; }
  .app-promo-device { transform: none; }
  .app-promo-badge { right: 0; bottom: 10px; }
  .fin-card { transform: none; }
  .fin-badge { left: auto; right: 0; bottom: -6px; }
}
@media (max-width: 420px) {
  .feat-side { grid-template-columns: minmax(0, 1fr) 76px; }
  .feat-side .feat-cover { width: 76px; height: 76px; }
  .feat-side h3 { font-size: 13.5px; -webkit-line-clamp: 3; }
}

/* ── Clusters editoriais por categoria ─────────────────────────────
   Layout inspirado em portais de notícias: cada categoria forma um
   bloco com manchetes hero à esquerda e lista de chamadas à direita.
   --------------------------------------------------------------- */
.clusters {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin: 8px 0 56px;
}

.cluster + .cluster {
  position: relative;
}
.cluster + .cluster::before {
  content: '';
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 4px;
  background: var(--hp-blue);
  opacity: .25;
  border-radius: 4px;
}

.cluster-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 26px;
}

.cluster-head h2 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 16px;
}
.cluster-head h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 3px;
  width: 4px;
  background: var(--hp-blue);
  border-radius: 3px;
}

.cluster-more {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: Manrope, sans-serif;
  font-weight: 800;
  font-size: 13.5px;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 6px 4px;
  transition: color .2s ease;
}
.cluster-more:hover { color: var(--hp-blue); }
.cluster-more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  transition: background .25s ease, transform .35s ease;
}
.cluster-more:hover .cluster-more-icon {
  background: var(--hp-blue);
  transform: rotate(90deg);
}

.cluster-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
}

.cluster-hero-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.cluster-hero {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  align-items: start;
}
.cluster-hero-cover {
  display: block;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
  background: var(--soft);
  position: relative;
}
.cluster-hero-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .04);
  pointer-events: none;
}
.cluster-hero-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.cluster-hero-cover:hover img { transform: scale(1.05); }

.cluster-hero-body { min-width: 0; }

.cluster-eyebrow {
  display: inline-block;
  font-family: Manrope, sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hp-blue);
  margin-bottom: 6px;
}

.cluster-hero h3 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.18;
  margin: 4px 0 12px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.cluster-hero h3 a {
  color: inherit;
  background-image: linear-gradient(var(--hp-blue), var(--hp-blue));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition: background-size .25s ease, color .2s ease;
}
.cluster-hero h3 a:hover {
  color: var(--hp-blue);
  background-size: 100% 1px;
}

.cluster-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  align-items: center;
  font-family: Manrope, sans-serif;
  font-size: 12.5px;
  color: var(--muted);
}
.cluster-meta .cluster-author {
  color: var(--ink);
  font-weight: 700;
}
.cluster-meta .cluster-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--line-strong);
  display: inline-block;
}

.cluster-list-col {
  display: flex;
  flex-direction: column;
}
.cluster-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 18px 4px 18px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  align-items: start;
  transition: padding .25s ease;
}
.cluster-row:last-child { border-bottom: 0; }
.cluster-row:hover { padding-left: 6px; }

.cluster-row-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  margin-top: 2px;
  transition: background .25s ease, transform .25s ease;
}
.cluster-row-icon svg { width: 14px; height: 14px; }
.cluster-row:hover .cluster-row-icon {
  background: var(--hp-blue);
  transform: translateX(3px);
}

.cluster-row h3 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  font-size: 18.5px;
  line-height: 1.22;
  margin: 2px 0 8px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.cluster-row:hover h3 { color: var(--hp-blue); }

@media (max-width: 980px) {
  .cluster-grid { grid-template-columns: 1fr; gap: 28px; }
  .cluster-list-col { margin-top: 4px; }
}
@media (max-width: 640px) {
  .clusters { gap: 48px; }
  .cluster-hero { grid-template-columns: 124px 1fr; gap: 14px; }
  .cluster-hero h3 { font-size: 17px; }
  .cluster-row { grid-template-columns: 32px 1fr; gap: 14px; padding: 16px 0; }
  .cluster-row-icon { width: 30px; height: 30px; }
  .cluster-row h3 { font-size: 16px; }
  .cluster-head h2 { padding-left: 12px; font-size: 18px; }
  .cluster-head h2::before { width: 3px; }
}

/* ── Bloco "Mais recentes" ──────────────────────────────────
   Reaproveita o cabeçalho do cluster, mas usa um grid 2-colunas
   de cards horizontais ao invés do split hero/lista.
   ----------------------------------------------------------- */
.cluster--recentes { margin-top: 8px; }

.recentes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
}

.recente-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 22px;
  align-items: start;
  color: inherit;
  transition: transform .25s ease;
}
.recente-card:hover { transform: translateY(-2px); }

.recente-card-cover {
  display: block;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
  background: var(--soft);
  position: relative;
}
.recente-card-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .04);
  pointer-events: none;
}
.recente-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.recente-card:hover .recente-card-cover img { transform: scale(1.05); }

.recente-card-body { min-width: 0; }

.recente-card h3 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.2;
  margin: 4px 0 10px;
  color: var(--ink);
  letter-spacing: -0.005em;
  transition: color .2s ease;
}
.recente-card:hover h3 { color: var(--hp-blue); }

@media (max-width: 980px) {
  .recentes-grid { gap: 22px 28px; }
  .recente-card { grid-template-columns: 160px 1fr; gap: 16px; }
}
@media (max-width: 640px) {
  .recentes-grid { grid-template-columns: 1fr; gap: 22px; }
  .recente-card { grid-template-columns: 124px 1fr; gap: 14px; }
  .recente-card h3 { font-size: 16.5px; }
}

/* ── Hero introdutório do portal (SEO) ──
   Visualmente oculto mas presente no DOM: lido pelo Google e por leitores de tela.
   Padrão "visually-hidden" — não é cloaking porque o texto é descritivo, legítimo
   e acessível a tecnologias assistivas. */
.news-hero {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Banner promo compacto no meio da notícia ── */
.post-promo {
  margin: 28px 0;
}
.post-promo .promo-carousel { margin: 0; }
.post-promo .app-promo {
  margin: 0;
  padding: 14px clamp(16px, 3vw, 26px) 30px;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 220px);
  gap: 18px;
  border-radius: 14px;
}
.post-promo .app-promo-kicker {
  font-size: 11px;
  padding: 3px 9px;
  margin-bottom: 6px;
}
.post-promo .app-promo h2 {
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.25;
  margin: 4px 0 6px;
}
.post-promo .app-promo p {
  font-size: 13px;
  line-height: 1.45;
  margin: 0 0 10px;
}
.post-promo .app-promo-actions { gap: 8px; }
.post-promo .app-promo .btn-primary,
.post-promo .app-promo .btn-secondary {
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 10px;
}
.post-promo .app-promo-visual { min-height: 0; transform: scale(.72); transform-origin: center right; }
.post-promo .app-promo-badge,
.post-promo .publish-badge,
.post-promo .fin-badge { transform: scale(.85); transform-origin: bottom right; }
.post-promo .promo-nav { width: 32px; height: 32px; }
.post-promo .promo-dots { bottom: 8px; }
.post-promo .promo-dot { width: 20px; height: 4px; }
.post-promo .promo-dot.is-active { width: 28px; }
@media (max-width: 980px) {
  .post-promo .app-promo { grid-template-columns: 1fr; padding-bottom: 32px; }
  .post-promo .app-promo-visual { display: none; }
}

.featured {
  padding: 34px 0 44px;
  border-bottom: 1px solid #D7E0E8;
  margin-bottom: 10px;
}
.featured-head {
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 0;
  border-bottom: 0;
}
.featured-head h2 {
  gap: 12px;
  font-style: normal;
  letter-spacing: 0;
}
.featured-pill {
  padding: 6px 10px;
  background: #FFF4D8;
  color: #7A3E00;
  letter-spacing: .08em;
  border: 1px solid #F7CF75;
  border-radius: 8px;
}
.featured-pill::before {
  width: 8px;
  height: 8px;
  background: #F58220;
  box-shadow: none;
  animation: none;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}
.featured-grid {
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .86fr);
  gap: 20px;
}
.feat-card { position: relative; }
.feat-card .section-label {
  margin: 0 0 10px;
  color: #0D6FAF;
  letter-spacing: .08em;
}
.feat-card .section-label::before {
  content: "0" counter(rank);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding-right: 0;
  border: 1px solid #B7CBD9;
  background: #F5FAFD;
  color: var(--hp-blue);
  font-family: Manrope, sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.feat-main {
  display: grid;
  grid-template-columns: minmax(260px, .98fr) minmax(0, 1fr);
  min-height: 360px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F6FAFC 100%);
  border: 1px solid #D7E0E8;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(10, 78, 122, .09);
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s cubic-bezier(.16,1,.3,1);
}
.feat-main:hover {
  border-color: #D7E0E8;
  box-shadow: 0 26px 54px rgba(10, 78, 122, .16);
}
.feat-main .feat-cover {
  height: 100%;
  min-height: 280px;
  aspect-ratio: auto;
}
.feat-main .feat-cover:empty {
  background:
    linear-gradient(135deg, rgba(10,78,122,.84), rgba(13,111,175,.62)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.16) 0 1px, transparent 1px 16px);
}
.feat-main .feat-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}
.feat-main h3 { letter-spacing: 0; }
.feat-main h3 a {
  background-image: none;
  transition: color .25s ease;
}
.feat-main:hover h3 a { color: var(--hp-blue); background-size: auto; }
.feat-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.feat-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.feat-meta span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #F58220;
}
.feat-side-col {
  gap: 12px;
  background: #F8FBFD;
  border: 1px solid #D7E0E8;
  border-radius: 8px;
  padding: 12px;
}
.feat-side-col > .feat-card + .feat-card { border-top: 0; }
.feat-side {
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
  padding: 12px;
  min-height: 150px;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.feat-side::after { display: none; }
.feat-side:hover {
  background: #fff;
  border-color: #B7CBD9;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(10, 78, 122, .1);
}
.feat-side .feat-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2px 0;
}
.feat-side h3 {
  font-size: 18px;
  letter-spacing: 0;
}
.feat-side .feat-cover {
  width: 104px;
  height: 100%;
  min-height: 126px;
  order: -1;
}
.feat-side .feat-cover:empty {
  background:
    linear-gradient(135deg, #EAF4FA, #FDF5E7),
    repeating-linear-gradient(45deg, rgba(10,78,122,.1) 0 2px, transparent 2px 14px);
}
@media (max-width: 980px) {
  .featured-grid { grid-template-columns: minmax(0, 1fr); }
  .feat-main { grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .feat-main .feat-cover { aspect-ratio: 16 / 9; height: auto; min-height: 0; }
}
@media (max-width: 640px) {
  .featured-head { padding-bottom: 14px; }
  .featured-head h2 { align-items: flex-start; flex-direction: column; gap: 8px; }
  .feat-main .feat-body { padding: 22px 18px 24px; }
  .feat-side { grid-template-columns: 88px minmax(0, 1fr); padding: 10px; gap: 12px; min-height: 124px; }
  .feat-side .feat-cover { width: 88px; min-height: 104px; height: 100%; }
  .feat-meta { gap: 6px 10px; }
}
@media (max-width: 600px) {
  .feat-side {
    grid-template-columns: minmax(0, 1fr);
    padding: 12px;
    gap: 10px;
    min-height: 0;
  }
  .feat-side .feat-cover {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
  .feat-side .feat-body { width: 100%; min-width: 0; padding: 4px 4px 6px; }
  .feat-side h3 { font-size: 16px; -webkit-line-clamp: 3; }
}

.latest-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 28px;
}
.latest-head--cta {
  justify-content: flex-end;
  padding-top: 32px;
  padding-bottom: 4px;
}
.latest-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  letter-spacing: -.2px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
  padding: 20px 0 48px;
}
.posts-loading, .posts-error {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
}

.post-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform .15s ease, box-shadow .15s ease;
}
.post-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(10, 78, 122, .12);
}
.card-cover {
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--hp-blue-soft);
  overflow: hidden;
}
.card-cover img { width: 100%; height: 100%; object-fit: cover; }
.card-cover--placeholder {
  background:
    repeating-linear-gradient(45deg, rgba(10,78,122,.08) 0 2px, transparent 2px 18px),
    linear-gradient(135deg, #DFF1FA, #E9F4EC);
}
.post-card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.post-card-body h3 { margin: 0; font-size: 19px; line-height: 1.25; color: var(--hp-blue); }
.post-card-body p { margin: 0; color: var(--muted); font-size: 14px; }
.post-meta {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.empty-state {
  text-align: center;
  padding: 60px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.empty-state h2 { color: var(--hp-blue); margin: 0 0 8px; }
.empty-state p { color: var(--muted); margin: 0 0 18px; }

/* Minhas publicações */
.my-posts { padding: 30px 0 60px; }
.my-posts-list { display: grid; gap: 12px; }
.my-post-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.my-post-info strong { display: block; color: var(--hp-blue); font-size: 15px; margin-bottom: 6px; }
.my-post-meta { display: flex; gap: 10px; align-items: center; color: var(--muted); font-size: 12px; font-weight: 700; }
.my-post-actions { display: flex; gap: 14px; align-items: center; font-weight: 800; font-size: 13px; }
.my-post-actions a { color: var(--hp-blue); }
.link-danger { background: none; border: 0; color: #b42318; font-weight: 800; cursor: pointer; font-size: 13px; padding: 0; }
.link-danger:hover { color: #7a0c0c; }

.status-badge {
  display: inline-flex;
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.status-ok { background: #DCFCE7; color: #166534; }
.status-pending { background: #FEF3C7; color: #92400E; }
.status-rejected { background: #FEE2E2; color: #991B1B; }

/* ─── Página de post individual ──────────────── */
.post-page { padding: 36px 0 60px; }
.post-article {
  max-width: 760px;
  margin: 0 auto;
}
.post-title {
  margin: 6px 0 18px;
  color: var(--hp-blue);
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.06;
}
.post-byline {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.post-cover {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 12px;
  margin: 8px 0 28px;
}
.post-content {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
}
.post-content h2 { color: var(--hp-blue); margin: 32px 0 12px; font-size: 26px; }
.post-content h3 { color: var(--hp-blue); margin: 26px 0 10px; font-size: 21px; }
.post-content p { margin: 0 0 16px; }
/* Imagens dentro do conteúdo — tamanhos padronizados por orientação */
.post-content img {
  display: block;
  margin: 22px auto;
  border-radius: 10px;
  background: var(--soft);
  box-shadow: 0 4px 16px rgba(10, 78, 122, .08);
}
.zoomable-img {
  cursor: zoom-in;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.zoomable-img:hover {
  transform: translateY(-2px);
  filter: saturate(1.04);
  box-shadow: 0 12px 28px rgba(10, 78, 122, .16);
}
.zoomable-img:focus-visible {
  outline: 3px solid rgba(245, 130, 32, .65);
  outline-offset: 4px;
}
/* Placeholder enquanto a imagem não classificou (evita layout enorme) */
.post-content img.content-img:not(.img-landscape):not(.img-landscape-soft):not(.img-portrait):not(.img-square) {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
/* 16:9 — paisagem larga, ocupa a largura toda da coluna */
.post-content img.img-landscape {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
/* 4:3 — paisagem moderada */
.post-content img.img-landscape-soft {
  width: 100%;
  max-width: 640px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
/* 9:16 — retrato (stories/reels), centralizada e estreita */
.post-content img.img-portrait {
  width: auto;
  max-width: 360px;
  height: auto;
  max-height: 640px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}
/* 1:1 — quadrada */
.post-content img.img-square {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media (max-width: 560px) {
  .post-content img.img-portrait { max-width: 260px; max-height: 480px; }
  .post-content img.img-square   { max-width: 100%; }
}
.post-content a { color: var(--hp-blue-2); text-decoration: underline; }
.post-content ul, .post-content ol { padding-left: 24px; margin: 0 0 16px; }
.post-back { max-width: 760px; margin: 30px auto 0; }
.post-back a { color: var(--hp-blue); font-weight: 800; }

body.lightbox-open { overflow: hidden; }
.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 72px 76px 44px;
  background:
    radial-gradient(circle at 50% 0%, rgba(13, 111, 175, .24), transparent 34%),
    rgba(4, 18, 30, .92);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
}
.image-lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.image-lightbox-frame {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: min(1120px, 100%);
  max-height: 100%;
}
.image-lightbox-frame img {
  max-width: 100%;
  max-height: calc(100vh - 148px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #06131E;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .45);
}
.image-lightbox-frame figcaption {
  min-height: 20px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.image-lightbox-close,
.image-lightbox-nav {
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .18s ease, transform .18s ease;
}
.image-lightbox-close:hover,
.image-lightbox-nav:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-1px);
}
.image-lightbox-close svg,
.image-lightbox-nav svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.image-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border-radius: 8px;
}
.image-lightbox-nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 64px;
  border-radius: 8px;
  transform: translateY(-50%);
}
.image-lightbox-nav:hover { transform: translateY(calc(-50% - 1px)); }
.image-lightbox-prev { left: 18px; }
.image-lightbox-next { right: 18px; }

@media (max-width: 700px) {
  .image-lightbox { padding: 68px 14px 36px; }
  .image-lightbox-frame img { max-height: calc(100vh - 138px); }
  .image-lightbox-nav {
    top: auto;
    bottom: 14px;
    width: 46px;
    height: 46px;
    transform: none;
  }
  .image-lightbox-nav:hover { transform: translateY(-1px); }
  .image-lightbox-prev { left: calc(50% - 58px); }
  .image-lightbox-next { right: calc(50% - 58px); }
}

/* ─── Barra de engajamento (curtir + compartilhar) ─── */
.engage-bar {
  max-width: 760px;
  margin: 36px auto 0;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
}
.engage-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, color .12s ease;
}
.engage-btn:hover { background: var(--hp-blue-soft); }
.engage-btn:active { transform: scale(.96); }
.engage-btn svg { width: 18px; height: 18px; fill: currentColor; }

.engage-like svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.engage-like.is-liked {
  background: #FFE4E6;
  border-color: #FCA5A5;
  color: #B42318;
}
.engage-like.is-liked svg { fill: #E11D48; stroke: #E11D48; }
.engage-count {
  min-width: 18px;
  padding: 1px 7px;
  border-radius: 999px;
  background: var(--hp-blue-soft);
  color: var(--hp-blue);
  font-size: 12px;
  font-weight: 800;
}
.engage-like.is-liked .engage-count { background: #FECDD3; color: #9F1239; }

.engage-share { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.engage-share-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin-right: 4px;
}
.share-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  min-height: 0;
}
.share-btn[data-share="whatsapp"]:hover  { background: #25D366; color: #fff; border-color: #25D366; }
.share-btn[data-share="facebook"]:hover  { background: #1877F2; color: #fff; border-color: #1877F2; }
.share-btn[data-share="x"]:hover         { background: #000;    color: #fff; border-color: #000; }
.share-btn[data-share="instagram"]:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; border-color: transparent; }
.share-btn[data-share="copy"]:hover      { background: var(--hp-blue); color: #fff; border-color: var(--hp-blue); }

.share-msg {
  font-size: 13px;
  font-weight: 700;
  color: var(--hp-green);
  margin-left: 4px;
}

@media (max-width: 560px) {
  .engage-bar { padding: 12px 14px; gap: 12px; }
  .engage-share-label { display: none; }
}

/* ─── Comentários ─────────────────────────────── */
.comments-section {
  max-width: 760px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.comments-header h2 { margin: 0 0 18px; color: var(--hp-blue); font-size: 22px; }

.comment-form {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--soft);
}
.comment-form textarea {
  width: 100%;
  min-height: 90px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  font: inherit;
  resize: vertical;
}
.comment-form textarea:focus-visible { outline: 2px solid var(--hp-blue); outline-offset: 2px; border-color: var(--hp-blue); box-shadow: 0 0 0 3px rgba(10,78,122,.12); }
.comment-form-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.comment-msg { font-size: 13px; color: var(--muted); font-weight: 700; }

.comment-login {
  margin-bottom: 24px;
  padding: 14px 18px;
  border: 1px dashed var(--line-strong);
  border-radius: 10px;
  background: var(--soft);
  text-align: center;
  color: var(--muted);
}
.comment-login a { color: var(--hp-blue); font-weight: 800; text-decoration: underline; }

.comments-list { display: grid; gap: 18px; }
.comments-empty {
  text-align: center;
  padding: 24px 0;
  color: var(--muted);
}

.comment-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.comment-item:last-child { border-bottom: 0; }
.comment-avatar {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--hp-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}
.comment-body { flex: 1; min-width: 0; }
.comment-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.comment-head strong { color: var(--hp-blue); font-size: 14px; }
.comment-head time { color: var(--muted); font-size: 12px; font-weight: 700; }
.comment-del {
  margin-left: auto;
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  line-height: 1;
}
.comment-del:hover { color: #b42318; }
.comment-body p {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* ─── Editor ────────────────────────────────── */
.editor-page { padding: 32px 0 60px; }
.auth-required {
  max-width: 480px;
  margin: 60px auto;
  text-align: center;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.auth-required h2 { color: var(--hp-blue); margin: 0 0 8px; }
.auth-required p { color: var(--muted); margin: 0 0 18px; }

.editor-form {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}
.editor-header h1 { color: var(--hp-blue); margin: 0 0 6px; }
.editor-header p { color: var(--muted); margin: 0; }

.field { display: grid; gap: 6px; }
.field > span { font-size: 13px; font-weight: 800; color: var(--ink); }
.field input[type=text], .field input[type=email], .field select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
}
.field input:focus-visible, .field select:focus-visible { outline: 2px solid var(--hp-blue); outline-offset: 2px; border-color: var(--hp-blue); box-shadow: 0 0 0 3px rgba(10,78,122,.12); }
.field-row { display: grid; grid-template-columns: 220px 1fr; gap: 16px; }

/* Grid de capas (até 3) */
.covers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cover-slot {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  background: var(--soft);
  border: 1px solid var(--line-strong);
}
.cover-slot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cover-slot--add {
  border: 2px dashed var(--line-strong);
  background: var(--soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
}
.cover-slot--add:hover { border-color: var(--hp-blue); color: var(--hp-blue); }
.cover-add-icon { font-size: 28px; font-weight: 800; line-height: 1; }
.cover-add-text { font-size: 13px; font-weight: 800; }
.cover-add-sub { font-size: 11px; font-weight: 700; opacity: .7; }

.cover-badge {
  position: absolute;
  left: 8px;
  top: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(10, 78, 122, .9);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .3px;
}
.cover-slot-actions {
  position: absolute;
  right: 6px;
  top: 6px;
  display: flex;
  gap: 4px;
}
.cover-slot-actions button {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 0;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.cover-slot-actions button:hover { background: rgba(0,0,0,.85); }

.covers-hint { margin: 6px 0 0; font-size: 12px; color: var(--muted); }

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

/* Carrossel no post */
.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 460px;
  margin: 8px 0 28px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.carousel-track { position: absolute; inset: 0; }
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
}
.carousel-slide.active { opacity: 1; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(0,0,0,.5);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-nav:hover { background: rgba(0,0,0,.75); }
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-dots {
  position: absolute;
  left: 0; right: 0; bottom: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  padding: 0;
}
.carousel-dot.active { background: #fff; }

/* Rich text editor */
.rt-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: var(--soft);
}
.rt-toolbar button {
  min-width: 36px;
  height: 32px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
}
.rt-toolbar button:hover { background: #fff; border-color: var(--line-strong); }
.rt-sep { width: 1px; background: var(--line); margin: 4px 6px; }

.rt-editor {
  min-height: 320px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 0 0 8px 8px;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
}
.rt-editor:focus-visible { outline: 2px solid var(--hp-blue); outline-offset: 2px; border-color: var(--hp-blue); box-shadow: 0 0 0 3px rgba(10,78,122,.12); }
.rt-editor:empty::before {
  content: attr(data-placeholder);
  color: var(--muted);
}
.rt-editor h2 { color: var(--hp-blue); font-size: 24px; margin: 18px 0 8px; }
.rt-editor h3 { color: var(--hp-blue); font-size: 19px; margin: 16px 0 8px; }
.rt-editor img { max-width: 100%; height: auto; border-radius: 8px; margin: 12px 0; }
.rt-editor a { color: var(--hp-blue-2); text-decoration: underline; }

.editor-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.editor-msg { color: var(--muted); font-size: 13px; font-weight: 700; }
.editor-actions { display: flex; gap: 10px; }

body.notice-open { overflow: hidden; }
.editor-notice {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(15, 23, 42, .58);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
.editor-notice.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.editor-notice-card {
  width: min(420px, 100%);
  padding: 30px 28px 26px;
  border: 1px solid rgba(10, 78, 122, .16);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(15, 23, 42, .22), 0 4px 12px rgba(15, 23, 42, .08);
  text-align: center;
  transform: translateY(10px) scale(.98);
  transition: transform .22s cubic-bezier(.16,1,.3,1);
}
.editor-notice.open .editor-notice-card { transform: translateY(0) scale(1); }
.editor-notice-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E6F1F8, #DCFCE7);
  color: var(--hp-blue);
  box-shadow: 0 0 0 6px rgba(10, 78, 122, .08);
}
.editor-notice-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.editor-notice-card h2 {
  margin: 0 0 8px;
  color: var(--hp-blue);
  font-family: Manrope, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}
.editor-notice-card p {
  margin: 0 auto 20px;
  max-width: 32ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.editor-notice-card .btn-primary {
  min-width: 120px;
}

@media (max-width: 760px) {
  .blog-hero { grid-template-columns: 1fr; align-items: start; }
  .field-row { grid-template-columns: 1fr; }
  .cta-new span { display: none; }
  .cta-new { padding: 10px 12px; }
}

/* Notícias relacionadas (Leia também) */
.related-posts { max-width: 760px; margin: 56px auto 32px; }
.related-head h2 { font-size: 22px; margin: 0 0 16px; padding-bottom: 8px; border-bottom: 2px solid #e6eaef; color: #0A4E7A; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 20px; }
.related-card { background: #fff; border: 1px solid #e6eaef; border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: transform .15s, box-shadow .15s; }
.related-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10,78,122,.08); }
.related-cover { display: block; aspect-ratio: 16/9; overflow: hidden; background: #f1f4f7; }
.related-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.related-cover--placeholder { background: linear-gradient(135deg, #0A4E7A 0%, #4EC1FA 100%); }
.related-body { padding: 12px 14px 16px; display: flex; flex-direction: column; gap: 6px; }
.related-body h3 { font-size: 15px; line-height: 1.35; margin: 4px 0; }
.related-body h3 a { color: #1a1a1a; text-decoration: none; }
.related-body h3 a:hover { color: #0A4E7A; }
.related-meta { font-size: 12px; color: #6b7a8a; display: flex; gap: 8px; align-items: center; }
.related-meta time::before { content: "•"; margin-right: 8px; color: #c5ccd3; }

.comment-form-label {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .whatsapp-fab {
    animation: none;
  }
}
