@charset "UTF-8";
:root {
  --pu-color-primary:#df0a0a;
  --pu-color-primary-dark:#a90000;
  --pu-color-black:#111;
  --pu-color-text:#191919;
  --pu-color-muted:#676767;
  --pu-color-border:#e2e2e2;
  --pu-color-background:#fff;
  --pu-color-surface:#f7f7f8;
  --pu-radius-sm:6px;
  --pu-radius-md:12px;
  --pu-shadow:0 8px 24px rgba(0,0,0,.07);
  --pu-container-width:1180px;
  --pu-spacing-1:.25rem;
  --pu-spacing-2:.5rem;
  --pu-spacing-3:.75rem;
  --pu-spacing-4:1rem;
  --pu-spacing-5:1.5rem;
  --pu-spacing-6:2rem;
  --pu-spacing-7:3rem;
  --pu-font:Inter,Arial,sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--pu-color-text);
  background: var(--pu-color-background);
  font-family: var(--pu-font);
  font-size: 16px;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--pu-color-primary);
}

button, input, select, textarea {
  font: inherit;
}

button, a, input, select, textarea {
  outline-offset: 3px;
}

:focus-visible {
  outline: 3px solid var(--pu-color-primary);
}

.container {
  width: min(100% - 2rem, var(--pu-container-width));
  margin-inline: auto;
}

.screen-reader-text, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 9999;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  margin: 0;
  clip: auto;
  background: #fff;
  color: #000;
}

.topbar {
  border-bottom: 1px solid var(--pu-color-border);
  font-size: 0.875rem;
}

.topbar__inner, .topbar__contacts, .topbar__social {
  display: flex;
  align-items: center;
}

.topbar__inner {
  justify-content: space-between;
  min-height: 48px;
}

.topbar__contacts {
  gap: 1.5rem;
}

.topbar__contacts a, .topbar__social a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar .dashicons {
  color: var(--pu-color-primary);
}

.topbar__social {
  gap: 0.75rem;
}

.topbar__links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding-right: 1rem;
  margin-right: 0.25rem;
  border-right: 1px solid var(--pu-color-border);
  font-weight: 600;
}

.topbar__links a {
  color: var(--pu-color-text);
}

.topbar__links a:hover {
  color: var(--pu-color-primary);
}

.topbar__social .dashicons {
  font-size: 24px;
  width: 24px;
  height: 24px;
}

.site-header {
  position: relative;
  background: #fff;
  border-bottom: 1px solid var(--pu-color-border);
  z-index: 20;
}

.site-header__inner {
  display: grid;
  grid-template-columns: 250px 1fr auto;
  gap: 2rem;
  align-items: center;
  align-content: center;
  min-height: 132px;
}

.site-branding {
  height: 98px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.custom-logo-link {
  display: block;
  width: 240px;
  height: 98px;
  overflow: hidden;
}

.custom-logo {
  width: 240px !important;
  height: 98px !important;
  object-fit: contain;
  filter: contrast(1.25) saturate(1.25);
}

.nav-menu, .site-footer ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu {
  justify-content: center;
  gap: 1.7rem;
  font-weight: 700;
}

.nav-menu li {
  position: relative;
}

.nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--pu-color-border);
  box-shadow: var(--pu-shadow);
  list-style: none;
}

.nav-menu li:hover > .sub-menu, .nav-menu li:focus-within > .sub-menu {
  display: block;
}

.search-toggle, .menu-toggle {
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.5rem;
}

.search-toggle .dashicons, .menu-toggle .dashicons {
  font-size: 28px;
  width: 28px;
  height: 28px;
}

.menu-toggle {
  display: none;
}

.header-search {
  position: absolute;
  right: max(1rem, (100vw - var(--pu-container-width)) / 2);
  top: 95px;
  display: none;
  background: #fff;
  padding: 0.75rem;
  border: 1px solid var(--pu-color-border);
  box-shadow: var(--pu-shadow);
  border-radius: var(--pu-radius-md);
}

.header-search.is-open {
  display: block;
}

.search-form {
  display: flex;
  border: 1px solid var(--pu-color-border);
  border-radius: var(--pu-radius-md);
  overflow: hidden;
  background: #fff;
}

.search-form label {
  flex: 1 1 auto;
  min-width: 0;
}

.search-form input {
  border: 0;
  padding: 0.8rem 1rem;
  min-width: 250px;
}

.search-form button {
  border: 0;
  background: #fff;
  padding: 0.7rem;
  cursor: pointer;
}

.site-main {
  min-height: 60vh;
}

.home-layout {
  padding-block: 2rem 4rem;
}

.featured {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.25rem;
}

.hero-slider {
  position: relative;
  min-width: 0;
  min-height: 510px;
  overflow: hidden;
  border-radius: var(--pu-radius-md);
  background: #151515;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-slider__controls {
  position: absolute;
  z-index: 3;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-slider__button,
.hero-slider__dots button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  cursor: pointer;
}

.hero-slider__dots {
  display: flex;
  gap: 0.4rem;
}

.hero-slider__dots button {
  width: 10px;
  height: 10px;
}

.hero-slider__dots button[aria-current=true] {
  background: var(--pu-color-primary);
  border-color: var(--pu-color-primary);
}

.hero-card {
  position: relative;
  min-height: 480px;
  border-radius: var(--pu-radius-md);
  overflow: hidden;
  background: #151515;
}

.hero-card > a, .hero-card img, .hero-card__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-card img {
  object-fit: cover;
}

.hero-card__overlay {
  background: rgba(0, 0, 0, 0.58);
}

.hero-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem;
  color: #fff;
}

.eyebrow {
  display: inline-block;
  color: var(--pu-color-primary);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-card .eyebrow {
  color: #fff;
  background: var(--pu-color-primary);
  padding: 0.35rem 0.6rem;
  border-radius: var(--pu-radius-sm);
}

.hero-card h2 {
  max-width: 760px;
  margin: 1rem 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.08;
}

.hero-card p {
  max-width: 650px;
}

.meta {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--pu-color-muted);
  font-size: 0.78rem;
}

.hero-card .meta {
  color: #fff;
}

.meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.meta .dashicons {
  font-size: 16px;
  width: 16px;
  height: 16px;
}

.featured__secondary {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1.25rem;
}

.news-card {
  border: 1px solid var(--pu-color-border);
  border-radius: var(--pu-radius-md);
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--pu-shadow);
}

