html,
body,
body.hc-page {
  overflow-x: hidden;
}

body.hc-page {
  margin: 0;
  background: #ffffff;
  color: #1f2937;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hc-main-shell {
  padding-top: 5.5rem;
  background: #fbfcfe;
}

.hc-main-container {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 2rem 0 3rem;
}

.hc-home {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hc-home-hero {
  padding-top: 0.25rem;
}

.hc-eyebrow {
  margin: 0 0 0.5rem;
  color: #f7941e;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hc-home-hero h1 {
  margin: 0 0 0.75rem;
  color: #1b4472;
  font-size: 2.2rem;
  line-height: 1.1;
  font-weight: 700;
}

.hc-home-hero p {
  max-width: 48rem;
  margin: 0;
  color: #4b5563;
  font-size: 1.05rem;
  line-height: 1.6;
}

.hc-home-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
}

.hc-home-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid #dde4ea;
  border-radius: 0.9rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(27, 68, 114, 0.06);
}

.hc-home-card-link {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  align-items: center;
  min-height: 140px;
  padding: 1rem 1.25rem;
  text-decoration: none;
}

.hc-home-card-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-home-card-image {
  width: 100px;
  height: 100px;
  border-radius: 0.9rem;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #dbe4ec;
}

.hc-home-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hc-home-card-description {
  margin: 0;
  color: #1f2937;
  font-size: 1rem;
  line-height: 1.45;
}

.hc-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.hc-sidebar {
  position: sticky;
  top: 5.5rem;
  background: transparent;
}

.hc-sidebar-heading {
  margin-bottom: 0.9rem;
}

.hc-sidebar-heading-link {
  text-decoration: none;
}

.hc-sidebar-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hc-sidebar-menu li + li {
  margin-top: 0.35rem;
}

.hc-sidebar-link {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 0.45rem;
  color: #163c69;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.35;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.hc-sidebar-link:hover {
  background: rgba(255, 255, 255, 0.62);
}

.hc-sidebar-link.is-active {
  background: #d6dde4;
  color: #163c69;
  font-weight: 700;
}

.hc-content {
  min-width: 0;
}

.hc-breadcrumbs {
  margin-bottom: 1rem;
  color: #6b7280;
  font-size: 0.95rem;
}

.hc-breadcrumbs a {
  color: #1b4472;
  text-decoration: none;
}

.hc-breadcrumbs a:hover {
  text-decoration: underline;
}

.hc-breadcrumbs span {
  margin: 0 0.35rem;
}

.hc-section-header,
.hc-article-header {
  margin-bottom: 1.5rem;
}

.hc-section-header h1,
.hc-article-header h1 {
  margin: 0.8rem 0 0;
  color: #1b4472;
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 700;
}

.hc-section-header p {
  margin: 1rem 0 0;
  color: #4b5563;
  line-height: 1.6;
}

.hc-category-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.55rem 0.85rem;
  border-radius: 0.3rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.hc-category-badge--orange {
  background: #f08a00;
}

.hc-category-badge--gray {
  background: #8b8b8b;
}

.hc-article-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hc-article-list-item,
.hc-article-card,
.hc-related-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #dde4ea;
  border-radius: 0.9rem;
  box-shadow: 0 8px 24px rgba(27, 68, 114, 0.05);
}

.hc-article-list-item {
  padding: 1.25rem 1.4rem;
}

.hc-article-list-item h2 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  line-height: 1.3;
}

.hc-article-list-item a {
  color: #1b4472;
  text-decoration: none;
}

.hc-article-list-item a:hover {
  text-decoration: underline;
}

.hc-article-list-item p {
  margin: 0;
  color: #4b5563;
  line-height: 1.55;
}

.hc-article-card {
  padding: 1.75rem 1.9rem;
}

.hc-article-body {
  color: #1f2937;
}

.hc-article-body.jus-prose {
  max-width: 100%;
  min-width: 0;
  padding: 0;
}

