/* ==========================================================================
   Canal VE — Design tokens + layout global
   ========================================================================== */

:root {
  --color-brand: #DB0000;
  --color-brand-dark: #b80000;
  --color-text: #17171a;
  --color-text-body: #232326;
  --color-text-muted: #3a3a3f;
  --color-text-secondary: #54545a;
  --color-text-tertiary: #55555c;
  --color-text-meta: #9a9a9a;
  --color-text-faint: #8a8a90;
  --color-text-ad: #b5b5ba;
  --color-rank: #e2e0db;
  --color-bg-page: #fbfaf8;
  --color-bg-section: #f3f2f0;
  --color-bg-dark: #17171a;
  --color-bg-footer: #0e0e10;
  --color-border: #ececec;
  --color-border-light: #f2f2f2;
  --color-border-input: #e2e0db;
  --font-ui: 'Archivo', Helvetica, Arial, sans-serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --container: 1240px;
  --gutter: 24px;
  --radius-card: 12px;
  --radius-pill: 100px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-ui);
  background: var(--color-bg-page);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--color-brand); color: #fff; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: 56px 0; }
.section--gray { background: var(--color-bg-section); }

/* --------------------------------------------------------------------------
   Top bar
   -------------------------------------------------------------------------- */
.top-bar {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.55);
  font-size: 12px;
}
.top-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 6px var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar__links,
.top-bar__menu {
  display: flex;
  gap: 16px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.top-bar__link,
.top-bar__menu a {
  color: rgba(255,255,255,0.55);
  transition: color .15s;
}
.top-bar__link:hover,
.top-bar__menu a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header__bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-header__logo img {
  height: 49px;
  width: auto;
}
.site-header__search {
  flex: 1;
  max-width: 420px;
  display: flex;
  align-items: center;
  background: var(--color-bg-section);
  border-radius: var(--radius-pill);
  padding: 9px 16px;
  gap: 10px;
  border: 1px solid transparent;
  transition: border-color .15s;
}
.site-header__search:focus-within { border-color: var(--color-brand); }
.site-header__search input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 13.5px;
  width: 100%;
  font-family: var(--font-ui);
  color: var(--color-text);
}
.site-header__social {
  display: flex;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}
.site-header__social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
  transition: background .15s, color .15s;
}
.site-header__social-link:hover {
  background: var(--color-brand);
  color: #fff;
}
.site-header__menu-toggle,
.site-header__search-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--color-text);
}

.site-nav {
  border-top: 1px solid var(--color-border-light);
  position: relative;
}
.site-nav__list {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  gap: 30px;
  list-style: none;
  position: relative;
}
.site-nav__list > .menu-item {
  position: static;
  display: flex;
  align-items: center;
}
.site-nav__list > .menu-item > a {
  display: block;
  padding: 13px 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  border-bottom: 2.5px solid transparent;
  white-space: nowrap;
  transition: border-color .15s, color .15s;
}
.site-nav__list > .menu-item > a:hover,
.site-nav__list > .menu-item.is-mega-open > a,
.site-nav__list > .current-menu-item > a,
.site-nav__list > .current-menu-ancestor > a {
  color: var(--color-brand);
  border-bottom-color: var(--color-brand);
}

/* Mega menu — desktop */
.site-nav .mega-menu__toggle {
  display: none;
}
.site-nav .mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 16px 32px rgba(23, 23, 26, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.site-nav .mega-menu[hidden] {
  display: block !important;
}
.site-nav__list > .menu-item.is-mega-open > .mega-menu,
.site-nav__list > .menu-item.has-mega-menu:hover > .mega-menu,
.site-nav__list > .menu-item:focus-within > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-menu__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px var(--gutter) 32px;
}
.mega-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 48px;
  max-width: 560px;
}
.mega-menu__list > .menu-item > a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  border-bottom: 1px solid transparent;
  white-space: normal;
  transition: color .15s, border-color .15s;
}
.mega-menu__list > .menu-item > a:hover,
.mega-menu__list > .current-menu-item > a {
  color: var(--color-brand);
  border-bottom-color: var(--color-border);
}