.news-card__media {
  display: block;
  aspect-ratio: 16/9;
  background: var(--pu-color-surface);
  overflow: hidden;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #aaa;
}

.news-card__fallback .dashicons {
  font-size: 48px;
  width: 48px;
  height: 48px;
}

.news-card__body {
  padding: 1rem;
}

.news-card h3 {
  font-size: 1rem;
  line-height: 1.35;
  margin: 0.45rem 0 1rem;
}

.news-card--secondary {
  display: grid;
  grid-template-columns: 42% 1fr;
}

.news-card--secondary .news-card__media {
  aspect-ratio: auto;
}

.news-card--secondary h3 {
  font-size: 1.08rem;
  margin-bottom: 0.75rem;
}

.pu-ad {
  max-width: 760px;
  margin: 2rem auto;
  text-align: center;
}

.pu-ad__stage {
  position: relative;
  width: 100%;
  aspect-ratio: 970/250;
  overflow: hidden;
  border-radius: var(--pu-radius-md);
}

.pu-ad__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.pu-ad__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pu-ad__slide a,
.pu-ad__slide picture,
.pu-ad__slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.pu-ad__slide img {
  object-fit: cover;
}

.pu-ad__label {
  display: block;
  color: var(--pu-color-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.section {
  margin-top: 3rem;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--pu-color-border);
  margin-bottom: 1.25rem;
}

.section-heading h2 {
  font-size: 1.55rem;
  margin: 0;
  padding: 0 0 0.7rem;
  position: relative;
}

.section-heading h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 34px;
  height: 3px;
  background: var(--pu-color-primary);
}

.section-heading > a, .editorial-intro > a {
  color: var(--pu-color-primary);
  font-weight: 700;
  font-size: 0.88rem;
  padding-bottom: 0.7rem;
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.editorial-row {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--pu-color-border);
}

.editorial-intro {
  padding: 1rem;
  border-left: 3px solid var(--pu-color-primary);
}

.editorial-intro > .dashicons {
  color: var(--pu-color-primary);
  font-size: 32px;
  width: 32px;
  height: 32px;
}

.editorial-intro h3 {
  margin: 0.5rem 0;
}

.editorial-intro p {
  color: var(--pu-color-muted);
  font-size: 0.9rem;
}

.editorial-row__posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.empty-state {
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  min-height: 170px;
  padding: 2rem;
  background: var(--pu-color-surface);
  border: 1px dashed var(--pu-color-border);
  border-radius: var(--pu-radius-md);
  color: var(--pu-color-muted);
}

.empty-state--hero {
  min-height: 480px;
}

.empty-state h2, .empty-state h3 {
  color: var(--pu-color-black);
}

.archive-page, .article-layout, .error-page {
  padding-block: 2.5rem 4rem;
}

.breadcrumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: var(--pu-color-muted);
  font-size: 0.84rem;
  margin-bottom: 2rem;
}

.archive-header {
  margin-bottom: 2rem;
}

.archive-header h1, .error-page h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: 0.25rem 0;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.navigation.pagination {
  margin-top: 2rem;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.page-numbers {
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--pu-color-border);
  border-radius: var(--pu-radius-sm);
}

.page-numbers.current {
  background: var(--pu-color-primary);
  color: #fff;
  border-color: var(--pu-color-primary);
}

.article {
  max-width: 840px;
  margin: auto;
}

.article h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1.05;
  margin: 0.5rem 0 1rem;
}

.article__subtitle {
  font-size: 1.3rem;
  color: var(--pu-color-muted);
}

.article__meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 0;
  border-block: 1px solid var(--pu-color-border);
  color: var(--pu-color-muted);
  font-size: 0.9rem;
}

.article__image {
  margin: 2rem 0;
}

.article__image img {
  width: 100%;
  border-radius: var(--pu-radius-md);
}

.article__image figcaption {
  color: var(--pu-color-muted);
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

.article__content {
  font-size: 1.12rem;
  line-height: 1.8;
}

.article__content h2 {
  font-size: 1.8rem;
  line-height: 1.2;
}

.correction {
  padding: 1rem;
  border-left: 4px solid var(--pu-color-primary);
  background: var(--pu-color-surface);
}

.share-links {
  display: flex;
  gap: 0.75rem;
  margin: 2rem 0;
}

.share-links a, .button, .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--pu-radius-sm);
  padding: 0.75rem 1rem;
  background: var(--pu-color-primary);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.comments-area {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--pu-color-border);
}

.comment-login-callout {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--pu-color-border);
  border-left: 4px solid var(--pu-color-primary);
  border-radius: var(--pu-radius-md);
  background: var(--pu-color-surface);
}

.comment-login-callout h3 {
  margin: 0 0 0.5rem;
}

.comment-login-callout p {
  margin: 0 0 1rem;
}

.comment-login-callout > div {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.comment-register-link {
  color: var(--pu-color-primary);
  font-weight: 700;
}

.comment-form-comment label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.comment-form-comment textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--pu-color-border);
  border-radius: var(--pu-radius-sm);
  resize: vertical;
}

.comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comment-list .children {
  margin: 1rem 0 0 2.25rem;
  padding: 0;
  list-style: none;
}

.comment-body {
  padding: 1rem 0;
  border-bottom: 1px solid var(--pu-color-border);
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.comment-author .avatar {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--pu-color-surface);
}

.comment-metadata, .comment-content, .reply {
  margin-left: 60px;
}

@media (max-width: 680px) {
  .comment-list .children {
    margin-left: 1.25rem;
  }
}
.pu-auth, .pu-account, .pu-contact, .pu-privacy {
  max-width: 680px;
  margin: 3rem auto;
}

.pu-auth h1, .pu-account h1, .pu-privacy h1 {
  font-size: 2.6rem;
}

.pu-auth label, .pu-account label, .pu-contact label {
  display: grid;
  gap: 0.35rem;
  font-weight: 700;
}

.pu-auth input, .pu-account input, .pu-contact input, .pu-contact select, .pu-contact textarea, .comment-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--pu-color-border);
  border-radius: var(--pu-radius-sm);
}

.pu-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.pu-notice {
  padding: 1rem;
  background: var(--pu-color-surface);
  border-left: 4px solid var(--pu-color-primary);
  margin: 1rem 0;
}

.pu-notice--success {
  border-color: #16813c;
}