.hc-article-body.jus-prose p {
  text-indent: 0 !important;
  margin-top: 0;
  margin-bottom: 1rem;
  text-align: left;
}

.hc-article-body.jus-prose ul,
.hc-article-body.jus-prose ol {
  margin: 1rem 0 1rem 1.25rem;
  padding-left: 1.15rem;
}

.hc-article-body.jus-prose ul li,
.hc-article-body.jus-prose ol li {
  margin: 0.35rem 0;
  padding-left: 0.15rem;
}

.hc-article-body.jus-prose ul li::marker {
  color: #f08a00;
}

.hc-article-body.jus-prose a {
  color: #1b4472;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hc-article-body.jus-prose img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 1rem auto;
  border-radius: 0.8rem;
}

.hc-article-body.jus-prose blockquote,
.hc-inline-quote {
  margin: 1.25rem 0;
  padding: 1rem 1.1rem;
  border-left: 4px solid #9fb7cf;
  border-radius: 0 0.6rem 0.6rem 0;
  background: #f4f8fb;
  color: #304256;
}

.hc-inline-quote p,
.hc-article-body.jus-prose blockquote p {
  margin: 0;
  font-style: italic;
}

.hc-callout {
  margin: 1rem 0;
  padding: 0.95rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
}

.hc-callout p {
  margin: 0 !important;
}

.hc-callout--soft {
  background: #f4f8fb;
  border-color: #cfe0ef;
}

.hc-callout--medium {
  background: #fff7e8;
  border-color: #f5c97a;
}

.hc-callout--strong {
  background: #fff0f0;
  border-color: #f0a6a6;
}

.hc-flagged-message {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
  padding: 0.65rem 0.9rem;
  border-radius: 0.65rem;
  background: #fff4d8;
  border: 1px solid #f1c96b;
  color: #775300;
  font-weight: 700;
}

.hc-see-also-title {
  margin-bottom: 0.4rem !important;
  font-weight: 700;
  color: #1b4472;
}

.hc-related-card {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
}

.hc-related-card h2 {
  margin: 0 0 0.85rem;
  color: #1b4472;
  font-size: 1.15rem;
  font-weight: 700;
}

.hc-related-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.hc-related-card a {
  color: #1b4472;
  text-decoration: none;
}

.hc-related-card a:hover {
  text-decoration: underline;
}

.hc-page footer.w-screen,
.hc-page footer .w-screen {
  width: 100% !important;
  max-width: 100% !important;
}

.hc-page footer .bg-gradient-to-b {
  background: #ffffff !important;
  height: 0 !important;
}

.hc-page footer .pt-14 {
  padding-top: 1.5rem !important;
}

@media (max-width: 1024px) {
  .hc-home-grid {
    grid-template-columns: 1fr;
  }

  .hc-shell {
    grid-template-columns: 1fr;
  }

  .hc-sidebar {
    position: static;
    top: auto;
  }

  .hc-home-card-link {
    grid-template-columns: 96px 1fr;
  }

  .hc-home-card-image {
    width: 84px;
    height: 84px;
  }
}

@media (max-width: 640px) {
  .hc-main-container {
    width: min(100%, calc(100% - 20px));
    padding: 1.25rem 0 2.5rem;
  }

  .hc-main-shell {
    padding-top: 5.25rem;
  }

  .hc-home-hero h1 {
    font-size: 1.8rem;
  }

  .hc-home-card-link {
    grid-template-columns: 1fr;
  }

  .hc-home-card-media {
    justify-content: flex-start;
  }

  .hc-article-card,
  .hc-related-card,
  .hc-article-list-item {
    padding: 1rem;
  }
}


