:root {
  --cor-primaria: #1B5E20;
  --cor-secundaria: #0D3B14;
  --cor-destaque: #D32F2F;
  --cor-texto: #222;
  --cor-muted: #666;
  --cor-borda: #e5e5e5;
  --cor-fundo: #f5f5f5;
  --fonte: "Inter", system-ui, -apple-system, sans-serif;
  --max: 1200px;
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--fonte);
  color: var(--cor-texto);
  background: var(--cor-fundo);
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--cor-primaria); text-decoration: none; }
a:hover { color: var(--cor-destaque); }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Header top */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--cor-borda);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem 0;
}
.header-brand-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  flex: 1;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.brand img { max-height: 72px; width: auto; }
.brand-text {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--cor-primaria);
  line-height: 1.15;
}
.brand-text span { color: var(--cor-destaque); }
.slogan {
  margin: 0;
  padding-left: 1rem;
  border-left: 1px solid #d8d8d8;
  font-size: 0.92rem;
  color: #555;
  max-width: 240px;
  line-height: 1.35;
}
.slogan-accent { color: var(--cor-destaque); font-weight: 700; }

.header-widgets {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.clima {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--cor-texto);
}
.clima-icon { display: flex; flex-shrink: 0; }
.clima-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.clima-text strong {
  color: var(--cor-primaria);
  font-size: 1.15rem;
  font-weight: 800;
}
.clima-text span { font-size: 0.8rem; color: #444; }
.clima-text small { font-size: 0.72rem; color: var(--cor-muted); }

.datetime {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  font-size: 0.8rem;
  color: #444;
  min-width: 150px;
}
.datetime-date { font-weight: 500; }
.datetime-time {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--cor-muted);
  font-variant-numeric: tabular-nums;
}