.author-header {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.author-avatar {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--pu-color-primary);
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
}

.site-footer {
  border-top: 3px solid var(--pu-color-primary);
  padding: 3rem 0 1rem;
  background: #fafafa;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2rem;
}

.footer-grid h2 {
  font-size: 1rem;
}

.footer-grid ul {
  display: block;
}

.footer-grid li {
  margin: 0.35rem 0;
  font-size: 0.88rem;
}

.footer-brand .custom-logo-link {
  height: 78px;
  width: 190px;
}

.footer-brand .custom-logo {
  height: 78px !important;
  width: 190px !important;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--pu-color-border);
  font-size: 0.78rem;
  color: var(--pu-color-muted);
}

@media (max-width: 980px) {
  .site-header__inner {
    grid-template-columns: 210px 1fr auto;
    min-height: 110px;
  }
  .menu-toggle {
    display: block;
    justify-self: end;
  }
  .primary-navigation {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--pu-color-border);
    padding: 1rem;
  }
  .primary-navigation.is-open {
    display: block;
  }
  .nav-menu {
    display: block;
  }
  .nav-menu li {
    padding: 0.55rem;
  }
  .search-toggle {
    display: none;
  }
  .header-search {
    display: block;
    position: static;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
  .header-search input {
    min-width: 0;
    width: 150px;
  }
  .featured {
    grid-template-columns: 1fr;
  }
  .hero-slider {
    min-height: 430px;
  }
  .featured__secondary {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .hero-card {
    min-height: 430px;
  }
  .latest-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .editorial-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 680px) {
  .container {
    width: min(100% - 1.25rem, var(--pu-container-width));
  }
  .topbar__inner {
    min-height: 42px;
  }
  .topbar__contacts a:nth-child(2) {
    display: none;
  }
  .topbar__social {
    gap: 0.4rem;
  }
  .topbar__links {
    display: none;
  }
  .site-header__inner {
    grid-template-columns: 1fr auto;
    min-height: 88px;
  }
  .site-branding, .custom-logo-link {
    height: 72px;
    width: 170px;
  }
  .custom-logo {
    height: 72px !important;
    width: 170px !important;
  }
  .header-search {
    display: none;
  }
  .hero-card {
    min-height: 390px;
  }
  .hero-slider {
    min-height: 390px;
  }
  .hero-slider__controls {
    right: 1rem;
    bottom: 1rem;
  }
  .hero-slider__dots {
    display: none;
  }
  .pu-ad__stage {
    aspect-ratio: 320/100;
  }
  .hero-card__content {
    padding: 1.25rem;
  }
  .hero-card h2 {
    font-size: 2rem;
  }
  .featured__secondary {
    grid-template-columns: 1fr;
  }
  .news-card--secondary {
    grid-template-columns: 38% 1fr;
  }
  .latest-grid, .editorial-row__posts {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.75rem;
  }
  .latest-grid > .news-card, .editorial-row__posts > .news-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }
  .archive-grid {
    grid-template-columns: 1fr;
  }
  .article h1 {
    font-size: 2.45rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: block;
  }
  .editorial-row {
    padding-block: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
/* Correções de recorte do logotipo oficial e contenção responsiva. */
html, body {
  overflow-x: hidden;
}

.featured > *, .featured__secondary > *, .editorial-row > *, .editorial-row__posts > *, .empty-state, .news-card {
  min-width: 0;
}

.empty-state h2, .empty-state h3, .empty-state p {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.pu-fallback-logo-link {
  height: 98px !important;
  width: 240px !important;
}

.pu-fallback-logo {
  width: 240px !important;
  height: 240px !important;
  max-width: none !important;
  object-fit: cover !important;
  transform: translateY(-69px);
  filter: contrast(1.25) saturate(1.25);
}

.footer-brand .pu-fallback-logo-link {
  height: 78px !important;
  width: 190px !important;
}

.footer-brand .pu-fallback-logo {
  width: 190px !important;
  height: 190px !important;
  transform: translateY(-55px);
}

@media (max-width: 680px) {
  .pu-fallback-logo-link {
    height: 72px !important;
    width: 170px !important;
  }
  .pu-fallback-logo {
    width: 170px !important;
    height: 170px !important;
    transform: translateY(-49px);
  }
  .topbar__social {
    flex-shrink: 0;
  }
}
/* Ajustes editoriais da segunda revisão. */
.site-header__inner {
  grid-template-columns: 250px minmax(0, 1fr) 230px;
}

.header-search {
  grid-column: 3;
  grid-row: 1;
  align-self: center;
  position: static;
  display: block;
  padding: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.header-search .search-form {
  width: 100%;
  border: 1px solid #cfcfcf;
}

.header-search .search-form input {
  min-width: 0;
  width: 100%;
  padding: 0.65rem 0.9rem;
}

.featured {
  height: auto;
  min-height: 510px;
}

.hero-slider {
  height: 100%;
  min-height: 0;
}

.featured__secondary {
  grid-template-rows: repeat(3, minmax(0, 1fr));
}

.news-card--secondary .news-card__body {
  padding: 0.8rem;
}

.news-card--secondary h3 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin: 0.35rem 0 0.55rem;
}

.news-ticker {
  margin-top: 1.25rem;
  overflow: hidden;
  border-radius: var(--pu-radius-sm);
  background: var(--pu-color-primary);
  color: #fff;
}

.news-ticker__track {
  display: flex;
  width: max-content;
  animation: pu-ticker 24s linear infinite;
}

.news-ticker__group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.8rem 1.5rem;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.news-ticker__group strong {
  font-size: 0.92rem;
}

.site-footer a {
  transition: color 0.2s ease;
}

.site-footer .menu a {
  display: inline-flex;
  padding: 0.2rem 0;
}

.site-footer .menu a:after {
  content: "›";
  margin-left: 0.35rem;
  color: var(--pu-color-primary);
  font-weight: 800;
}

@keyframes pu-ticker {
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 980px) {
  .site-header__inner {
    grid-template-columns: 210px auto 240px;
  }
  .featured {
    height: auto;
    min-height: 0;
  }
  .hero-slider {
    height: auto;
    min-height: 430px;
  }
  .featured__secondary {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
  }
  .news-card--secondary {
    min-height: 145px;
  }
}
@media (max-width: 680px) {
  .hero-slider {
    min-height: 390px;
  }
  .site-header__inner {
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
    padding-block: 0.5rem;
  }
  .header-search {
    display: block;
    grid-column: 1/-1;
    width: 100%;
    padding-bottom: 0.4rem;
  }
  .header-search .search-form input {
    width: 100%;
  }
  .news-ticker {
    margin-inline: -0.625rem;
    border-radius: 0;
  }
  .news-ticker__track {
    animation-duration: 18s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .news-ticker__track {
    animation: none;
  }
  .news-ticker {
    overflow-x: auto;
  }
}
/* Refinamento de hierarquia e carrosséis editoriais. */
.hero-card__overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.08) 100%);
}

.hero-card h2 {
  max-width: 690px;
  font-size: clamp(1.8rem, 3.25vw, 2.8rem);
}

.news-ticker {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 1.5rem;
  border-top: 1px solid #8f8f8f;
  border-bottom: 1px solid #8f8f8f;
  border-radius: 0;
  background: #fafafa;
  color: var(--pu-color-black);
}

.news-ticker__sequence > span:nth-of-type(odd) {
  color: var(--pu-color-primary);
  font-size: 1rem;
}

.news-ticker__sequence > span:nth-of-type(even) {
  color: var(--pu-color-black);
}

.editorial-row {
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: stretch;
}

.editorial-carousel {
  position: relative;
  min-width: 0;
  padding-inline: 2.25rem;
}

.editorial-row__posts {
  display: block;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  scroll-snap-type: none;
}

.editorial-carousel__track {
  display: flex;
  gap: 1rem;
  transition: transform 0.35s ease;
  will-change: transform;
}

.editorial-carousel__track > .news-card {
  flex: 0 0 calc((100% - 3rem) / 4);
  min-width: 0;
}

.editorial-carousel__button {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--pu-color-border);
  border-radius: 50%;
  background: #fff;
  color: var(--pu-color-black);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transform: translateY(-50%);
}