/* Enhanced category/article layouts */
.hc-main-shell {
  background:
    radial-gradient(circle at top right, rgba(247, 148, 30, 0.10), transparent 28%),
    radial-gradient(circle at top left, rgba(117, 196, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #f6f9fc 0%, #edf3f8 100%);
}

.hc-shell--enhanced {
  gap: 2.25rem;
}

.hc-content--enhanced {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hc-sidebar-card {
  top: 6.1rem;
}

.hc-sidebar-card__inner {
  padding: 1rem;
  border: 1px solid rgba(201, 214, 228, 0.95);
  border-radius: 1.1rem;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 12px 32px rgba(27, 68, 114, 0.06);
  backdrop-filter: blur(8px);
}

.hc-sidebar-card__eyebrow {
  margin: 0 0 0.8rem;
  color: #6d7f92;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hc-sidebar-link {
  border: 1px solid transparent;
}

.hc-sidebar-link:hover {
  background: rgba(222, 236, 248, 0.72);
  border-color: rgba(194, 212, 229, 0.95);
}

.hc-sidebar-link.is-active {
  background: linear-gradient(180deg, #dfe8f2 0%, #d4e0eb 100%);
  border-color: rgba(187, 204, 220, 0.95);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.85);
}

.hc-section-hero {
  position: relative;
  overflow: hidden;
  padding: 1.35rem 1.45rem 1.5rem;
  border: 1px solid rgba(203, 216, 229, 0.95);
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(249,252,255,0.92) 100%);
  box-shadow: 0 18px 46px rgba(27, 68, 114, 0.08);
}

.hc-section-hero__content {
  position: relative;
  z-index: 1;
}

.hc-section-hero__content h1 {
  margin: 0.9rem 0 0;
  color: #1b4472;
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.08;
  font-weight: 700;
}

.hc-section-hero__content p {
  max-width: 42rem;
  margin: 0.95rem 0 0;
  color: #4c5f74;
  font-size: 1.04rem;
  line-height: 1.65;
}

.hc-section-hero__glow {
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.9;
}

.hc-section-hero__glow--blue {
  top: -2rem;
  right: 14%;
  width: 18rem;
  height: 8rem;
  background: radial-gradient(circle, rgba(135, 208, 255, 0.25) 0%, rgba(135, 208, 255, 0) 72%);
}

.hc-section-hero__glow--orange {
  top: -1rem;
  right: -1rem;
  width: 16rem;
  height: 8rem;
  background: radial-gradient(circle, rgba(247, 148, 30, 0.18) 0%, rgba(247, 148, 30, 0) 72%);
}

.hc-article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hc-article-tile {
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(207, 219, 231, 0.98);
  box-shadow: 0 12px 30px rgba(27, 68, 114, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.hc-article-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(27, 68, 114, 0.09);
  border-color: rgba(191, 208, 224, 1);
}

.hc-article-tile__link {
  min-height: 10.5rem;
  padding: 1.35rem 1.35rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  text-decoration: none;
}

.hc-article-tile__body h2 {
  margin: 0 0 0.55rem;
  color: #1b4472;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hc-article-tile__body p {
  margin: 0;
  color: #54687c;
  line-height: 1.6;
}

.hc-article-tile__arrow {
  align-self: flex-end;
  color: #6f8fb2;
  font-size: 1.55rem;
  line-height: 1;
}

.hc-article-panel {
  padding: 1.55rem 1.7rem;
  border: 1px solid rgba(203, 216, 229, 0.95);
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(249,252,255,0.92) 100%);
  box-shadow: 0 18px 46px rgba(27, 68, 114, 0.08);
}

.hc-related-panel {
  padding: 1.2rem 1.25rem 1.3rem;
  border: 1px solid rgba(203, 216, 229, 0.95);
  border-radius: 1.2rem;
  background: rgba(255,255,255,0.84);
  box-shadow: 0 14px 34px rgba(27, 68, 114, 0.06);
}

.hc-related-panel__header h2 {
  margin: 0;
  color: #1b4472;
  font-size: 1.15rem;
}

.hc-related-panel__header p {
  margin: 0.35rem 0 0.9rem;
  color: #607488;
  line-height: 1.55;
}

.hc-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.hc-related-tile {
  border: 1px solid rgba(208, 220, 232, 0.98);
  border-radius: 0.95rem;
  background: rgba(249, 252, 255, 0.95);
}

.hc-related-tile__link {
  padding: 1rem 1rem 0.95rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
}

.hc-related-tile__link strong {
  display: block;
  color: #1b4472;
  line-height: 1.35;
}

.hc-related-tile__link span:last-child {
  color: #6f8fb2;
  font-size: 1.2rem;
  line-height: 1;
}

.hc-related-tile__link div span {
  display: block;
  margin-top: 0.35rem;
  color: #607488;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .hc-article-grid,
  .hc-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hc-section-hero,
  .hc-article-panel,
  .hc-related-panel {
    padding: 1.1rem;
  }

  .hc-article-tile__link {
    min-height: auto;
    padding: 1rem;
  }
}

/* Enhanced home showcase */
.hc-home--showcase {
  gap: 2.4rem;
}

.hc-home-hero--showcase {
  position: relative;
  overflow: hidden;
  padding: 2rem 2rem 1.1rem;
  border: 1px solid rgba(203, 216, 229, 0.95);
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at 10% 20%, rgba(135, 208, 255, 0.12), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(247, 148, 30, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(248,251,254,0.94) 100%);
  box-shadow: 0 18px 46px rgba(27, 68, 114, 0.08);
}

.hc-home-hero--showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0)),
    radial-gradient(circle at 50% 85%, rgba(255,255,255,0.95), rgba(255,255,255,0) 40%);
  pointer-events: none;
}