/* Header simplificado (Anuncie / Quem Somos) */
.site-header--anuncie {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header__bar--anuncie {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  gap: 40px;
}
.site-header__bar--anuncie .site-header__logo {
  flex-shrink: 0;
}
.site-header__bar--anuncie .site-header__search {
  flex: 1;
  max-width: 480px;
  margin: 0 auto;
}
.anuncie-nav {
  flex-shrink: 0;
  margin-left: auto;
}
.anuncie-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.anuncie-nav__list a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text);
  white-space: nowrap;
  transition: color 0.15s;
}
.anuncie-nav__list a:hover,
.anuncie-nav__list .current-menu-item > a {
  color: var(--color-brand);
}
.anuncie-nav__toggle {
  display: none;
}

@media (max-width: 900px) {
  .site-header__bar--anuncie {
    gap: 16px;
  }
  .site-header__bar--anuncie .site-header__search {
    display: none;
  }
  .anuncie-nav {
    display: none;
  }
  .anuncie-nav__toggle {
    display: flex;
    margin-left: auto;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--color-text);
  }
}

/* Mobile nav drawer */
.mobile-nav[hidden] { display: none !important; }
.mobile-nav { position: fixed; inset: 0; z-index: 100; }
.mobile-nav__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.4);
}
.mobile-nav__drawer {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 78%;
  max-width: 320px;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 24px rgba(0,0,0,0.12);
}
.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav__close {
  background: none; border: none; font-size: 28px; cursor: pointer; line-height: 1;
}
.mobile-nav__list {
  list-style: none; margin: 0; padding: 0;
  overflow-y: auto;
  flex: 1;
}
.mobile-nav__list > .menu-item {
  border-bottom: 1px solid var(--color-border-light);
}
.mobile-nav__list > .menu-item > a {
  display: block;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  flex: 1;
}
.mobile-nav__list > .has-mega-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.mobile-nav__list > .has-mega-menu > a {
  padding-right: 8px;
}
.mobile-nav .mega-menu__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 48px;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-secondary);
  flex-shrink: 0;
}
.mobile-nav .mega-menu__toggle-icon {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
  margin-top: -3px;
}
.mobile-nav .has-mega-menu.is-mega-open > .mega-menu__toggle-icon,
.mobile-nav .has-mega-menu.is-mega-open .mega-menu__toggle-icon {
  transform: rotate(225deg);
  margin-top: 3px;
}
.mobile-nav .mega-menu {
  display: none;
  width: 100%;
  flex-basis: 100%;
  background: var(--color-bg-section);
  border-top: 1px solid var(--color-border-light);
}
.mobile-nav .has-mega-menu.is-mega-open > .mega-menu {
  display: block;
}
.mobile-nav .mega-menu[hidden] {
  display: none !important;
}
.mobile-nav .has-mega-menu.is-mega-open > .mega-menu[hidden] {
  display: block !important;
}
.mobile-nav .mega-menu__inner {
  padding: 0;
}
.mobile-nav .mega-menu__list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav .mega-menu__list > .menu-item > a {
  display: block;
  padding: 12px 20px 12px 32px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav .mega-menu__list > .menu-item:last-child > a {
  border-bottom: none;
}

/* --------------------------------------------------------------------------
   Section header
   -------------------------------------------------------------------------- */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 26px;
}
.section-header__left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-header__icon { height: 20px; width: auto; }
.section-header__title {
  font-size: 15px;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
}
.section-header__more {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-brand);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* --------------------------------------------------------------------------
   Ad slot
   -------------------------------------------------------------------------- */
.ad-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}
.ad-slot__label {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--color-text-ad);
  font-weight: 700;
}
.ad-slot__inner { width: 100%; }
.ad-slot__inner img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.ad-slot--inline { margin: 0 0 30px; }
.ad-slot--category-top {
  max-width: var(--container);
  margin: 24px auto 0;
  padding: 0 var(--gutter);
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card-news__thumb {
  aspect-ratio: 4/3;
  border-radius: 10px;
  overflow: hidden;
  background: #eee;
  margin-bottom: 12px;
}
.card-news__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-news__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--color-brand);
  margin-bottom: 6px;
}
.card-news__title {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
}
.card-news__date {
  font-size: 12px;
  color: var(--color-text-meta);
}