.editorial-carousel__button:hover {
  border-color: var(--pu-color-primary);
  color: var(--pu-color-primary);
}

.editorial-carousel__button--prev {
  left: 0;
}

.editorial-carousel__button--next {
  right: 0;
}

.editorial-carousel__button .dashicons {
  width: 18px;
  height: 18px;
  font-size: 18px;
}

@media (max-width: 980px) {
  .editorial-row {
    grid-template-columns: 1fr;
  }
  .editorial-carousel__track > .news-card {
    flex-basis: calc((100% - 1rem) / 2);
  }
}
@media (max-width: 680px) {
  .hero-card h2 {
    font-size: 1.85rem;
  }
  .editorial-carousel {
    padding-inline: 1.8rem;
  }
  .editorial-row__posts {
    display: block;
    overflow: hidden;
  }
  .editorial-carousel__track > .news-card {
    flex-basis: 100%;
  }
  .news-ticker {
    margin-left: calc(50% - 50vw);
  }
}
@media (prefers-reduced-motion: reduce) {
  .editorial-carousel__track {
    transition: none;
  }
}
/* Header editorial e leitura de matéria. */
.editorial-carousel {
  padding: 2.8rem 0 0;
}

.editorial-carousel__button {
  top: 0;
  transform: none;
}

.editorial-carousel__button--prev {
  right: 42px;
  left: auto;
}

.editorial-carousel__button--next {
  right: 0;
}

.editorial-header {
  position: relative;
  z-index: 30;
  background: #111;
  color: #fff;
  border-bottom: 3px solid var(--pu-color-primary);
}

.editorial-header__inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(330px, 1fr);
  align-items: center;
  gap: 1.5rem;
  min-height: 74px;
}

.editorial-header__brand-group, .editorial-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.editorial-header__brand-group {
  gap: 2rem;
}

.editorial-header__actions {
  justify-content: flex-end;
}

.editorial-header__menu {
  display: flex !important;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
}

.editorial-header__brand {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  font-style: italic;
  line-height: 0.82;
  letter-spacing: -0.04em;
}

.editorial-header__brand:hover, .editorial-header__section:hover, .editorial-header__account:hover {
  color: #fff;
}

.editorial-header__section {
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 500;
  text-transform: uppercase;
}

.editorial-header__search {
  width: 230px;
  min-width: 0;
}

.editorial-header__search .search-form {
  border: 0;
  border-radius: 4px;
  background: #292929;
}

.editorial-header__search .search-form input, .editorial-header__search .search-form button {
  background: transparent;
  color: #fff;
}

.editorial-header__search .search-form input {
  min-width: 0;
  width: 100%;
  padding: 0.55rem 0.65rem;
  text-overflow: ellipsis;
}

.editorial-header__search input::placeholder {
  color: rgba(255, 255, 255, 0.92);
}

.editorial-header__search .dashicons {
  color: #fff;
}