.hc-home-hero-content {
  position: relative;
  z-index: 1;
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}

.hc-home-hero--showcase .hc-eyebrow {
  margin-bottom: 0.45rem;
}

.hc-home-hero--showcase h1 {
  margin: 0;
  color: #1b4472;
  font-size: clamp(2.45rem, 3.5vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

.hc-home-hero--showcase p:last-child {
  max-width: 46rem;
  margin: 0.9rem auto 0;
  font-size: 1.12rem;
  line-height: 1.65;
  color: #425569;
}

.hc-home-hero-art {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}

.hc-home-hero-art-image {
  display: block;
  width: min(100%, 1180px);
  margin: 0 auto;
  height: auto;
}

.hc-home-panels {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hc-home-panels-row {
  display: grid;
  gap: 1.25rem;
}

.hc-home-panels-row--primary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hc-home-panels-row--secondary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hc-home-panel {
  position: relative;
  border: 1px solid #dbe4ec;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(27, 68, 114, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hc-home-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(247, 148, 30, 0.08), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(67, 171, 255, 0.08), transparent 32%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.hc-home-panel:hover {
  transform: translateY(-3px);
  border-color: #c8d8e8;
  box-shadow: 0 18px 36px rgba(27, 68, 114, 0.09);
}

.hc-home-panel:hover::before {
  opacity: 1;
}

.hc-home-panel-link {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 5.2rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.15rem;
  min-height: 10.75rem;
  padding: 1.5rem 1.45rem;
  text-decoration: none;
}

.hc-home-panel-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 1.05rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}

.hc-home-panel--pergunte .hc-home-panel-icon-wrap {
  background: linear-gradient(180deg, #5b7aa7 0%, #3f5f92 100%);
}

.hc-home-panel--publique .hc-home-panel-icon-wrap,
.hc-home-panel--anuncie .hc-home-panel-icon-wrap {
  background: linear-gradient(180deg, #ff9d1e 0%, #ef7f00 100%);
}

.hc-home-panel--sobre .hc-home-panel-icon-wrap,
.hc-home-panel--regras .hc-home-panel-icon-wrap {
  background: linear-gradient(180deg, #7d8ea5 0%, #62748d 100%);
}

.hc-home-panel-icon {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.hc-home-panel-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.hc-home-panel-body .hc-category-badge {
  margin: 0;
}

.hc-home-panel-description {
  margin: 0;
  color: #324559;
  font-size: 1.05rem;
  line-height: 1.55;
}

.hc-home-panel-arrow {
  align-self: end;
  color: #6e86a5;
  font-size: 1.65rem;
  line-height: 1;
  transition: transform 0.2s ease, color 0.2s ease;
}

.hc-home-panel:hover .hc-home-panel-arrow {
  transform: translateX(3px);
  color: #1b4472;
}

@media (max-width: 1180px) {
  .hc-home-panels-row--primary {
    grid-template-columns: 1fr;
  }

  .hc-home-panels-row--secondary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .hc-home-hero--showcase {
    padding: 1.5rem 1.1rem 0.8rem;
  }

  .hc-home-hero--showcase h1 {
    font-size: 2.3rem;
  }
}


/* --- ZIP2 polish visual additions --- */

.hc-soft-gradient {
  background:
    radial-gradient(circle at 14% 16%, rgba(242, 140, 40, 0.16), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(76, 111, 174, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.985) 0%, rgba(252,253,255,0.98) 100%);
}

.hc-hover-lift {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.hc-hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(27, 68, 114, 0.10);
}

.hc-home-hero--showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr) minmax(180px, 260px);
  align-items: end;
  gap: 1rem;
  overflow: hidden;
}

.hc-home-hero-figure {
  align-self: end;
  pointer-events: none;
}

.hc-home-hero-figure--left {
  justify-self: start;
}

.hc-home-hero-figure--right {
  justify-self: end;
}

.hc-home-hero-figure-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 32px rgba(27, 68, 114, 0.14));
}

.hc-home-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 1rem;
}

.hc-home-panel {
  position: relative;
  overflow: hidden;
}

.hc-home-panel-topline {
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(255,255,255,0.0), rgba(255,255,255,0.55), rgba(255,255,255,0.0));
}