.social-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.social-label {
  font-size: 0.8rem;
  color: #555;
  font-weight: 600;
  white-space: nowrap;
}
.socials { display: flex; gap: 0.4rem; }
.socials a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform .15s ease, filter .15s ease;
}
.socials a:hover { transform: translateY(-1px); filter: brightness(1.08); color: #fff; }
.soc-fb { background: #1877F2; }
.soc-ig { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af); }
.soc-yt { background: #FF0000; }
.soc-wa { background: #25D366; }

/* Nav */
.main-nav {
  background: var(--cor-secundaria);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  padding: 0.45rem 0.7rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
}
.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex: 1;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #fff;
  padding: 0.9rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-menu > li > a .caret {
  font-size: 0.65rem;
  opacity: 0.85;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a,
.nav-menu > li > a.is-active {
  background: var(--cor-destaque);
  color: #fff;
}
.nav-menu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  z-index: 60;
}
.nav-menu li:hover > .submenu,
.nav-menu li:focus-within > .submenu { display: block; }
.submenu a {
  display: block;
  padding: 0.55rem 1rem;
  color: var(--cor-texto);
  font-size: 0.9rem;
}
.submenu a:hover { background: #f0f0f0; color: var(--cor-destaque); }
.nav-search { margin-left: auto; padding: 0.45rem 0; }
.nav-search form { display: flex; align-items: center; }
.nav-search input {
  border: 0;
  border-radius: 4px 0 0 4px;
  padding: 0.4rem 0.6rem;
  width: 0;
  opacity: 0;
  transition: width .2s ease, opacity .2s ease;
}
.nav-search form:focus-within input,
.nav-search input:not(:placeholder-shown) {
  width: 140px;
  opacity: 1;
}
.nav-search button {
  border: 0;
  background: transparent;
  color: #fff;
  padding: 0.45rem 0.55rem;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-search button:hover { background: rgba(255,255,255,.12); }

/* Player */
.player-wrap { margin: 1rem auto; }
.player-card {
  background: #fff;
  border: 1px solid var(--cor-borda);
  border-radius: 12px;
  padding: 1rem 1.15rem 0.75rem;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 1.25rem;
  align-items: center;
}
.player-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.player-logo {
  max-height: 58px;
  width: auto;
  flex-shrink: 0;
}
.btn-play {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 0;
  background: var(--cor-destaque);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(211, 47, 47, 0.35);
  transition: transform .15s ease, filter .15s ease;
}
.btn-play:hover { filter: brightness(0.95); transform: scale(1.03); }
.btn-play.is-playing .icon-play { display: none; }
.btn-play .icon-pause { display: none; }
.btn-play.is-playing .icon-pause { display: block; }
.player-info { min-width: 0; flex: 1; }
.player-info h2 {
  margin: 0.2rem 0 0.15rem;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.25;
}
.player-sub {
  margin: 0 0 0.55rem;
  font-size: 0.85rem;
  color: var(--cor-muted);
}
.badge-live {
  display: inline-block;
  background: var(--cor-destaque);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.18rem 0.5rem;
  border-radius: 3px;
  letter-spacing: 0.05em;
}
.player-volume {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 220px;
  color: #666;
}
.player-volume input[type="range"] {
  flex: 1;
  accent-color: var(--cor-primaria);
  height: 4px;
  width: 100%;
}
.player-apps {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 160px;
}
.app-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.75rem;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  color: var(--cor-texto);
  font-weight: 600;
  font-size: 0.88rem;
  background: #fff;
  transition: border-color .15s ease, background .15s ease;
}
.app-link:hover {
  border-color: var(--cor-primaria);
  color: var(--cor-primaria);
  background: #f7faf7;
}
.player-tip {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 0.35rem;
  border-top: 1px solid #f0f0f0;
  font-size: 0.75rem;
  color: #999;
}

/* Sections */
.ad-banner {
  margin: 1rem auto;
  text-align: center;
  background: #fff;
  border: 1px dashed #d4ddd6;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.03);
  min-height: 72px;
  display: grid;
  place-items: center;
}
.ad-banner img {
  margin-inline: auto;
  display: block;
  max-width: 100%;
  height: auto;
}
.ad-banner-wide { margin-top: 1.15rem; }
.ad-label {
  font-size: 0.78rem;
  color: #9aa59d;
  padding: 1.25rem 0.75rem;
  letter-spacing: 0.02em;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 300px;
  gap: 1rem;
  margin: 1.15rem auto 1.35rem;
  align-items: stretch;
}
.feature-main {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 380px;
  background: #111;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.feature-main > a {
  display: block;
  height: 100%;
  color: #fff;
}
.feature-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  opacity: 0.9;
  transition: transform .45s ease, opacity .3s ease;
}
.feature-main:hover img {
  transform: scale(1.04);
  opacity: 1;
}
.feature-main .overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem 1.25rem 1.2rem;
  background: linear-gradient(transparent, rgba(0,0,0,.88));
  color: #fff;
}
.feature-main .overlay h2 {
  margin: 0.45rem 0 0.35rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.25;
  font-weight: 800;
}
.feature-main .overlay .meta {
  font-size: 0.82rem;
  color: rgba(255,255,255,.82);
}
.feature-empty {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding: 1.5rem;
  background: #f7f9f8;
  color: var(--cor-muted);
}
.feature-empty strong {
  color: var(--cor-primaria);
  font-size: 1.05rem;
}
.badges { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.badge {
  background: var(--cor-destaque);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.22rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.03em;
}
.badge.green { background: var(--cor-primaria); }

.feature-side {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.news-card {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--cor-borda);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
  flex: 1;
  min-height: 0;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.news-card:hover {
  border-color: #c9d8cc;
  box-shadow: 0 10px 22px rgba(0,0,0,.07);
  transform: translateY(-1px);
}
.news-card-thumb {
  display: block;
  overflow: hidden;
  background: #e8eee9;
}
.news-card-thumb img {
  width: 100%;
  height: 100%;
  min-height: 96px;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.news-card:hover .news-card-thumb img { transform: scale(1.05); }
.news-card-body {
  padding: 0.7rem 0.8rem 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
}
.news-card-cat {
  font-size: 0.66rem;
  font-weight: 800;
  color: var(--cor-destaque);
  letter-spacing: 0.04em;
}
.news-card h3 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.3;
  font-weight: 700;
}
.news-card h3 a { color: var(--cor-texto); }
.news-card h3 a:hover { color: var(--cor-primaria); }
.news-card .meta {
  font-size: 0.74rem;
  color: var(--cor-muted);
  margin-top: 0.15rem;
}
.ad-vertical {
  background: #fff;
  border: 1px dashed #d4ddd6;
  border-radius: 14px;
  overflow: hidden;
  min-height: 380px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.03);
}
.ad-vertical img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mid-row {
  display: grid;
  grid-template-columns: 300px 1fr 280px;
  gap: 1rem;
  margin: 1.15rem auto 1.35rem;
  align-items: stretch;
}
.ad-square {
  margin: 0;
  min-height: 250px;
}
.panel {
  background: #fff;
  border: 1px solid var(--cor-borda);
  border-radius: 14px;
  padding: 0.95rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
}
.panel h2,
.latest-panel .media-card-head h2 {
  margin: 0;
  font-size: 0.98rem;
  color: var(--cor-primaria);
  font-weight: 800;
}
.latest-panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.list-news {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}
.list-news li { margin: 0; padding: 0; border: 0; }
.list-news li > a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.55rem;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  background: #f7f9f8;
  color: var(--cor-texto);
  transition: background .15s ease;
}
.list-news li > a:hover { background: #eef4ef; }
.list-news .tag {
  font-size: 0.64rem;
  font-weight: 800;
  color: var(--cor-destaque);
  text-transform: uppercase;
  white-space: nowrap;
  align-self: center;
}
.list-news strong {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}
.list-news .meta {
  grid-column: 2;
  font-size: 0.72rem;
  color: var(--cor-muted);
  font-weight: 500;
}

.alexa-box {
  background: linear-gradient(160deg, var(--cor-destaque) 0%, #b71c1c 100%);
  color: #fff;
  border-radius: 14px;
  padding: 1.35rem 1.15rem;
  text-align: center;
  box-shadow: 0 10px 24px rgba(211,47,47,.22);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.alexa-box h2 {
  color: #fff;
  border: 0;
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}
.alexa-box p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  opacity: 0.95;
}
.alexa-box img {
  margin: 0.85rem auto 0;
  max-height: 130px;
  display: block;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin: 1.25rem auto 1.5rem;
}
.cat-col {
  background: #fff;
  border: 1px solid var(--cor-borda);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
  padding: 0.85rem;
  min-height: 100%;
}
.cat-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}
.cat-col-head h2 {
  margin: 0;
  background: transparent;
  color: var(--cor-primaria);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0;
}
.cat-col-head a {
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}
.cat-feature {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
  background: #e8eee9;
  aspect-ratio: 16/10;
}
.cat-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.cat-feature:hover img { transform: scale(1.05); }
.cat-feature-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem 0.7rem 0.65rem;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.3;
}
.cat-list {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.cat-list li {
  margin: 0;
  padding: 0.45rem 0.5rem;
  border-radius: 8px;
  background: #f7f9f8;
}
.cat-list a {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--cor-texto);
  line-height: 1.3;
}
.cat-list a:hover { color: var(--cor-primaria); }
.cat-list .meta {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.72rem;
  color: var(--cor-muted);
}
.btn-all {
  display: block;
  text-align: center;
  margin: 0.5rem;
  background: var(--cor-secundaria);
  color: #fff !important;
  padding: 0.45rem;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
}
.btn-all:hover { background: var(--cor-destaque); }

.multi-row {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr;
  gap: 1rem;
  margin: 1rem auto 2rem;
}
.video-thumb { position: relative; border-radius: var(--radius); overflow: hidden; }
.video-thumb img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.video-thumb .play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(0,0,0,.35); color: #fff; font-size: 2.5rem;
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.4rem;
}
.gallery-grid img { aspect-ratio: 1; object-fit: cover; border-radius: 4px; width: 100%; }

.media-rail {
  display: grid;
  grid-template-columns: 1.35fr 1.15fr 1fr 0.95fr;
  gap: 1rem;
  margin: 1.25rem auto 2.25rem;
  align-items: stretch;
}
.media-card {
  background: #fff;
  border: 1px solid var(--cor-borda);
  border-radius: 14px;
  padding: 0.95rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.media-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.media-card-head h2 {
  margin: 0;
  font-size: 0.98rem;
  color: var(--cor-primaria);
  font-weight: 800;
}
.media-card-head a {
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}
.media-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 1.1rem 0.85rem;
  border-radius: 10px;
  background: #f7f9f8;
  color: var(--cor-muted);
  font-size: 0.9rem;
}
.media-note {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: #555;
  font-weight: 600;
}
.video-feature {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  flex: 1;
}
.video-feature img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  opacity: 0.92;
  transition: transform .35s ease, opacity .25s ease;
}
.video-feature:hover img {
  transform: scale(1.04);
  opacity: 1;
}
.video-play {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--cor-destaque);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(211,47,47,.35);
}
.video-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 0.85rem 0.75rem;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.3;
}
.gallery-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.4rem;
  flex: 1;
  min-height: 190px;
}
.mosaic-item {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #e8eee9;
}
.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.mosaic-item:hover img { transform: scale(1.06); }
.mosaic-1 { grid-row: 1 / 3; }
.prog-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.prog-timeline li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.55rem;
  align-items: start;
  padding: 0.45rem 0.5rem;
  border-radius: 10px;
  background: #f7f9f8;
}
.prog-timeline time {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--cor-primaria);
  font-variant-numeric: tabular-nums;
}
.prog-timeline strong {
  display: block;
  font-size: 0.86rem;
  line-height: 1.25;
}
.prog-timeline span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  color: var(--cor-muted);
}
.media-card-weather {
  background: linear-gradient(160deg, #f3faf4 0%, #ffffff 55%);
}
.weather-now {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.weather-temp {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 800;
  color: var(--cor-primaria);
  letter-spacing: -0.03em;
}
.weather-desc {
  font-size: 0.92rem;
  font-weight: 600;
  color: #333;
}
.weather-city {
  font-size: 0.84rem;
  color: var(--cor-muted);
  margin-bottom: 0.75rem;
}
.weather-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  margin-top: auto;
}
.weather-range span {
  background: #fff;
  border: 1px solid #e2ebe3;
  border-radius: 10px;
  padding: 0.55rem 0.6rem;
  font-size: 0.78rem;
  color: #666;
}
.weather-range strong {
  display: block;
  margin-top: 0.15rem;
  color: var(--cor-primaria);
  font-size: 1.05rem;
}
.gallery-album { margin-bottom: 2rem; }
.gallery-album-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
}
.gallery-thumb {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: transform .15s ease, box-shadow .15s ease;
}
.gallery-thumb:hover,
.gallery-thumb:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  outline: 2px solid var(--cor-primaria);
  outline-offset: 2px;
}
.gallery-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