.editorial-header__account {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.58rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.editorial-navigation {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1rem;
  background: #fff;
  color: var(--pu-color-black);
  border-bottom: 1px solid var(--pu-color-border);
  box-shadow: var(--pu-shadow);
}

.editorial-navigation.is-open {
  display: block;
}

.editorial-navigation .nav-menu {
  justify-content: center;
}

.article-layout {
  width: min(100% - 2rem, 760px);
  padding-top: 2.4rem;
}

.article {
  max-width: none;
}

.article .breadcrumbs {
  margin-bottom: 2rem;
}

.article__header h1, .article h1 {
  margin: 0.45rem 0 1rem;
  font-size: clamp(2.5rem, 4.7vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.article__subtitle {
  max-width: 720px;
  margin: 0 0 1.4rem;
  color: #555;
  font-size: 1.18rem;
  line-height: 1.45;
}

.article__byline {
  margin: 0 0 0.25rem;
  font-size: 0.85rem;
}

.article__byline a {
  color: var(--pu-color-primary);
  font-weight: 700;
}

.article__meta {
  padding: 0;
  border: 0;
  gap: 0.35rem;
  font-size: 0.75rem;
}

.article__meta span:before {
  content: "•";
  margin-right: 0.35rem;
}

.share-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.7rem 0 2rem;
}

.share-links a, .share-links button {
  display: grid;
  place-items: center;
  min-height: 46px;
  padding: 0.6rem;
  border: 0;
  border-radius: 10px;
  background: #f2f3f4;
  color: #333;
  cursor: pointer;
}

.share-links a:hover, .share-links button:hover, .share-links .is-copied {
  background: var(--pu-color-primary);
  color: #fff;
}

.share-links .dashicons {
  font-size: 23px;
  width: 23px;
  height: 23px;
}

.article-summary {
  margin-bottom: 2.3rem;
  border: 1px solid #cfd3d7;
  border-radius: 12px;
}

.article-summary summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  font-weight: 800;
  cursor: pointer;
}

.article-summary summary:after {
  content: "\f347";
  font-family: dashicons;
  font-size: 18px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #eceff1;
}

.article-summary[open] summary:after {
  transform: rotate(180deg);
}

.article-summary p {
  margin: 0;
  padding: 0 1.2rem 1.2rem;
  color: var(--pu-color-muted);
}

.article__image {
  margin: 0 0 2rem;
}

.article__content {
  font-size: 1.12rem;
  line-height: 1.72;
}

.article__content > p:first-child {
  font-size: 1.2rem;
}

.category .archive-page {
  width: min(100% - 2rem, var(--pu-container-width));
}

.category .archive-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.category .archive-grid .news-card h3 {
  font-size: 0.92rem;
}

.category .archive-grid .news-card__body {
  padding: 0.8rem;
}

@media (max-width: 1100px) {
  .category .archive-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .editorial-header__inner {
    grid-template-columns: minmax(190px, 1fr) auto minmax(250px, 1fr);
  }
  .editorial-header__search {
    width: 175px;
  }
}
@media (max-width: 680px) {
  .editorial-carousel {
    padding-top: 2.5rem;
  }
  .editorial-header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 0.65rem;
    min-height: 64px;
  }
  .editorial-header__menu span:not(.dashicons) {
    display: none;
  }
  .editorial-header__brand {
    display: none;
  }
  .editorial-header__section {
    justify-self: center;
    font-size: 1.15rem;
  }
  .editorial-header__account {
    padding: 0.45rem;
    background: transparent;
  }
  .editorial-header__account:not(.dashicons) {
    font-size: 0;
  }
  .editorial-header__account .dashicons {
    font-size: 22px;
  }
  .editorial-header__search {
    display: none;
  }
  .article-layout {
    width: min(100% - 1.25rem, 760px);
    padding-top: 1.5rem;
  }
  .article .breadcrumbs {
    margin-bottom: 1.2rem;
  }
  .article__header h1, .article h1 {
    font-size: 2.25rem;
  }
  .article__subtitle {
    font-size: 1.05rem;
  }
  .share-links {
    gap: 0.45rem;
  }
  .category .archive-grid {
    grid-template-columns: 1fr 1fr;
  }
  .category .archive-header h1 {
    font-size: 2.4rem;
  }
}
@media (max-width: 430px) {
  .category .archive-grid {
    grid-template-columns: 1fr;
  }
}
/* Ritmo vertical e banners institucionais da home. */
:root {
  --pu-section-space:3.75rem;
}

.home-layout {
  padding-block: 2.5rem 5rem;
}

.section {
  margin-top: var(--pu-section-space);
}

.news-ticker {
  margin-top: 4rem;
  margin-bottom: var(--pu-section-space);
}

.news-ticker + .section, .news-ticker + .pu-ad + .section {
  margin-top: 0;
}

.editorial-row {
  padding: 2.25rem 0;
}

.editorial-break {
  margin: 2rem 0 3.5rem;
  overflow: hidden;
  border-radius: var(--pu-radius-md);
  background: #080808;
  box-shadow: var(--pu-shadow);
}

.editorial-break a {
  display: block;
}

.editorial-break img {
  width: 100%;
  height: auto;
  aspect-ratio: 10/3;
  object-fit: cover;
}

.news-ticker__group {
  min-width: max-content;
  gap: 0;
  padding: 0;
}

