:root {
  --nexo-navy: #0b234a;
  --nexo-blue: #0767df;
  --nexo-blue-dark: #064ea8;
  --nexo-red: #ed1230;
  --nexo-green: #249130;
  --nexo-orange: #f35a15;
  --nexo-purple: #8c2ab2;
  --nexo-sky: #2495d0;
  --nexo-gray: #4b5563;
  --ink: #111827;
  --muted: #68707c;
  --line: #e1e5ea;
  --soft: #f7f8fa;
  --paper: #ffffff;
  --radius: 13px;
  --shell: 1180px;
  --shadow: 0 2px 8px rgba(14, 29, 52, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body {
  margin: 0;
  padding-bottom: 75px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--nexo-navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-shell {
  width: min(calc(100% - 50px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
}

.header-main {
  height: 69px;
  border-bottom: 1px solid var(--line);
}

.header-main__inner {
  display: flex;
  align-items: center;
  height: 100%;
}

.icon-button,
.profile-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--nexo-navy);
  background: transparent;
  cursor: pointer;
}

.icon-button:hover,
.icon-button:focus-visible {
  background: #edf3fb;
}

.icon-button svg,
.profile-button svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.9;
}

.brand {
  display: inline-flex;
  width: 176px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 24px;
  line-height: 0.85;
}

.brand__main {
  color: #0c58aa;
  font-size: 43px;
  font-weight: 800;
  letter-spacing: 2px;
}

.brand__sub {
  align-self: flex-end;
  margin-top: 8px;
  margin-right: 3px;
  color: var(--nexo-navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3.2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.profile-button {
  color: #fff;
  background: var(--nexo-navy);
}

.profile-button svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.topic-nav {
  height: 58px;
  border-bottom: 1px solid var(--line);
}

.topic-nav__track {
  display: flex;
  height: 100%;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
}

.topic-nav__track::-webkit-scrollbar {
  display: none;
}

.topic-nav__link {
  --topic-color: var(--nexo-blue);
  position: relative;
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  justify-content: center;
  padding: 0 27px;
  font-size: 17px;
  font-weight: 500;
  transition: color 160ms ease, background-color 160ms ease;
}

.topic-nav__link.is-active {
  color: #fff;
  background: var(--topic-color);
  font-weight: 700;
}

.topic-nav__link::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 6px;
  border-radius: 4px 4px 0 0;
  background: var(--topic-color);
  content: "";
}

.topic-nav__link:hover,
.topic-nav__link:focus-visible {
  color: #fff;
  background: var(--topic-color);
  outline: none;
}

.topic-nav__link[href="hoje.html"],
.topic-nav__link[href="noticias.html"] {
  --topic-color: var(--nexo-red);
}

.topic-nav__link[href="politica"],
.topic-nav__link[href*="categoria=politica"] {
  --topic-color: var(--nexo-blue);
}

.topic-nav__link[href="empregos"] {
  --topic-color: var(--nexo-green);
}

.topic-nav__link[href*="categoria=economia"] {
  --topic-color: var(--nexo-orange);
}

.topic-nav__link[href="eventos.html"],
.topic-nav__link[href*="categoria=eventos"] {
  --topic-color: var(--nexo-purple);
}

.topic-nav__link[href="corridas.html"] {
  --topic-color: #009f91;
}

.topic-nav__link[href*="categoria=esportes"] {
  --topic-color: var(--nexo-sky);
}

.topic-nav__link.topic-nav__more {
  --topic-color: var(--nexo-gray);
}

.topic-nav__more {
  gap: 12px;
}

.topic-nav__more svg {
  width: 20px;
}

.breaking-strip {
  min-height: 69px;
  background: #fff;
}

.breaking-strip__inner {
  display: flex;
  min-height: 69px;
  align-items: center;
  gap: 17px;
  font-size: 16px;
}

.breaking-strip__label {
  padding: 8px 13px;
  border-radius: 8px;
  color: #fff;
  background: var(--nexo-red);
  font-size: 15px;
  font-weight: 800;
}

.breaking-strip__headline {
  overflow: hidden;
  flex: 0 1 auto;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breaking-strip__dot,
.breaking-strip time {
  flex: 0 0 auto;
  color: var(--muted);
}

.page-content {
  padding-top: 0;
}

.hero {
  position: relative;
  height: 348px;
  min-height: 348px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background: #071a35;
  box-shadow: var(--shadow);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center 48%;
  transition: opacity 220ms ease;
}

.hero__story-link {
  position: absolute;
  z-index: 1;
  inset: 0;
  cursor: pointer;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(0, 10, 24, 0.98) 0%, rgba(0, 12, 31, 0.88) 30%, rgba(2, 16, 38, 0.33) 62%, rgba(0, 0, 0, 0.04) 100%),
    linear-gradient(0deg, rgba(0, 9, 25, 0.82) 0%, transparent 42%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 405px;
  padding: 30px 0 54px 25px;
}

.hero__tag {
  display: inline-flex;
  min-width: 124px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border-radius: 8px;
  background: var(--nexo-red);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.hero h1 {
  max-width: 380px;
  margin: 18px 0 14px;
  font-size: clamp(27px, 3vw, 31px);
  line-height: 1.2;
  letter-spacing: -0.8px;
}

.hero h1 a {
  position: relative;
  z-index: 3;
  color: inherit;
}

.hero h1 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero__content p {
  max-width: 365px;
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 25px;
  font-size: 14px;
}

.hero__meta a {
  color: #0f8cff;
  font-weight: 600;
}

.hero__credit {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 12px;
  max-width: 330px;
  padding: 5px 7px;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.35);
  font-size: 9px;
}

.hero__dots {
  position: absolute;
  z-index: 4;
  bottom: 17px;
  left: 50%;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.hero__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.hero__dot.is-active {
  background: var(--nexo-blue);
}

.content-section {
  margin-top: 24px;
}

.section-heading {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
}

.section-heading h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--nexo-blue);
  font-size: 13px;
  font-weight: 700;
}

.section-heading > a svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.8;
}

.section-heading--plain {
  justify-content: flex-start;
}

.card-rail {
  scrollbar-width: none;
}

.card-rail::-webkit-scrollbar {
  display: none;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.news-card,
.feature-card {
  --category-color: var(--nexo-blue);
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.news-card::after,
.feature-card::after,
.category-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--category-color);
  content: "";
}

.category-blue { --category-color: var(--nexo-blue); }
.category-green { --category-color: var(--nexo-green); }
.category-orange { --category-color: var(--nexo-orange); }
.category-red { --category-color: var(--nexo-red); }
.category-purple { --category-color: var(--nexo-purple); }
.category-sky { --category-color: var(--nexo-sky); }
.category-gray { --category-color: var(--nexo-gray); }

.news-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1.82 / 1;
  margin: 9px 9px 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.news-card__credit {
  position: absolute;
  right: 5px;
  bottom: 5px;
  max-width: calc(100% - 10px);
  padding: 3px 5px;
  overflow: hidden;
  border-radius: 4px;
  color: #fff;
  background: rgba(0, 0, 0, 0.58);
  font-size: 8px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.news-card__image img,
.feature-card > a:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__body,
.feature-card__body {
  padding: 9px 11px 24px;
}

.news-card__category,
.feature-card__category {
  display: block;
  margin-bottom: 7px;
  color: var(--category-color);
  font-size: 13px;
  font-weight: 800;
}

.news-card time,
.feature-card time {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.news-card h3,
.feature-card h3 {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.42;
  letter-spacing: -0.25px;
}

.news-card h3 a,
.feature-card h3 a {
  display: block;
}

.category-section {
  margin-top: 25px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.category-card {
  --category-color: var(--nexo-blue);
  position: relative;
  display: flex;
  min-height: 107px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 15px;
  font-weight: 600;
}

.category-card svg {
  width: 34px;
  height: 34px;
  color: var(--category-color);
  stroke-width: 1.8;
}

.category-card.category-blue span,
.category-card.category-green span {
  color: var(--category-color);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card > a:first-child,
.jobs-visual {
  display: block;
  height: 116px;
  margin: 8px 8px 0;
  overflow: hidden;
  border-radius: 8px;
}

.jobs-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  color: #fff;
  background: linear-gradient(120deg, #0e5abf, #006fe9 64%, #0b397a);
}

.jobs-visual strong {
  font-size: 20px;
  line-height: 1.1;
}

.jobs-visual svg {
  width: 65px;
  height: 65px;
  opacity: 0.92;
  stroke-width: 1.3;
}

.feature-card__body {
  min-height: 128px;
  padding-top: 8px;
}

.feature-card h3 {
  font-size: 16px;
  line-height: 1.35;
}

.most-read-section {
  margin-bottom: 10px;
}

.most-read-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(260px, 1fr);
  gap: 19px;
}

.ranking-list {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  list-style: none;
}

.ranking-list li {
  display: grid;
  min-height: 60px;
  grid-template-columns: 32px minmax(0, 1fr) 86px 92px;
  align-items: center;
  gap: 12px;
  padding: 7px 10px 7px 15px;
  border-bottom: 1px solid var(--line);
}

.ranking-list li:last-child {
  border-bottom: 0;
}

.ranking-list__number {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--nexo-blue);
  font-size: 14px;
  font-weight: 800;
}

.ranking-list a {
  font-size: 14px;
  line-height: 1.25;
}

.ranking-list time {
  color: var(--muted);
  font-size: 12px;
}

.ranking-list img {
  width: 92px;
  height: 44px;
  border-radius: 4px;
  object-fit: cover;
}

.event-promo {
  display: flex;
  min-height: 194px;
  overflow: hidden;
  border-radius: 12px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 32%, rgba(16, 112, 255, 0.55), transparent 28%),
    linear-gradient(125deg, #051838 0%, #07336f 54%, #0a1c4a 100%);
  box-shadow: var(--shadow);
}

.event-promo__copy {
  position: relative;
  z-index: 2;
  width: 61%;
  padding: 23px 0 19px 19px;
}

.event-promo__copy strong {
  display: block;
  font-size: 27px;
  line-height: 0.98;
}

.event-promo__copy p {
  max-width: 165px;
  margin: 11px 0 14px;
  font-size: 11px;
  line-height: 1.45;
}

.event-promo__copy a {
  display: inline-flex;
  min-height: 37px;
  align-items: center;
  padding: 8px 17px;
  border-radius: 6px;
  background: var(--nexo-blue);
  font-size: 12px;
  font-weight: 600;
}

.event-promo__phone {
  align-self: flex-end;
  width: 98px;
  height: 170px;
  margin-right: 15px;
  padding-top: 35px;
  border: 5px solid #0c1734;
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(160deg, #05142b, #0a2c63);
  text-align: center;
  box-shadow: 0 0 25px rgba(41, 117, 255, 0.6);
  transform: rotate(-2deg);
}

.event-promo__phone span {
  display: block;
  font-size: 16px;
  font-weight: 800;
}

.event-promo__phone small {
  display: block;
  font-size: 8px;
  letter-spacing: 1.5px;
}

.event-promo__phone svg {
  width: 32px;
  height: 32px;
  margin-top: 24px;
  color: #4ca2ff;
}

.bottom-nav {
  position: fixed;
  z-index: 40;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: 68px;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -3px 16px rgba(16, 31, 52, 0.08);
  backdrop-filter: blur(12px);
}

.bottom-nav a,
.bottom-nav button {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  border: 0;
  color: #24272b;
  background: transparent;
  font-size: 12px;
  cursor: pointer;
}

.bottom-nav svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.8;
}

.bottom-nav .is-active {
  color: var(--nexo-blue);
  font-weight: 700;
}

.bottom-nav .is-active svg {
  fill: currentColor;
}

.side-drawer {
  position: fixed;
  z-index: 102;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(360px, 88vw);
  padding: 22px;
  background: #fff;
  box-shadow: 20px 0 60px rgba(1, 13, 33, 0.2);
  transform: translateX(-110%);
  transition: transform 220ms ease;
}

.side-drawer.is-open {
  transform: translateX(0);
}

.side-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.brand--small {
  width: 130px;
  align-items: flex-start;
  margin: 0;
}

.brand--small .brand__main {
  font-size: 31px;
}

.brand--small .brand__sub {
  margin-top: 7px;
  font-size: 8px;
}

.side-drawer nav {
  display: grid;
  gap: 5px;
  padding-top: 18px;
}

.side-drawer nav a {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 14px;
  padding: 0 12px;
  border-radius: 10px;
  font-weight: 600;
}

.side-drawer nav a:hover {
  color: var(--nexo-blue);
  background: #eef5ff;
}

.side-drawer nav svg {
  width: 22px;
}

.drawer-backdrop {
  position: fixed;
  z-index: 101;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(3, 12, 27, 0.48);
}

.search-panel {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: start center;
  padding: 95px 20px 20px;
  background: rgba(3, 12, 27, 0.55);
  backdrop-filter: blur(5px);
}

.search-panel[hidden] {
  display: none;
}

.search-panel__card {
  width: min(680px, 100%);
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(2, 14, 34, 0.25);
}

.search-panel__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-panel__heading h2 {
  margin: 0;
  font-size: 24px;
}

.search-panel form {
  margin-top: 18px;
}

.search-panel label {
  display: block;
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.search-panel__field {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 7px 7px 7px 13px;
  border: 1px solid #cfd6df;
  border-radius: 10px;
}

.search-panel__field svg {
  width: 21px;
  color: var(--muted);
}

.search-panel__field input {
  min-width: 0;
  padding: 9px 0;
  border: 0;
  outline: 0;
}

.search-panel__field button {
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: var(--nexo-blue);
  font-weight: 700;
  cursor: pointer;
}

/* Página da matéria */
.article-page-nexo {
  background: #fff;
}

.article-main-nexo {
  padding: 42px 0 70px;
}

.article-stage {
  max-width: 980px;
}

.article-story__status,
.article-empty {
  display: grid;
  min-height: 300px;
  place-items: center;
  color: var(--muted);
}

.article-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 13px;
}

.article-breadcrumb a:hover {
  color: var(--nexo-blue);
}

.article-breadcrumb strong {
  color: var(--nexo-blue);
}

.article-story__hero {
  max-width: 880px;
}

.article-story__eyebrow {
  margin-bottom: 13px;
  color: var(--nexo-blue);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-story__hero h1 {
  margin: 0;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -2.4px;
}

.article-story__summary {
  max-width: 820px;
  margin: 21px 0 0;
  color: #424a55;
  font-size: clamp(19px, 2.5vw, 24px);
  line-height: 1.46;
}

.article-story__meta {
  color: var(--muted);
  font-size: 13px;
}

.article-story__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
}

.article-story__header-share {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid #c9d8eb;
  border-radius: 9px;
  color: var(--nexo-blue-dark);
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.article-story__header-share:hover {
  color: #fff;
  border-color: var(--nexo-blue);
  background: var(--nexo-blue);
}

.article-story__header-share svg {
  width: 18px;
  height: 18px;
}

.article-story__media {
  margin: 35px 0 0;
}

.article-story__media img {
  width: 100%;
  max-height: 590px;
  border-radius: 15px;
  object-fit: cover;
  background: var(--soft);
}

.article-story__caption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.article-story__content {
  max-width: 760px;
  margin: 38px auto 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.75;
}

.article-story__content p {
  margin: 0 0 25px;
}

.article-story__content h2 {
  margin: 42px 0 15px;
  font-family: "Inter", sans-serif;
  font-size: 28px;
  line-height: 1.2;
}

.article-story__note {
  padding: 15px 18px;
  border-left: 4px solid var(--nexo-blue);
  background: #f3f7fc;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.article-story__note-link {
  color: var(--nexo-blue-dark);
  font-weight: 600;
}

.article-sources,
.article-share {
  max-width: 760px;
  margin: 38px auto 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow);
}

.article-sources h2 {
  margin: 0 0 17px;
  font-size: 21px;
}

.article-sources ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-sources a {
  display: grid;
  gap: 5px;
}

.article-sources strong {
  color: var(--nexo-blue-dark);
  font-size: 15px;
}

.article-sources span {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-share__title {
  margin-right: auto;
  font-size: 15px;
}

.article-share__button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--nexo-blue);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.article-share__button--whatsapp {
  background: #15883e;
}

.article-share__icon,
.article-share__button svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.article-related {
  max-width: 980px;
  margin-top: 64px;
}

.contribution-banner {
  display: flex;
  max-width: 980px;
  min-height: 170px;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 45px;
  padding: 28px 38px;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(125deg, #061d43, #0b54ac 72%, #0574dd);
}

.contribution-banner span {
  display: block;
  margin-bottom: 8px;
  color: #8dc5ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.contribution-banner strong {
  display: block;
  font-size: clamp(21px, 3vw, 30px);
}

.contribution-banner p {
  margin: 8px 0 0;
  color: #dcecff;
  font-size: 14px;
}

.contribution-banner > a {
  display: inline-flex;
  min-width: max-content;
  min-height: 45px;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  border-radius: 8px;
  color: var(--nexo-navy);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.contribution-banner svg {
  width: 18px;
}

/* Arquivo de notícias */
.news-index-main {
  padding: 42px 0 90px;
}

.news-index-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 31px;
  border-bottom: 1px solid var(--line);
}

.news-index-hero span {
  color: var(--nexo-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
}

.news-index-hero h1 {
  margin: 8px 0 7px;
  font-size: clamp(37px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -2px;
}

.news-index-hero p {
  margin: 0;
  color: var(--muted);
}

.news-index-search {
  display: grid;
  width: min(410px, 100%);
  grid-template-columns: 24px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 6px 6px 6px 13px;
  border: 1px solid #cfd6df;
  border-radius: 10px;
}

.news-index-search svg {
  width: 20px;
  color: var(--muted);
}

.news-index-search input {
  min-width: 0;
  padding: 9px 0;
  border: 0;
  outline: 0;
}

.news-index-search button,
.sidebar-newsletter button {
  min-height: 40px;
  padding: 0 17px;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: var(--nexo-blue);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.filter-chips {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 21px 0;
  scrollbar-width: none;
}

.filter-chips::-webkit-scrollbar {
  display: none;
}

.filter-chips a {
  min-width: max-content;
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #46505e;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
}

.filter-chips a.is-active {
  border-color: var(--nexo-blue);
  color: #fff;
  background: var(--nexo-blue);
}

.news-index-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: 38px;
}

.news-list {
  display: grid;
  gap: 0;
}

.expanded-card {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 23px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.expanded-card:first-child {
  padding-top: 0;
}

.expanded-card[hidden] {
  display: none;
}

.expanded-card__image {
  position: relative;
  display: block;
  height: 166px;
  overflow: hidden;
  border-radius: 11px;
  background: var(--soft);
}

.expanded-card__credit {
  position: absolute;
  right: 7px;
  bottom: 7px;
  max-width: calc(100% - 14px);
  padding: 3px 6px;
  overflow: hidden;
  border-radius: 4px;
  color: #fff;
  background: rgba(3, 18, 43, 0.78);
  font-size: 8px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.expanded-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 16px;
  color: #fff;
  background: linear-gradient(135deg, #062a62, #0875d1);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.expanded-card__placeholder.category-politica { background: linear-gradient(135deg, #063b87, #0875d1); }
.expanded-card__placeholder.category-empregos { background: linear-gradient(135deg, #126c2a, #27a346); }
.expanded-card__placeholder.category-economia { background: linear-gradient(135deg, #d94b00, #ff7a00); }
.expanded-card__placeholder.category-eventos { background: linear-gradient(135deg, #68209a, #a23bd1); }
.expanded-card__placeholder.category-esportes { background: linear-gradient(135deg, #0673a9, #23a4df); }
.expanded-card__placeholder.category-seguranca { background: linear-gradient(135deg, #a7001c, #ec1638); }
.expanded-card__placeholder.category-clima { background: linear-gradient(135deg, #17742b, #31a447); }

.news-list-loading {
  min-height: 240px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 14px;
}

.expanded-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expanded-card__category {
  margin-right: 12px;
  color: var(--nexo-blue);
  font-size: 12px;
  font-weight: 800;
}

.expanded-card__place {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--muted);
  font-size: 12px;
}

.expanded-card__place svg {
  width: 13px;
  height: 13px;
}

.expanded-card h2 {
  margin: 10px 0 8px;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.45px;
}

.expanded-card p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 10px;
  color: #505866;
  font-size: 13px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.expanded-card time {
  color: var(--muted);
  font-size: 11px;
}

.news-list-empty {
  min-height: 330px;
  place-items: center;
  align-content: center;
  gap: 9px;
  color: var(--muted);
  text-align: center;
}

.news-list-empty:not([hidden]) {
  display: grid;
}

.news-list-empty svg {
  width: 35px;
  height: 35px;
  color: var(--nexo-blue);
}

.news-list-empty p {
  margin: 0;
  font-size: 13px;
}

.news-index-sidebar {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 18px;
}

.news-index-sidebar section {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.news-index-sidebar h2 {
  margin: 0 0 16px;
  font-size: 20px;
}

.news-index-sidebar ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.news-index-sidebar li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.news-index-sidebar li span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--nexo-blue);
  font-size: 12px;
  font-weight: 800;
}

.news-index-sidebar li a {
  font-size: 13px;
  line-height: 1.35;
}

.sidebar-newsletter {
  color: #fff;
  background: linear-gradient(135deg, #071e46, #075bbd) !important;
}

.sidebar-newsletter > svg {
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  color: #85c3ff;
}

.sidebar-newsletter p {
  color: #d8e9ff;
  font-size: 13px;
  line-height: 1.5;
}

.sidebar-newsletter form {
  display: grid;
  gap: 8px;
}

.sidebar-newsletter input {
  min-height: 41px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 7px;
  outline: 0;
}

.sidebar-newsletter button {
  color: var(--nexo-navy);
  background: #fff;
}

.sidebar-newsletter small {
  display: block;
  margin-top: 10px;
  color: #aecdec;
  font-size: 9px;
  line-height: 1.4;
}

/* Ao vivo */
.live-main {
  padding: 42px 0 90px;
}

.live-hero {
  min-height: 430px;
  padding: 48px;
  overflow: hidden;
  border-radius: 17px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 24%, rgba(0, 111, 239, 0.55), transparent 28%),
    linear-gradient(135deg, #06162f, #0b2858 60%, #081b3d);
}

.live-hero__signal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff5068;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

.live-hero__signal span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--nexo-red);
  box-shadow: 0 0 0 6px rgba(237, 18, 48, 0.16);
}

.live-hero > h1 {
  max-width: 770px;
  margin: 22px 0 14px;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.04;
  letter-spacing: -2.6px;
}

.live-hero > p {
  max-width: 650px;
  color: #c8dcf6;
  font-size: 18px;
  line-height: 1.5;
}

.live-placeholder {
  display: flex;
  max-width: 720px;
  min-height: 90px;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding: 18px 21px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.live-placeholder svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: #5aaaff;
}

.live-placeholder strong {
  font-size: 14px;
}

.live-placeholder span {
  color: #bcd0e9;
  font-size: 12px;
}

.live-schedule {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow);
}

.live-schedule article {
  display: grid;
  min-height: 115px;
  grid-template-columns: 100px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--line);
}

.live-schedule article:last-child {
  border-bottom: 0;
}

.live-schedule time {
  color: var(--nexo-blue);
  font-size: 25px;
  font-weight: 800;
}

.live-schedule span {
  color: var(--nexo-blue);
  font-size: 11px;
  font-weight: 800;
}

.live-schedule h2 {
  margin: 6px 0;
  font-size: 19px;
}

.live-schedule p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1040px) {
  .site-shell {
    width: calc(100% - 50px);
  }

  .topic-nav__link {
    padding-inline: 24px;
  }

  .header-actions {
    gap: 23px;
  }

  .news-index-layout {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 25px;
  }

  .expanded-card {
    grid-template-columns: 215px minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 69px;
  }

  .site-shell {
    width: calc(100% - 28px);
  }

  .header-main {
    height: 62px;
  }

  .brand {
    width: 126px;
    margin-left: 8px;
  }

  .brand__main {
    font-size: 31px;
  }

  .brand__sub {
    margin-top: 6px;
    font-size: 7px;
    letter-spacing: 2.5px;
  }

  .header-actions {
    gap: 2px;
  }

  .header-actions .icon-button:first-child {
    display: none;
  }

  .icon-button,
  .profile-button {
    width: 38px;
    height: 38px;
  }

  .icon-button svg,
  .profile-button svg {
    width: 23px;
    height: 23px;
  }

  .topic-nav {
    height: 51px;
  }

  .topic-nav__track {
    width: 100%;
    padding: 0 14px;
    gap: 0;
  }

  .topic-nav__link {
    padding-inline: 18px;
    font-size: 14px;
  }

  .breaking-strip,
  .breaking-strip__inner {
    min-height: 61px;
  }

  .breaking-strip__inner {
    gap: 10px;
  }

  .breaking-strip__label {
    padding: 7px 10px;
    font-size: 12px;
  }

  .breaking-strip__headline {
    font-size: 13px;
  }

  .breaking-strip__dot,
  .breaking-strip time {
    display: none;
  }

  .hero {
    min-height: 420px;
  }

  .hero__image {
    object-position: 60% center;
  }

  .hero__shade {
    background: linear-gradient(0deg, rgba(1, 11, 28, 0.98) 0%, rgba(1, 13, 32, 0.75) 58%, rgba(2, 15, 38, 0.08) 100%);
  }

  .hero__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    padding: 24px 20px 55px;
  }

  .hero h1 {
    margin-top: 15px;
    font-size: 25px;
  }

  .hero__content p {
    font-size: 15px;
  }

  .hero__meta {
    margin-top: 16px;
  }

  .hero__credit {
    display: none;
  }

  .content-section {
    margin-top: 22px;
  }

  .section-heading h2 {
    font-size: 20px;
  }

  .news-grid,
  .category-grid,
  .featured-grid {
    display: flex;
    width: 100%;
    gap: 12px;
    overflow-x: auto;
    padding: 0 14px 5px 0;
    scroll-snap-type: x proximity;
  }

  .news-card {
    width: min(76vw, 280px);
    flex: 0 0 min(76vw, 280px);
    scroll-snap-align: start;
  }

  .category-card {
    width: 128px;
    flex: 0 0 128px;
    scroll-snap-align: start;
  }

  .feature-card {
    width: min(82vw, 330px);
    flex: 0 0 min(82vw, 330px);
    scroll-snap-align: start;
  }

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

  .ranking-list li {
    grid-template-columns: 30px minmax(0, 1fr) 72px;
  }

  .ranking-list time {
    display: none;
  }

  .ranking-list img {
    width: 72px;
  }

  .event-promo {
    min-height: 185px;
  }

  .bottom-nav {
    height: 64px;
  }

  .bottom-nav a,
  .bottom-nav button {
    font-size: 10px;
  }

  .bottom-nav svg {
    width: 22px;
    height: 22px;
  }

  .article-main-nexo {
    padding-top: 25px;
  }

  .article-story__hero h1 {
    font-size: 36px;
    letter-spacing: -1.5px;
  }

  .article-story__summary {
    font-size: 18px;
  }

  .article-story__media {
    margin-top: 27px;
  }

  .article-story__media img {
    min-height: 250px;
    border-radius: 12px;
  }

  .article-story__content {
    font-size: 18px;
  }

  .article-share {
    flex-wrap: wrap;
  }

  .article-share__title {
    width: 100%;
  }

  .contribution-banner {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px;
  }

  .news-index-main {
    padding-top: 27px;
  }

  .news-index-hero {
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }

  .news-index-hero h1 {
    font-size: 40px;
  }

  .news-index-search {
    width: 100%;
  }

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

  .expanded-card {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 14px;
  }

  .expanded-card__image {
    height: 126px;
  }

  .expanded-card h2 {
    display: -webkit-box;
    overflow: hidden;
    font-size: 16px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .expanded-card p {
    display: none;
  }

  .news-index-sidebar {
    position: static;
  }

  .live-main {
    padding-top: 20px;
  }

  .live-hero {
    min-height: 480px;
    padding: 30px 22px;
  }

  .live-hero > h1 {
    font-size: 39px;
    letter-spacing: -1.6px;
  }

  .live-placeholder {
    align-items: flex-start;
    flex-direction: column;
  }

  .live-schedule article {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 15px;
  }

  .live-schedule time {
    font-size: 20px;
  }
}

@media (max-width: 430px) {
  .site-shell {
    width: calc(100% - 22px);
  }

  .header-main__inner > .icon-button {
    margin-left: -5px;
  }

  .brand {
    width: 109px;
  }

  .brand__main {
    font-size: 27px;
  }

  .header-actions .profile-button {
    width: 35px;
    height: 35px;
  }

  .hero {
    min-height: 397px;
    border-radius: 11px;
  }

  .hero__tag {
    min-width: 105px;
    min-height: 34px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: 23px;
  }

  .hero__content p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .section-heading > a {
    font-size: 12px;
  }

  .search-panel__field {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .search-panel__field button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