/* Lightbox */
.lightbox[hidden] { display: none !important; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  cursor: zoom-out;
}
.lightbox-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: min(96vw, 1100px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}
.lightbox-image {
  max-width: 96vw;
  max-height: calc(90vh - 3rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(0,0,0,.45);
  background: #111;
}
.lightbox-caption {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  color: #f0f0f0;
  font-size: 0.9rem;
  text-align: center;
}
.lightbox-counter {
  color: #bbb;
  font-variant-numeric: tabular-nums;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255,255,255,.22); }
.lightbox-close {
  top: 0.75rem;
  right: 0.75rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.75rem;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.35rem;
}
.lightbox-prev { left: 0.75rem; }
.lightbox-next { right: 0.75rem; }
body.lightbox-open { overflow: hidden; }

@media (max-width: 768px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .lightbox-prev { left: 0.35rem; }
  .lightbox-next { right: 0.35rem; }
  .lightbox-close {
    top: 0.4rem;
    right: 0.4rem;
    width: 40px;
    height: 40px;
  }
  .lightbox-image {
    max-height: calc(82vh - 2.5rem);
  }
}
.weather-box strong { font-size: 2rem; color: var(--cor-primaria); }
.prog-list { list-style: none; margin: 0; padding: 0; font-size: 0.88rem; }
.prog-list li {
  display: flex; justify-content: space-between; gap: 0.5rem;
  padding: 0.35rem 0; border-bottom: 1px solid var(--cor-borda);
}