.hc-home-panel--pergunte .hc-home-panel-topline {
  background-color: #F28C28;
  background-image: linear-gradient(90deg, #F28C28, #FFC36F);
}

.hc-home-panel--publique .hc-home-panel-topline,
.hc-home-panel--anuncie .hc-home-panel-topline {
  background-color: #F28C28;
  background-image: linear-gradient(90deg, #F28C28, #FFC36F);
}

.hc-home-panel--sobre .hc-home-panel-topline,
.hc-home-panel--regras .hc-home-panel-topline {
  background-color: #6B7280;
  background-image: linear-gradient(90deg, #6B7280, #B1BAC8);
}

.hc-section-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
  align-items: center;
  gap: 1.5rem;
}

.hc-section-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.75rem;
}

.hc-section-hero__icon {
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
}

.hc-section-hero__art {
  justify-self: end;
}

.hc-section-hero__art-image {
  width: min(100%, 360px);
  height: auto;
  display: block;
}

.hc-sidebar-link--with-icon {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hc-sidebar-icon {
  width: 1.4rem;
  height: 1.4rem;
  flex: 0 0 auto;
}

.hc-article-tile {
  overflow: hidden;
}

.hc-article-tile__link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 1rem;
}

.hc-article-tile__icon-wrap {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f5f9fe 0%, #e7eff8 100%);
  box-shadow: inset 0 0 0 1px rgba(76, 111, 174, 0.08);
}

.hc-article-tile__icon {
  width: 2rem;
  height: 2rem;
}

.hc-related-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hc-related-panel__illustration {
  width: min(220px, 32%);
  height: auto;
  flex: 0 0 auto;
}

@media (max-width: 960px) {
  .hc-section-hero {
    grid-template-columns: 1fr;
  }

  .hc-section-hero__art {
    justify-self: start;
  }

  .hc-home-hero--showcase {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .hc-home-hero-figure {
    display: none;
  }

  .hc-related-panel__header {
    align-items: flex-start;
  }

  .hc-related-panel__illustration {
    display: none;
  }
}


/* ZIP6 cleanup */
.hc-section-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 320px);
  align-items: center;
  gap: 1.2rem;
  padding: 1.45rem 1.6rem 1.55rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(252,253,255,0.99) 100%);
}