.news-ticker__sequence {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.news-ticker__sequence + .news-ticker__sequence {
  padding-left: 0;
}

.news-ticker__track {
  animation-duration: 18s;
}

.pu-contact .pu-consent {
  display: inline-flex;
  grid-template-columns: none;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.pu-contact .pu-consent input[type=checkbox] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 0;
}

.related-news {
  margin-top: 3.5rem;
  width: min(100vw - 2rem, var(--pu-container-width));
  margin-left: 50%;
  transform: translateX(-50%);
}

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

.related-news .news-card h3 {
  margin-bottom: 0.65rem;
}

@media (max-width: 680px) {
  .news-ticker {
    margin-top: 4rem;
  }
  .news-ticker__group {
    min-width: max-content;
    justify-content: flex-start;
    padding: 0;
  }
  .news-ticker__sequence {
    gap: 0.7rem;
    padding-inline: 0.8rem;
  }
  .related-news__grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 681px) and (max-width: 1100px) {
  .related-news__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.news-card__media {
  position: relative;
}

.news-card__badge {
  position: absolute;
  z-index: 1;
  top: 0.7rem;
  left: 0.7rem;
  display: inline-flex;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  background: var(--pu-color-primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.news-card--latest .news-card__body {
  padding-top: 1rem;
}

.news-card--latest h3 {
  margin-top: 0;
}

@media (max-width: 680px) {
  :root {
    --pu-section-space:2.75rem;
  }
  .home-layout {
    padding-block: 1.5rem 3.5rem;
  }
  .news-ticker {
    margin-top: 1.5rem;
    margin-bottom: var(--pu-section-space);
  }
  .editorial-row {
    padding: 1.75rem 0;
  }
  .editorial-break {
    margin: 1.5rem -0.625rem 2.75rem;
    border-radius: 0;
  }
  .editorial-break img {
    aspect-ratio: 10/3;
  }
}
.editorial-break img {
  aspect-ratio: auto;
  object-fit: contain;
}

/* Home compacta e publicidade administrável. */
.home-layout > .pu-ad {
  width: min(100%, 970px);
  max-width: 970px;
  margin: var(--pu-section-space) auto 0;
}

.featured + .pu-ad {
  margin-top: calc(var(--pu-section-space) + 1.5rem);
}

.pu-ad a,
.pu-ad picture {
  display: block;
}

.pu-ad picture img {
  width: 100%;
  max-width: 970px;
  aspect-ratio: 970/250;
  object-fit: cover;
  border-radius: var(--pu-radius-md);
}

.home-layout > .pu-ad + .latest-section,
.home-layout > .pu-ad + .editorial-sections {
  margin-top: var(--pu-section-space);
}

.editorial-highlights__nav {
  display: none;
}

.editorial-highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.editorial-highlight {
  min-width: 0;
  padding: 1.25rem;
  border: 1px solid var(--pu-color-border);
  border-radius: var(--pu-radius-md);
  background: #fff;
}

.editorial-highlight > header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.editorial-highlight > header .pu-editorial-icon {
  flex: 0 0 auto;
  color: var(--pu-color-primary);
  font-size: 26px;
  width: 26px;
  height: 26px;
  object-fit: cover;
  border-radius: var(--pu-radius-sm);
}

.editorial-highlight > header h3 {
  margin: 0;
  font-size: 1.15rem;
}

.editorial-highlight > header a {
  color: var(--pu-color-primary);
  font-size: 0.78rem;
  font-weight: 700;
}

.editorial-highlight .news-card {
  height: calc(100% - 54px);
}

.pu-ad__placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.35rem;
  width: 100%;
  aspect-ratio: 970/250;
  padding: 1.5rem;
  color: var(--pu-color-muted);
  background: #f7f7f8;
  border: 1px dashed #aeb2b7;
  border-radius: var(--pu-radius-md);
}

.pu-ad__placeholder strong {
  color: var(--pu-color-text);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pu-ad__placeholder span {
  font-size: 0.78rem;
}

.pu-ad__size--mobile {
  display: none;
}

@media (max-width: 980px) {
  .editorial-highlights__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .home-layout > .pu-ad {
    width: min(100%, 320px);
    max-width: 320px;
  }
  .pu-ad picture img {
    max-width: 320px;
    aspect-ratio: 320/100;
  }
  .pu-ad__placeholder {
    aspect-ratio: 320/100;
    padding: 1rem;
  }
  .pu-ad__size--desktop {
    display: none;
  }
  .pu-ad__size--mobile {
    display: inline;
  }
  .editorial-highlight {
    padding: 1rem;
  }
  .editorial-highlights__nav {
    display: flex;
    gap: 0.65rem;
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1rem;
    padding: 0 0 0.25rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    touch-action: pan-x;
  }
  .editorial-highlights__nav::-webkit-scrollbar,
  .editorial-highlights__grid::-webkit-scrollbar {
    display: none;
  }
  .editorial-highlights__nav a {
    flex: 0 0 auto;
    min-width: 8.75rem;
    padding: 0.85rem 1rem;
    color: var(--pu-color-text);
    background: #fff;
    border: 1px solid var(--pu-color-border);
    border-radius: var(--pu-radius-md);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    scroll-snap-align: start;
  }
  .editorial-highlights__grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
    padding: 0 0 0.25rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    touch-action: pan-x;
  }
  .editorial-highlight {
    flex: 0 0 min(82vw, 320px);
    scroll-snap-align: start;
  }
}
/* Editorias da home em linhas e banner final institucional. */
.editorial-highlights__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  overflow: visible;
}

.editorial-highlight {
  width: 100%;
  padding: 1.25rem;
}

.editorial-highlight .news-card {
  height: 100%;
}

.editorial-highlight__posts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.home-send-news-banner {
  width: 100%;
  margin: 4rem auto 0;
}

.home-send-news-banner a,
.home-send-news-banner img {
  display: block;
  width: 100%;
}

.home-send-news-banner img {
  height: auto;
  aspect-ratio: 1916/608;
  object-fit: cover;
  border-radius: var(--pu-radius-md);
}

@media (max-width: 980px) {
  .editorial-highlight__posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 680px) {
  .editorial-highlights__grid {
    display: grid;
    overflow: visible;
    padding: 0;
  }
  .editorial-highlight {
    flex: none;
    width: 100%;
    padding: 1rem;
  }
  .editorial-highlight__posts {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0 0 0.25rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-inline: contain;
    touch-action: pan-x;
  }
  .editorial-highlight__posts::-webkit-scrollbar {
    display: none;
  }
  .editorial-highlight__posts .news-card {
    flex: 0 0 min(78vw, 290px);
    scroll-snap-align: start;
  }
  .home-send-news-banner {
    margin-top: 2.75rem;
  }
}
/* Mantém todas as manchetes sobrepostas na mesma área do hero. */
.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
}

.hero-slider .hero-slide > a,
.hero-slider .hero-slide img,
.hero-slider .hero-slide .hero-card__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slider .hero-slide img {
  object-fit: cover;
}

.hero-slider__controls {
  left: auto;
  right: 1.25rem;
  bottom: 1.25rem;
  width: auto;
  justify-content: flex-end;
  pointer-events: none;
}

.hero-slider__button,
.hero-slider__dots {
  pointer-events: auto;
}

.hero-slider__dots {
  position: static;
  left: auto;
  transform: none;
}

@media (max-width: 680px) {
  .hero-slider__controls {
    left: auto;
    right: 0.75rem;
    bottom: 0.75rem;
  }
  .hero-slider__dots {
    display: flex;
  }
}
/* Editorias mobile com ícones, cards uniformes e banner proporcional. */
@media (max-width: 680px) {
  .editorial-highlights__nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
  }
  .editorial-highlights__nav a .pu-editorial-icon {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    color: var(--pu-color-primary);
    font-size: 20px;
    object-fit: cover;
    border-radius: var(--pu-radius-sm);
  }
  .editorial-highlight__posts {
    align-items: stretch;
  }
  .editorial-highlight__posts .news-card {
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .editorial-highlight__posts .news-card__media {
    flex: 0 0 auto;
  }
  .editorial-highlight__posts .news-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
  }
  .editorial-highlight__posts .news-card__body .meta {
    margin-top: auto;
  }
  .home-layout > .pu-ad {
    width: min(100%, 970px);
    max-width: 970px;
  }
  .pu-ad__stage,
  .pu-ad__placeholder,
  .pu-ad picture img {
    aspect-ratio: 970/250;
  }
  .pu-ad picture img {
    max-width: 970px;
    height: auto;
    object-fit: contain;
  }
}
/* Páginas institucionais, legais e contato. */
.pu-institutional-page,
.pu-legal-page,
.pu-contact-landing {
  width: min(100%, 920px);
  margin: 1.5rem auto 5rem;
  color: var(--pu-color-text);
}

.pu-institutional-page > p,
.pu-legal-page > p,
.pu-legal-page li {
  font-size: 1.05rem;
  line-height: 1.75;
}