/* Article */
.article-wrap { background: #fff; border: 1px solid var(--cor-borda); border-radius: var(--radius); padding: 1.5rem; margin: 1rem auto 2rem; }
.article-wrap h1 { margin-top: 0; }
.article-meta { color: var(--cor-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.article-content { font-size: 1.05rem; }
.article-content img { margin: 1rem 0; border-radius: var(--radius); }
.article-cover { margin: 0 0 1rem; }
.article-cover img { width: 100%; border-radius: var(--radius); }
.article-photo-credit {
  margin: 0.35rem 0 0;
  font-size: 0.82rem;
  color: var(--cor-muted);
  font-style: italic;
}
.article-fonte { color: var(--cor-muted); }
.article-fonte-block {
  margin: 1.25rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--cor-borda);
  font-size: 0.92rem;
  color: #555;
}
.article-gallery {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cor-borda);
}
.article-gallery h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: var(--cor-primaria);
}

/* Footer */
.site-footer {
  background: #333;
  color: #ddd;
  padding: 2.5rem 0 0;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  padding-bottom: 2rem;
}
.site-footer h3 { color: #fff; font-size: 0.95rem; margin: 0 0 0.75rem; }
.site-footer a { color: #ccc; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.4rem; font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid #444;
  padding: 0.85rem 0;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Page title */
.page-title {
  margin: 1.25rem auto 0.75rem;
  font-size: 1.5rem;
  color: var(--cor-primaria);
}

/* Responsive */
@media (max-width: 1100px) {
  .slogan { display: none; }
  .datetime { min-width: 0; }
}

@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: 1fr 1fr; }
  .featured-grid .ad-vertical { grid-column: 1 / -1; min-height: auto; }
  .feature-main, .feature-main img, .feature-empty { min-height: 300px; }
  .mid-row { grid-template-columns: 1fr 1fr; }
  .mid-row .ad-square { grid-column: 1 / -1; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .multi-row, .media-rail { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .player-card { grid-template-columns: 1fr; }
  .player-apps {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 0.45rem;
    padding: 0.5rem 0;
  }
  .header-brand-block {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
  }
  .brand img { max-height: 48px; }
  .slogan {
    display: none;
  }
  .header-widgets {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.4rem;
    padding: 0.15rem 0 0.25rem;
    border-top: 1px solid #f0f0f0;
  }
  .clima { gap: 0.35rem; min-width: 0; flex: 1; }
  .clima-icon svg { width: 26px; height: 26px; }
  .clima-text strong { font-size: 0.95rem; }
  .clima-text span { font-size: 0.7rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 110px; }
  .clima-text small { display: none; }
  .datetime {
    align-items: flex-end;
    min-width: 0;
    font-size: 0.7rem;
    text-align: right;
  }
  .datetime-date {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 140px;
  }
  .social-block {
    display: none;
  }
  .nav-inner {
    gap: 0.35rem;
    padding: 0.35rem 0;
  }
  .nav-toggle {
    display: inline-block;
    margin: 0;
    padding: 0.35rem 0.65rem;
    font-size: 0.85rem;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    overflow: visible;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { padding: 0.7rem 0.85rem; }
  .nav-menu .submenu {
    position: static;
    box-shadow: none;
    background: rgba(0,0,0,.15);
  }
  .nav-menu li:hover > .submenu { display: none; }
  .nav-menu li.open > .submenu { display: block; }
  .nav-search {
    width: auto;
    margin: 0 0 0 auto;
    padding: 0;
    flex: 1;
    max-width: 180px;
  }
  .nav-search form { width: 100%; }
  .nav-search input,
  .nav-search form:focus-within input,
  .nav-search input:not(:placeholder-shown) {
    width: 100%;
    opacity: 1;
    padding: 0.35rem 0.5rem;
    font-size: 0.85rem;
  }
  .nav-search button { padding: 0.35rem; }

  .player-wrap { margin: 0.65rem auto; }
  .player-card {
    padding: 0.65rem 0.75rem 0.5rem;
    gap: 0.5rem;
    border-radius: 10px;
  }
  .player-main {
    flex-wrap: nowrap;
    justify-content: flex-start;
    text-align: left;
    gap: 0.65rem;
  }
  .player-logo { display: none; }
  .btn-play {
    width: 52px;
    height: 52px;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
  }
  .btn-play svg { width: 22px; height: 22px; }
  .player-info h2 {
    font-size: 0.92rem;
    margin: 0.1rem 0;
  }
  .player-sub {
    font-size: 0.75rem;
    margin: 0 0 0.35rem;
  }
  .badge-live {
    font-size: 0.6rem;
    padding: 0.12rem 0.4rem;
  }
  .player-volume { max-width: none; margin: 0; }
  .player-apps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
    min-width: 0;
  }
  .app-link {
    justify-content: center;
    padding: 0.4rem 0.25rem;
    font-size: 0.72rem;
    gap: 0.25rem;
  }
  .app-link svg { width: 14px; height: 14px; }
  .player-tip {
    font-size: 0.68rem;
    padding-top: 0.25rem;
    line-height: 1.3;
  }

  .featured-grid, .mid-row, .category-grid, .multi-row, .media-rail, .footer-grid {
    grid-template-columns: 1fr;
  }
  .gallery-mosaic { min-height: 220px; }
  .video-feature img { aspect-ratio: 16/9; }
  .feature-main, .feature-main img, .feature-empty { min-height: 240px; }
  .news-card { grid-template-columns: 90px 1fr; }
  .news-card-thumb img { min-height: 86px; }
  .cat-col { padding: 0.75rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .header-widgets { gap: 0.3rem; }
  .datetime-date { max-width: 120px; }
  .clima-text span { max-width: 90px; }
  .app-link {
    flex-direction: column;
    font-size: 0.65rem;
  }
}