.card-news--featured,
.card-news--category {
  display: block;
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.card-news--category { border: 1px solid var(--color-border); box-shadow: none; }
.card-news--featured .card-news__thumb,
.card-news--category .card-news__thumb {
  margin-bottom: 0;
  border-radius: 0;
}
.card-news__body { padding: 16px; }
.card-news--featured .card-news__title,
.card-news--category .card-news__title { min-height: 38px; margin-bottom: 8px; }

/* --------------------------------------------------------------------------
   Hero fold — v2 (full-bleed)
   -------------------------------------------------------------------------- */
.hero-fold--v2 {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px var(--gutter) 0;
}
.hero-card {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 21/9;
  background: #111;
}
.hero-card__img,
.hero-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.hero-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 55%, transparent 100%);
}
.hero-card__content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 44px 32px;
  max-width: 780px;
  z-index: 1;
}
.hero-card__tag {
  display: inline-block;
  background: var(--color-brand);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 4px;
}
.hero-card__title {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  margin: 16px 0 12px;
  letter-spacing: -0.01em;
  color: #fff;
}
.hero-card__excerpt {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.8);
  margin: 0 0 14px;
  max-width: 62ch;
}
.hero-card__meta {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  display: flex;
  gap: 8px;
}
.hero-card__author { font-weight: 700; color: #fff; }

.latest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 26px;
}
.hero-fold__spacer { height: 40px; }

/* --------------------------------------------------------------------------
   Hero fold — original (2 colunas + sidebar)
   -------------------------------------------------------------------------- */
.hero-ad-top {
  margin-top: 24px;
}
.hero-ad-top .ad-slot { margin-bottom: 0; }

.hero-fold--original {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px var(--gutter) 40px;
  display: grid;
  grid-template-columns: 1.9fr 1fr;
  gap: 44px;
  align-items: start;
}
.hero-classic__media {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111;
}
.hero-classic__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-classic__body { margin-top: 20px; }
.hero-classic__title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  margin: 14px 0 12px;
  letter-spacing: -0.01em;
}
.hero-classic__excerpt {
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-text-tertiary);
  margin: 0 0 14px;
  max-width: 60ch;
}
.hero-classic__meta {
  font-size: 13px;
  color: var(--color-text-faint);
  display: flex;
  gap: 8px;
}
.hero-classic__author {
  font-weight: 700;
  color: var(--color-text-muted);
}

.hero-classic__list {
  display: flex;
  flex-direction: column;
}
.hero-classic__item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #eeeeee;
}
.hero-classic__thumb {
  width: 92px;
  height: 66px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: #eee;
}
.hero-classic__thumb--empty { display: block; }
.hero-classic__item-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 5px;
}
.hero-classic__ad {
  margin-top: 20px;
  margin-bottom: 0;
}
.hero-classic__ad .ad-slot__inner {
  width: 100%;
  aspect-ratio: 300 / 250;
  border-radius: 8px;
  overflow: hidden;
  background: repeating-linear-gradient(135deg, #f0efec, #f0efec 10px, #e7e6e2 10px, #e7e6e2 20px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   Grid destaques / categorias
   -------------------------------------------------------------------------- */
.grid-destaques__grid,
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.category-grid { gap: 24px; }

/* --------------------------------------------------------------------------
   Blog + Artigos
   -------------------------------------------------------------------------- */
.blog-artigos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}
.list-compact {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.list-compact__item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid #eeeeee;
}
.list-compact__item:last-child { border-bottom: none; }
.list-compact__thumb {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  background: #eee;
}
.list-compact__thumb--empty { display: block; }
.list-compact__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--color-text-faint);
  margin-bottom: 5px;
}
.list-compact__title {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 5px;
}
.list-compact__date {
  font-size: 11.5px;
  color: var(--color-text-meta);
}

/* --------------------------------------------------------------------------
   YouTube
   -------------------------------------------------------------------------- */
.youtube-section { padding: 56px var(--gutter); }
.youtube-section__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 120px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-meta);
}
.youtube-section__loading[hidden] { display: none !important; }
.youtube-section__spinner {
  width: 22px;
  height: 22px;
  border: 2.5px solid var(--color-border);
  border-top-color: var(--color-brand);
  border-radius: 50%;
  animation: canalve-spin .7s linear infinite;
}
@keyframes canalve-spin { to { transform: rotate(360deg); } }
.youtube-section__error,
.youtube-section__empty {
  margin: 0;
  text-align: center;
  color: var(--color-text-meta);
  font-size: 14px;
  font-weight: 600;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.video-grid[hidden],
.shorts-block[hidden] { display: none !important; }
.video-card {
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #111;
}
.video-card img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.88;
}
.video-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
}
.video-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
}
.video-card__info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px; color: #fff;
}
.video-card__title { font-size: 14px; font-weight: 700; line-height: 1.3; }
.video-card__duration { font-size: 11.5px; opacity: 0.75; margin-top: 5px; }