.hc-section-hero__context {
  margin: 0;
  color: #d05b00;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hc-section-hero__context-link {
  color: #d05b00;
  text-decoration: none;
}

.hc-section-hero__context-link:hover {
  text-decoration: underline;
}

.hc-section-hero__content h1 {
  margin-top: 0.35rem;
}

.hc-section-hero__art--clean {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hc-section-hero__art-image--clean {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
}

.hc-section-hero__meta {
  display: none;
}

.hc-article-tile__icon-wrap,
.hc-home-panel-icon-wrap,
.hc-sidebar-icon {
  background: transparent;
}

.hc-home-panel-icon,
.hc-sidebar-icon,
.hc-article-tile__icon {
  object-fit: contain;
  background: transparent;
}

.hc-home-panel-icon {
  width: 84px;
  height: 84px;
}

.hc-sidebar-icon {
  width: 28px;
  height: 28px;
}

.hc-article-tile__icon {
  width: 50px;
  height: 50px;
}

.hc-callout {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  padding-right: 1.05rem;
}

.hc-callout p {
  margin: 0 !important;
}

.hc-article-body .hc-callout,
.hc-article-body .hc-flagged-message,
.hc-article-body a.hc-action-link {
  width: fit-content;
  max-width: 100%;
}

.hc-article-body > p > a:only-child,
.hc-article-body > div > p > a:only-child {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
}

.hc-home-panel-link,
.hc-article-tile__link,
.hc-related-tile__link {
  color: inherit;
}

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

  .hc-section-hero__art--clean {
    justify-content: flex-start;
  }

  .hc-section-hero__art-image--clean {
    max-width: 220px;
  }
}


/* ZIP7 refinement */
body.hc-page {
  background: #fdfefe;
}

.hc-main-shell {
  background: #fbfcfd !important;
}

.hc-main-container {
  padding-top: 1.65rem;
}

.hc-sidebar-card__eyebrow--nav {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.95rem;
  color: #6d7f92;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hc-sidebar-card__eyebrow--nav a {
  color: #1b4472;
  text-decoration: none;
}

.hc-sidebar-card__eyebrow--nav a:hover {
  text-decoration: underline;
}

.hc-sidebar-card__eyebrow--nav span {
  color: #9aaabd;
}

.hc-breadcrumbs {
  display: none !important;
}

.hc-sidebar-card__eyebrow:not(.hc-sidebar-card__eyebrow--nav) {
  display: none;
}

.hc-home-panel {
  background: #ffffff;
}

.hc-home-panel::before {
  background: none;
}