.pu-institutional-page h2,
.pu-legal-page h2,
.pu-contact-landing h2 {
  margin: 3rem 0 1rem;
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.pu-institutional-page h3,
.pu-legal-page h3 {
  margin: 2rem 0 0.65rem;
  font-size: 1.15rem;
}

.pu-institutional-lead,
.pu-contact-hero {
  padding: clamp(1.5rem, 4vw, 2.75rem);
  border-left: 5px solid var(--pu-color-primary);
  border-radius: 0 var(--pu-radius-md) var(--pu-radius-md) 0;
  background: var(--pu-color-surface);
}

.pu-institutional-lead p,
.pu-contact-hero p {
  margin: 0.75rem 0 0;
  font-size: 1.15rem;
  line-height: 1.55;
}

.pu-values-grid,
.pu-contact-topics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pu-value-card,
.pu-contact-topic,
.pu-editorial-responsible,
.pu-contact-quick {
  padding: 1.5rem;
  border: 1px solid var(--pu-color-border);
  border-radius: var(--pu-radius-md);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.pu-value-card strong {
  display: block;
  color: var(--pu-color-primary);
  margin-bottom: 0.35rem;
}

.pu-editorial-responsible {
  border-top: 4px solid var(--pu-color-primary);
}

.pu-editorial-responsible p {
  margin: 0.35rem 0;
}

.pu-contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.pu-contact-actions .button {
  display: flex;
  justify-content: center;
  padding: 1rem 1.25rem;
  text-align: center;
}

.pu-contact-quick {
  margin-top: 2rem;
}

.pu-contact-quick a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--pu-color-text);
  border-bottom: 1px solid var(--pu-color-border);
}

.pu-contact-quick a:last-child {
  border-bottom: 0;
}

.pu-contact-quick .dashicons,
.pu-contact-topic .dashicons {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--pu-color-primary);
  font-size: 30px;
}

.pu-contact-topic {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
  color: var(--pu-color-text);
}

.pu-contact-topic h3 {
  margin: 1.25rem 0 0.5rem;
}

.pu-contact-topic p {
  margin: 0;
  line-height: 1.55;
}

.pu-contact-topic span:last-child {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--pu-color-primary);
  font-weight: 800;
}

.pu-contact-landing .pu-contact {
  max-width: none;
  margin-top: 3rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  border: 1px solid var(--pu-color-border);
  border-radius: var(--pu-radius-md);
  background: #fff;
}

.pu-legal-page > p:first-child {
  color: var(--pu-color-muted);
  font-weight: 700;
}

@media (max-width: 680px) {
  .pu-values-grid,
  .pu-contact-topics,
  .pu-contact-actions {
    grid-template-columns: 1fr;
  }
  .pu-contact-topic {
    min-height: 0;
  }
}
.pu-institutional-banner {
  margin: 3rem 0;
}

.pu-institutional-banner img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2048/576;
  object-fit: cover;
  border-radius: var(--pu-radius-md);
  box-shadow: var(--pu-shadow);
}

.pu-contact-topics {
  align-items: stretch;
}

.pu-contact-topic {
  height: 100%;
}

.pu-contact-topic > span:last-child {
  margin-top: auto;
}

.pu-cookie[hidden],
.pu-cookie [hidden] {
  display: none !important;
}

.pu-cookie__banner {
  position: fixed;
  z-index: 99990;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  width: min(1100px, 100% - 2rem);
  margin: 0 auto;
  padding: 1.25rem;
  border: 1px solid var(--pu-color-border);
  border-radius: var(--pu-radius-md);
  background: #fff;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.pu-cookie__banner h2,
.pu-cookie__panel h2 {
  margin: 0 0 0.4rem;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.pu-cookie__banner p,
.pu-cookie__panel > p {
  max-width: 760px;
  margin: 0;
  color: var(--pu-color-muted);
  line-height: 1.5;
}

.pu-cookie a {
  color: var(--pu-color-primary);
  font-weight: 700;
}

.pu-cookie__actions,
.pu-cookie__modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.pu-cookie__actions .button,
.pu-cookie__modal-actions .button {
  white-space: nowrap;
}

.pu-cookie__link {
  padding: 0.65rem 0.4rem;
  color: var(--pu-color-primary);
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.pu-cookie__modal {
  position: fixed;
  z-index: 99999;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.68);
}

.pu-cookie__panel {
  position: relative;
  width: min(680px, 100%);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: clamp(1.25rem, 4vw, 2rem);
  border-radius: var(--pu-radius-md);
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.pu-cookie__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--pu-color-text);
  border: 0;
  border-radius: 50%;
  background: #f1f1f1;
  font-size: 1.6rem;
  cursor: pointer;
}

.pu-cookie__categories {
  margin: 1.5rem 0;
  border-top: 1px solid var(--pu-color-border);
}

.pu-cookie__category {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--pu-color-border);
}

.pu-cookie__category strong,
.pu-cookie__category p {
  display: block;
}

.pu-cookie__category p {
  margin-top: 0.25rem;
  margin-bottom: 0;
  color: var(--pu-color-muted);
  line-height: 1.4;
}

.pu-cookie__category input {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  accent-color: var(--pu-color-primary);
}