.shorts-header {
  display: flex; align-items: center; gap: 8px;
  margin: 34px 0 20px;
}
.shorts-header h3 {
  font-size: 13.5px; font-weight: 800; letter-spacing: 0.06em;
  margin: 0; text-transform: uppercase; color: var(--color-text-muted);
}
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.short-card {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: #111;
}
.short-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; }
.short-card__badge {
  position: absolute; top: 10px; left: 10px;
  display: flex; align-items: center; gap: 4px;
  background: rgba(0,0,0,0.55);
  padding: 4px 9px 4px 6px;
  border-radius: var(--radius-pill);
  font-size: 10.5px; font-weight: 800; color: #fff;
}
.short-card__info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 12px 12px; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.82));
}
.short-card__title { font-size: 12.5px; font-weight: 700; line-height: 1.3; }
.short-card__views { font-size: 10.5px; opacity: 0.75; margin-top: 5px; }

/* --------------------------------------------------------------------------
   Podcast
   -------------------------------------------------------------------------- */
.podcast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.podcast-section__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-meta);
}
.podcast-section__loading[hidden] { display: none !important; }
.podcast-grid[hidden] { display: none !important; }
.podcast-section[hidden] { display: none !important; }
.podcast-card {
  display: flex;
  gap: 14px;
  background: #fff;
  border-radius: var(--radius-card);
  padding: 16px;
  border: 1px solid var(--color-border);
  align-items: center;
}
.podcast-card__play {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.podcast-card__ep {
  font-size: 10px; font-weight: 800; letter-spacing: 0.05em;
  color: var(--color-brand); margin-bottom: 4px;
}
.podcast-card__title { font-size: 13.5px; font-weight: 700; line-height: 1.3; }
.podcast-card__duration { font-size: 11.5px; color: var(--color-text-meta); margin-top: 4px; }

/* --------------------------------------------------------------------------
   Newsletter
   -------------------------------------------------------------------------- */
.newsletter-block {
  background: var(--color-bg-dark);
  padding: 56px var(--gutter);
}
.newsletter-block__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter-block__copy { max-width: 460px; }
.newsletter-block__label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  color: var(--color-brand); margin-bottom: 10px;
}
.newsletter-block__title {
  font-size: 26px; font-weight: 800; color: #fff;
  margin: 0 0 10px; line-height: 1.25;
}
.newsletter-block__text {
  font-size: 14.5px; color: rgba(255,255,255,0.55);
  margin: 0; line-height: 1.5;
}
.newsletter-block__form-wrap { flex: 1; min-width: 280px; max-width: 460px; }