.hc-home-panel-icon-wrap {
  background: linear-gradient(180deg, #fffdfa 0%, #fff8ef 100%) !important;
  box-shadow:
    0 10px 24px rgba(27, 68, 114, 0.08),
    inset 0 0 0 1px rgba(214, 226, 239, 0.9);
  border: 1px solid rgba(226, 235, 244, 0.95);
}

.hc-home-panel-icon {
  width: 3.35rem;
  height: 3.35rem;
}

.hc-home-panel--sobre .hc-home-panel-icon,
.hc-home-panel--regras .hc-home-panel-icon {
  width: 3.15rem;
  height: 3.15rem;
}

.hc-home-panel--pergunte .hc-home-panel-topline,
.hc-home-panel--publique .hc-home-panel-topline,
.hc-home-panel--anuncie .hc-home-panel-topline {
  background: linear-gradient(90deg, #f7941e 0%, #ffb14d 100%);
}

.hc-home-panel--sobre .hc-home-panel-topline,
.hc-home-panel--regras .hc-home-panel-topline {
  background: linear-gradient(90deg, #8ea0b6 0%, #aab7c8 100%);
}

.hc-home-hero--showcase {
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.hc-section-hero {
  background:
    linear-gradient(90deg, rgba(255,249,241,0.86) 0%, rgba(255,255,255,0.98) 42%, rgba(244,249,255,0.92) 100%) !important;
  box-shadow: 0 14px 36px rgba(27, 68, 114, 0.06);
}

.hc-section-hero__content h1 {
  margin-top: 0;
}

.hc-section-hero__art--clean {
  position: relative;
}

.hc-section-hero__art--clean::before {
  content: "";
  position: absolute;
  inset: 12% 6% 12% 18%;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(238,245,252,0.65) 0%, rgba(245,249,253,0.32) 100%);
  z-index: 0;
}

.hc-section-hero__art-image--clean {
  position: relative;
  z-index: 1;
  max-width: 220px;
  opacity: 0.96;
}

.hc-sidebar-card__inner,
.hc-article-tile,
.hc-article-panel,
.hc-related-panel {
  background: rgba(255,255,255,0.96);
}

.hc-article-tile__icon-wrap {
  background: linear-gradient(180deg, #fffdfa 0%, #fff8ef 100%);
  border: 1px solid rgba(226, 235, 244, 0.95);
  box-shadow:
    0 8px 18px rgba(27, 68, 114, 0.06),
    inset 0 0 0 1px rgba(214, 226, 239, 0.9);
}

.hc-article-tile__icon {
  width: 2.35rem;
  height: 2.35rem;
}

.hc-sidebar-link--with-icon {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hc-sidebar-icon {
  width: 1.6rem;
  height: 1.6rem;
  flex: 0 0 auto;
  object-fit: contain;
  background: transparent;
}

.hc-sidebar-heading-link {
  text-decoration: none;
}

.hc-category-badge {
  width: fit-content;
}

.hc-article-body > p > a:only-child,
.hc-article-body > div > p > a:only-child,
.hc-flagged-message,
.hc-callout a,
.hc-article-body a.help-center-action-link,
.hc-article-body a.hc-action-link {
  display: inline-flex !important;
  width: auto !important;
  max-width: 100%;
}

.hc-callout,
.hc-flagged-message {
  width: fit-content;
  max-width: 100%;
}

@media (max-width: 960px) {
  .hc-section-hero {
    background: linear-gradient(180deg, #fffaf5 0%, #ffffff 48%, #f5f9fd 100%) !important;
  }

  .hc-section-hero__art--clean::before {
    inset: 10% 0 10% 10%;
  }
}


/* ZIP8 micro-polish */
.hc-main-container {
  padding-top: 1.35rem;
  padding-bottom: 2.6rem;
}

.hc-home--showcase {
  gap: 1.7rem;
}

.hc-home-hero--showcase {
  padding: 1.25rem 1.6rem 1.05rem;
  min-height: 18rem;
  align-items: center;
}

.hc-home-hero-content {
  align-self: center;
}

.hc-home-hero-content .hc-eyebrow {
  margin-bottom: 0.4rem;
}

.hc-home-hero-content h1 {
  margin-bottom: 0.6rem;
}

.hc-home-hero-content p {
  margin-top: 0;
}

.hc-home-hero-figure {
  align-self: center;
}

.hc-home-panels {
  gap: 1.45rem;
}

.hc-home-panels-row {
  gap: 1.45rem;
}

.hc-home-panel-link {
  padding: 1.65rem 1.45rem 1.55rem;
  gap: 1.25rem;
}

.hc-home-panel-body {
  gap: 1.15rem;
}

.hc-home-panel-description {
  line-height: 1.62;
}

.hc-sidebar-card__inner {
  padding: 0.95rem 0.95rem 1rem;
}

.hc-sidebar-card__eyebrow--nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: -0.1rem 0 0.9rem;
  padding: 0 0 0.7rem;
  border-bottom: 1px solid rgba(211, 222, 233, 0.9);
  color: #6f8194;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-transform: none;
}

.hc-sidebar-card__eyebrow--nav a {
  color: #516a88;
  text-decoration: none;
}

.hc-sidebar-card__eyebrow--nav a:first-child {
  font-weight: 800;
}

.hc-sidebar-card__eyebrow--nav a:hover {
  color: #1b4472;
}

.hc-sidebar-card__eyebrow--nav span {
  color: #93a5b7;
  font-size: 0.9em;
}

.hc-sidebar-heading {
  margin-bottom: 1rem;
}

.hc-sidebar-menu li + li {
  margin-top: 0.6rem;
}

.hc-sidebar-link {
  padding: 0.95rem 1rem;
  line-height: 1.42;
}

.hc-sidebar-link--with-icon {
  gap: 0.7rem;
}

.hc-section-hero {
  padding: 1.55rem 1.7rem 1.65rem;
}

.hc-section-hero__content p {
  margin-top: 1.05rem;
  line-height: 1.68;
}

.hc-article-grid {
  gap: 1.15rem;
}

.hc-article-tile__link {
  min-height: 11rem;
  padding: 1.45rem 1.4rem 1.3rem;
  gap: 1.15rem;
}

.hc-article-tile__body h2 {
  margin-bottom: 0.75rem;
}

.hc-article-tile__body p {
  line-height: 1.72;
}

.hc-article-panel {
  padding: 1.7rem 1.85rem;
}

.hc-callout,
.hc-flagged-message,
.hc-article-body > p > a:only-child,
.hc-article-body > div > p > a:only-child {
  margin-top: 1.2rem;
  margin-bottom: 1.2rem;
}

.hc-article-body > p > a:only-child,
.hc-article-body > div > p > a:only-child,
.hc-flagged-message {
  padding: 0.9rem 1.05rem !important;
  border-radius: 0.95rem;
}

@media (max-width: 960px) {
  .hc-home-hero--showcase {
    padding: 1.15rem 1.2rem 1rem;
    min-height: auto;
  }

  .hc-main-container {
    padding-top: 1.15rem;
  }
}


/* ZIP9 bubble + inline-link fixes */


.hc-article-body p a:not(.hc-action-link):not(.help-center-action-link),
.hc-article-body li a:not(.hc-action-link):not(.help-center-action-link) {
  display: inline !important;
  width: auto !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  line-height: inherit !important;
  vertical-align: baseline !important;
}


.hc-article-body > p > a:only-child:not(.hc-action-link):not(.help-center-action-link),
.hc-article-body > div > p > a:only-child:not(.hc-action-link):not(.help-center-action-link) {
  display: inline !important;
  width: auto !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  line-height: inherit !important;
}


.hc-callout,
.hc-flagged-message,
.hc-article-body a.hc-action-link,
.hc-article-body a.help-center-action-link {
  width: fit-content !important;
  max-width: 100%;
  min-height: 0 !important;
  margin-top: 1rem !important;
  margin-right: 0.85rem !important;
  margin-bottom: 1rem !important;
  line-height: 1.35 !important;
}

.hc-callout {
  padding: 0.58rem 0.8rem !important;
  border-radius: 0.95rem !important;
}

.hc-flagged-message {
  padding: 0.72rem 0.9rem !important;
  border-radius: 0.95rem !important;
}

.hc-callout a,
.hc-article-body a.hc-action-link,
.hc-article-body a.help-center-action-link {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  width: auto !important;
  max-width: 100%;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.35 !important;
  vertical-align: middle;
}


.hc-article-body p {
  line-height: 1.72;
}

.hc-article-body p:has(> a.hc-action-link + a.hc-action-link),
.hc-article-body p:has(> a.help-center-action-link + a.help-center-action-link) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.95rem;
}

.hc-article-body p + .hc-callout,
.hc-article-body p + .hc-flagged-message,
.hc-callout + .hc-callout,
.hc-callout + .hc-flagged-message,
.hc-flagged-message + .hc-callout,
.hc-flagged-message + .hc-flagged-message {
  margin-top: 1.15rem !important;
}


.hc-callout p,
.hc-flagged-message p {
  line-height: 1.4 !important;
}

.hc-callout p a,
.hc-flagged-message a {
  line-height: 1.35 !important;
}