.pu-cookie__preferences {
  position: fixed;
  z-index: 99980;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.4rem;
  align-items: center;
  padding: 0.6rem 0.75rem;
  color: var(--pu-color-text);
  border: 1px solid var(--pu-color-primary);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

body.pu-cookie-modal-open {
  overflow: hidden;
}

@media (max-width: 800px) {
  .pu-cookie__banner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .pu-cookie__actions .button {
    flex: 1 1 auto;
  }
}
@media (max-width: 520px) {
  .pu-cookie__banner {
    right: 0.5rem;
    bottom: 0.5rem;
    left: 0.5rem;
    width: calc(100% - 1rem);
    padding: 1rem;
  }
  .pu-cookie__actions,
  .pu-cookie__modal-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .pu-cookie__actions .button,
  .pu-cookie__modal-actions .button,
  .pu-cookie__link {
    width: 100%;
    text-align: center;
  }
  .pu-cookie__category {
    align-items: flex-start;
  }
  .pu-cookie__preferences {
    right: 0.5rem;
    bottom: 0.5rem;
    left: auto;
  }
}
/* Padronização final de superfícies, ações e formulários. */
.button,
.submit,
button.button,
input[type=submit] {
  min-height: 46px;
  border: 1px solid var(--pu-color-primary);
  border-radius: var(--pu-radius-sm);
  background: var(--pu-color-primary);
  color: #fff;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.button:hover,
.submit:hover,
button.button:hover,
input[type=submit]:hover {
  border-color: var(--pu-color-primary-dark);
  background: var(--pu-color-primary-dark);
  color: #fff;
}

.button:active,
.submit:active,
button.button:active,
input[type=submit]:active {
  box-shadow: none;
  transform: translateY(1px);
}

.button:focus-visible,
.submit:focus-visible,
button.button:focus-visible,
input[type=submit]:focus-visible {
  outline: 3px solid rgba(223, 10, 10, 0.3);
  outline-offset: 3px;
}

.button:disabled,
.submit:disabled,
button.button:disabled,
input[type=submit]:disabled {
  border-color: #bbb;
  background: #ccc;
  color: #666;
  box-shadow: none;
  cursor: not-allowed;
}

.button--outline,
button.button--outline {
  border-color: var(--pu-color-border);
  background: #fff;
  color: var(--pu-color-primary);
  box-shadow: none;
}

.button--outline:hover,
button.button--outline:hover {
  border-color: var(--pu-color-primary);
  background: #fff1f1;
  color: var(--pu-color-primary-dark);
}

.comment-login-callout,
.pu-institutional-lead,
.pu-contact-hero,
.pu-notice {
  border: 1px solid var(--pu-color-border);
  border-left: 4px solid var(--pu-color-primary);
  border-radius: var(--pu-radius-md);
  background: var(--pu-color-surface);
}

.pu-auth .login-remember label,
.pu-auth .pu-consent,
.pu-contact .pu-consent {
  display: inline-flex;
  grid-template-columns: none;
  gap: 0.6rem;
  align-items: center;
  width: auto;
  cursor: pointer;
}

.pu-auth .login-remember input[type=checkbox],
.pu-auth .pu-consent input[type=checkbox],
.pu-contact .pu-consent input[type=checkbox] {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--pu-color-primary);
}

.pu-auth .pu-consent span,
.pu-contact .pu-consent span {
  line-height: 1.4;
}

.pu-value-card strong {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  color: var(--pu-color-text);
  font-size: 1.08rem;
}

.pu-value-card strong::before {
  color: var(--pu-color-primary);
  font-family: dashicons;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
}

.pu-value-card:nth-child(1) strong::before {
  content: "\f313";
}

.pu-value-card:nth-child(2) strong::before {
  content: "\f177";
}

.pu-value-card:nth-child(3) strong::before {
  content: "\f487";
}

.pu-contact-topics {
  grid-auto-rows: 1fr;
}

.pu-contact-topics > .pu-contact-topic {
  min-width: 0;
  min-height: 290px;
  height: 100%;
  padding: 1.5rem;
}

.pu-contact-topic > h3 {
  margin: 1.25rem 0 0.5rem;
}

.pu-contact-topic > p {
  flex: 1 1 auto;
}

.pu-contact-topic > span:last-child {
  flex: 0 0 auto;
  margin-top: 1.25rem;
}

.page .content-entry > .entry-header {
  width: min(100%, 920px);
  margin: 1.5rem auto 0;
}

.page .content-entry > .entry-header .entry-title {
  margin-bottom: 0;
}

.pu-cookie__category--last {
  border-bottom: 0;
}

.pu-cookie__switch {
  display: inline-flex;
  flex: 0 0 128px;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-start;
}

.pu-cookie__modal-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.pu-cookie__modal-actions .button {
  width: 100%;
}

.site-header__actions {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  justify-content: flex-end;
  grid-column: 3;
  grid-row: 1;
}

.site-header__search-toggle,
.editorial-header__search-toggle,
.mobile-home-link {
  display: none;
}

.site-footer a[href^="https://wa.me/"] {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}

.site-footer a[href^="https://wa.me/"] .dashicons {
  color: var(--pu-color-primary);
}

.footer-bottom a {
  color: var(--pu-color-text);
  font-weight: 700;
}

.footer-bottom a:hover {
  color: var(--pu-color-primary);
  text-decoration: underline;
}

.pu-footer-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--pu-color-text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.pu-footer-link:hover {
  color: var(--pu-color-primary);
  text-decoration: underline;
}

@media (max-width: 680px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }
  .site-header__actions {
    grid-column: 2;
    grid-row: 1;
  }
  .site-header__search-toggle,
  .editorial-header__search-toggle {
    display: grid;
    place-items: center;
    color: inherit;
  }
  .site-header__search-toggle {
    color: var(--pu-color-text);
  }
  .header-search.is-open,
  .editorial-header__search.is-open {
    position: absolute;
    z-index: 40;
    top: 100%;
    right: 0.625rem;
    left: 0.625rem;
    display: block;
    width: auto;
    padding: 0.75rem;
    border: 1px solid var(--pu-color-border);
    border-radius: var(--pu-radius-md);
    background: #fff;
    box-shadow: var(--pu-shadow);
  }
  .editorial-header__search.is-open {
    top: calc(100% + 3px);
    background: #1f1f1f;
  }
  .header-search.is-open input,
  .editorial-header__search.is-open input {
    width: 100%;
  }
  .editorial-header__actions {
    gap: 0.15rem;
    justify-self: end;
  }
  .editorial-header__search-toggle,
  .editorial-header__account {
    width: 40px;
    height: 40px;
    padding: 0;
  }
  .editorial-navigation .mobile-home-link {
    display: flex;
    gap: 0.55rem;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0.7rem 0.55rem;
    color: var(--pu-color-text);
    border-bottom: 1px solid var(--pu-color-border);
    font-weight: 800;
  }
  .pu-contact-topics {
    grid-auto-rows: auto;
  }
  .pu-contact-topics > .pu-contact-topic {
    min-height: 250px;
  }
  .pu-cookie__modal-actions {
    grid-template-columns: 1fr;
  }
}
/* Banner hero de página (Sobre o Ponto Urgente). */
.pu-page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  margin-bottom: 2.5rem;
  background-color: #111;
  background-size: cover;
  background-position: center;
}

.pu-page-hero__title {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 1.5rem;
  color: #fff;
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

@media (max-width: 680px) {
  .pu-page-hero {
    min-height: 200px;
    background-size: cover;
    background-position: center;
  }
}