.newsletter-form {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 280px;
  max-width: 460px;
  flex-wrap: wrap;
  position: relative;
}
.newsletter-form__input {
  flex: 1;
  min-width: 180px;
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 14px;
  outline: none;
  font-family: var(--font-ui);
}
.newsletter-form__input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form__input:focus { border-color: var(--color-brand); }
.newsletter-form__submit {
  background: var(--color-brand);
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-ui);
  transition: background .15s;
}
.newsletter-form__submit:hover:not(:disabled) { background: var(--color-brand-dark); }
.newsletter-form__submit:disabled { opacity: 0.7; cursor: wait; }
.newsletter-form__feedback {
  width: 100%;
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}
.newsletter-form__feedback--success { color: #7ddea0; }
.newsletter-form__feedback--error { color: #ff8a8a; }
.newsletter-form__feedback[hidden] { display: none !important; }

.newsletter-form--sidebar {
  flex-direction: column;
  min-width: 0;
  max-width: none;
  gap: 10px;
}
.newsletter-form--sidebar .newsletter-form__input,
.newsletter-form--sidebar .newsletter-form__submit {
  width: 100%;
  padding: 12px 16px;
  font-size: 13.5px;
}

.newsletter-block--inline {
  border-radius: 16px;
  padding: 28px 26px;
  margin-top: 20px;
}
.newsletter-block--inline .newsletter-block__title { font-size: 17px; }
.newsletter-block--inline .newsletter-block__text { font-size: 12.5px; }
.newsletter-block--inline .newsletter-form {
  min-width: 220px;
}
.newsletter-block--inline .newsletter-form__input,
.newsletter-block--inline .newsletter-form__submit {
  padding: 12px 16px;
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--color-bg-footer);
  padding: 56px var(--gutter) 0;
}
.site-footer__inner { max-width: var(--container); margin: 0 auto; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer__brand img { width: 241px; height: auto; margin-bottom: 16px; }
.site-footer__tagline {
  font-size: 13px; color: rgba(255,255,255,0.45);
  line-height: 1.6; max-width: 30ch; margin: 0 0 20px;
}
.site-footer__social { display: flex; gap: 10px; }
.site-footer__social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background .15s, color .15s;
}
.site-footer__social a:hover { background: var(--color-brand); color: #fff; }
.site-footer__col-title {
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.08em;
  color: #fff; margin-bottom: 16px; text-transform: uppercase;
}
.site-footer__links {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 11px;
}
.site-footer__links a {
  font-size: 13.5px; color: rgba(255,255,255,0.5);
  transition: color .15s;
}
.site-footer__links a:hover { color: #fff; }
.site-footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-size: 12px; color: rgba(255,255,255,0.35);
  flex-wrap: wrap; gap: 10px;
}
.site-footer__legal,
.site-footer__legal-menu {
  display: flex; gap: 20px; list-style: none; margin: 0; padding: 0;
}
.site-footer__legal a,
.site-footer__legal-menu a {
  color: rgba(255,255,255,0.35);
  transition: color .15s;
}
.site-footer__legal a:hover,
.site-footer__legal-menu a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   Archive / index / search / 404
   -------------------------------------------------------------------------- */
.archive-header {
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px var(--gutter) 24px;
}
.archive-header h1 {
  font-size: 28px; font-weight: 800; margin: 0 0 8px;
}
.archive-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.pagination {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) 56px;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.pagination .page-numbers {
  padding: 8px 14px;
  border-radius: 8px;
  background: var(--color-bg-section);
  font-weight: 700;
  font-size: 13px;
}
.pagination .current { background: var(--color-brand); color: #fff; }

/* ==========================================================================
   Responsive ≤ 768px
   ========================================================================== */
@media (max-width: 768px) {
  :root { --gutter: 16px; }

  .top-bar { display: none; }

  .site-header__bar {
    padding: 12px var(--gutter);
    justify-content: center;
    position: relative;
    min-height: 60px;
  }
  .site-header__logo img { height: 44px; }
  .site-header__search,
  .site-header__social,
  .site-nav { display: none; }
  .site-header__menu-toggle {
    display: flex;
    position: absolute;
    left: var(--gutter);
  }
  .site-header__search-toggle {
    display: flex;
    position: absolute;
    right: var(--gutter);
  }
  .site-header.is-search-open .site-header__search {
    display: flex;
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    top: 100%;
    max-width: none;
    z-index: 5;
    margin-top: 4px;
  }

  .hero-card { aspect-ratio: 4/3; }
  .hero-card__content { padding: 20px 16px 16px; }
  .hero-card__title { font-size: 20px; margin: 10px 0 8px; }
  .hero-card__excerpt { font-size: 13px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

  .hero-fold--original {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 20px var(--gutter) 32px;
  }
  .hero-classic__title { font-size: 22px; }
  .hero-classic__excerpt { font-size: 14px; }
  .hero-classic__ad { max-width: 300px; margin-left: auto; margin-right: auto; }

  .latest-grid,
  .grid-destaques__grid,
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .grid-destaques__grid .card-news--featured:nth-child(n+7) { display: none; }
  .category-grid .card-news--category:nth-child(n+3) { display: none; }

  .blog-artigos__grid { grid-template-columns: 1fr; gap: 32px; }
  .list-compact__item:nth-child(n+4) { display: none; }

  .section { padding: 24px 0; }
  .section-header__title { font-size: 13px; }
  .section-header__more { display: none; }

  .video-grid,
  .shorts-grid {
    display: flex;
    overflow-x: auto;
    gap: 14px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .video-card { flex: 0 0 220px; scroll-snap-align: start; }
  .short-card { flex: 0 0 140px; scroll-snap-align: start; }

  .podcast-grid { grid-template-columns: 1fr; }

  .newsletter-block { padding: 32px 16px; text-align: center; }
  .newsletter-block__inner { flex-direction: column; }
  .newsletter-block__title { font-size: 20px; }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__brand img { width: 160px; }
  .site-footer__col:nth-child(n+4) { display: none; }

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

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