/* ==========================================================================
   HOME — Felipe 2026
   0) Hero Imersivo (Sem nada em cima, Canvas com enquadramento amplo,
      Trio de Candidatos ao Centro e Menu no final da 1ª Dobra)
   1) Blog grid magazine (Destaques & Ticker)
   2) Propostas & Emendas
   3) TV Oficial / Vídeos & Análises
   ========================================================================== */

/* ==========================================================================
   0) HERO IMERSIVO — PRIMEIRA DOBRA (100vh Limpo, Vídeo Fundo & Candidatos)
   ========================================================================== */
.fk-hero {
  position: relative;
  height: calc(100vh - var(--nk-header-h, 72px));
  min-height: 540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
  background: #06110a;
  box-sizing: border-box;
}

/* No celular a barra de endereço entra na conta do 100vh e a dobra fica maior
   que a tela visível. O svh usa sempre a altura menor, então o botão de rolagem
   nunca some atrás da barra. */
@supports (height: 100svh) {
  .fk-hero { height: calc(100svh - var(--nk-header-h, 72px)); }
}

@media (max-width: 768px) {
  .fk-hero {
    height: calc(100vh - 62px);
    min-height: 480px;
  }

  @supports (height: 100svh) {
    .fk-hero { height: calc(100svh - 62px); }
  }
}

/* Canvas de fundo */
.fk-hero__canvas-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.fk-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Overlay sutil para manter os detalhes da bandeira e cidade bem visíveis */
.fk-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 17, 10, 0.05) 0%, rgba(6, 17, 10, 0.02) 40%, rgba(6, 17, 10, 0.45) 80%, rgba(8, 22, 12, 0.95) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Container do Hero */
.fk-hero__container {
  position: relative;
  z-index: 3;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  padding: 0 20px 0;
}

/* Trio de Candidatos Centralizado na Base da 1ª Dobra */
.fk-hero__candidates-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 980px;
  z-index: 4;
  display: flex;
  justify-content: center;
  pointer-events: none;
  box-sizing: border-box;
  padding: 0 10px;
}

.fk-hero__candidates-img {
  width: 100%;
  max-width: 880px;
  max-height: clamp(270px, 48vh, 520px);
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 14px 30px rgba(0,0,0,0.85));
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .fk-hero__candidates-img {
    max-height: clamp(210px, 40vh, 320px);
    max-width: 98%;
  }
}

/* Botão de Ação do Hero: Posicionado a 10px de altura da barra no final */
.fk-hero__center-content {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin-bottom: 0;
  padding: 0 10px;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .fk-hero__center-content {
    bottom: 10px;
    margin-bottom: 0;
  }
}

.fk-hero__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 900px;
  padding: 0 10px;
}

/* Botões do Hero */
.fk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  cursor: pointer;
  border: none;
  font-family: var(--nk-font);
  min-width: 260px;
}

@media (max-width: 600px) {
  .fk-btn {
    width: 100%;
    max-width: 320px;
    font-size: 12.5px;
    padding: 13px 22px;
  }
}

/* Botão Amarelo Vibrante */
.fk-btn--primary {
  background: var(--nk-yellow);
  color: #08160c;
  border: 2px solid #ffe066;
  box-shadow: 0 8px 28px rgba(255, 204, 0, 0.5), 0 0 18px rgba(255, 204, 0, 0.3);
}

.fk-btn--primary:hover {
  background: #ffffff;
  color: #08160c;
  border-color: #ffffff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 36px rgba(255, 255, 255, 0.6);
}

/* Efeito de vibração constante no botão */
.fk-btn--vibrate {
  animation: fkShake 2.6s infinite ease-in-out;
}

@keyframes fkShake {
  0%, 100% { transform: rotate(0deg) scale(1); }
  2%, 6%, 10% { transform: rotate(-2deg) scale(1.03); }
  4%, 8% { transform: rotate(2deg) scale(1.03); }
  12%, 98% { transform: rotate(0deg) scale(1); }
}

/* Animação das letras vibrando */
.fk-vibrate-letters {
  display: inline-block;
  animation: fkLetterVibrate 1.4s infinite alternate ease-in-out;
}

@keyframes fkLetterVibrate {
  0% { letter-spacing: 0.05em; text-shadow: 0 0 2px rgba(0,0,0,0.6); }
  100% { letter-spacing: 0.11em; text-shadow: 0 0 12px rgba(255, 204, 0, 0.9); }
}


/* ==========================================================================
   1) SECAO BLOG GRID — DESTAQUES MAGAZINE (ABAIXO DO MENU)
   ========================================================================== */
.nk-blog-section {
  padding: 40px 0 24px;
  background: linear-gradient(180deg, #08160c 0%, rgba(8, 22, 12, 0.98) 100%);
  border-bottom: 1px solid rgba(0, 168, 89, 0.3);
  position: relative;
  box-sizing: border-box;
}

#blog-destaques,
#destaques-propostas,
#tv-oficial,
#blog-todas {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}

.nk-blog-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}

.nk-blog-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  min-height: 480px;
}

@media (max-width: 900px) {
  .nk-blog-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: auto;
  }
}

.nk-blog-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff;
  border-radius: 12px;
  height: 100%;
  min-height: 220px;
  box-shadow: 0 6px 20px rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color .3s, transform .3s;
}

.nk-blog-card:hover {
  border-color: rgba(255, 204, 0, 0.7);
  transform: translateY(-3px);
}

.nk-blog-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.nk-blog-card--featured img {
  object-position: center 15%;
}

.nk-blog-card:hover img {
  transform: scale(1.05);
}

.nk-blog-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.05) 100%);
  z-index: 1;
}

.nk-blog-card__content {
  position: relative;
  z-index: 2;
  padding: 18px 22px;
}

.nk-blog-card__tag {
  display: inline-block;
  background: var(--nk-red-tag);
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 6px;
  line-height: 1;
}

.nk-blog-card__tag--blue { background: var(--nk-blue); }
.nk-blog-card__tag--green { background: var(--nk-green); }
.nk-blog-card__tag--yellow { background: #D4A800; color: #000; }

.nk-blog-card__title {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 6px rgba(0,0,0,.6);
  font-family: var(--nk-font);
}

.nk-blog-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
  text-shadow: 0 1px 4px rgba(0,0,0,.7);
}

.nk-blog-card__meta svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  opacity: 0.9;
}

.nk-blog-card__meta .nk-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

.nk-blog-card--featured {
  height: 100%;
  min-height: 360px;
}

.nk-blog-card--featured .nk-blog-card__content {
  padding: 28px 32px;
}

.nk-blog-card--featured .nk-blog-card__tag {
  font-size: 11px;
  padding: 4px 11px;
  margin-bottom: 10px;
}

.nk-blog-card--featured .nk-blog-card__title {
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.2;
  max-width: 560px;
}

@media (max-width: 900px) {
  .nk-blog-card--featured .nk-blog-card__title { font-size: 20px; }
}

.nk-blog-right {
  display: grid;
  grid-template-rows: 1.12fr 1fr;
  gap: 14px;
  height: 100%;
}

.nk-blog-right-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 900px) {
  .nk-blog-right { grid-template-rows: none; gap: 12px; }
  .nk-blog-right-bottom { grid-template-columns: 1fr 1fr; gap: 12px; }
  .nk-blog-card { min-height: 190px; }
  .nk-blog-card--featured { min-height: 260px; }
}

@media (max-width: 520px) {
  .nk-blog-right-bottom { grid-template-columns: 1fr; }
}

/* Ticker (noticias rapidas) */
.nk-blog-ticker {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  flex-shrink: 0;
}

.nk-blog-ticker__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

@media (max-width: 900px) {
  .nk-blog-ticker__inner { grid-template-columns: 1fr 1fr; gap: 8px; }
}

@media (max-width: 520px) {
  .nk-blog-ticker__inner { grid-template-columns: 1fr; }
}

.nk-blog-ticker__item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 4px 8px;
  border-right: 1px solid rgba(0,0,0,0.08);
  text-decoration: none;
  color: #222;
  transition: background .2s;
  border-radius: 5px;
}

.nk-blog-ticker__item:last-child { border-right: none; }
.nk-blog-ticker__item:hover { background: rgba(0,0,0,0.04); }

.nk-blog-ticker__thumb {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nk-blog-ticker__meta {
  flex: 1;
  min-width: 0;
}

.nk-blog-ticker__cat {
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--nk-red-tag);
  margin-bottom: 2px;
  display: block;
}

.nk-blog-ticker__cat--blue { color: var(--nk-blue); }
.nk-blog-ticker__cat--green { color: var(--nk-green); }
.nk-blog-ticker__cat--yellow { color: #b58d00; }

.nk-blog-ticker__headline {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.28;
  color: var(--nk-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--nk-font);
}

/* ==========================================================================
   2) SECAO PROPOSTAS & EMENDAS (fundo claro com azul institucional)
   ========================================================================== */
.nk-light-section {
  position: relative;
  background: linear-gradient(175deg, #ffffff 0%, #f4f7fc 30%, #e8f0f8 65%, #dce8f5 100%);
  padding: 50px 0 65px;
  color: #171717;
  border-top: 1px solid rgba(30, 80, 162, 0.15);
  border-bottom: 1px solid rgba(30, 80, 162, 0.15);
  isolation: isolate;
  font-family: var(--nk-font);
}

.nk-light-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 100% 80% at 0% 0%, rgba(30, 80, 162, 0.05) 0%, transparent 50%),
              radial-gradient(ellipse 80% 60% at 100% 100%, rgba(255, 204, 0, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(0, 168, 89, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.nk-light-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.nk-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.nk-section-header__left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.nk-section-title {
  font-family: var(--nk-font);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 800;
  color: #1E50A2;
  margin: 0;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.nk-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(30, 80, 162, 0.25);
  background: #fff;
  color: #1E50A2;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nk-pill-btn:hover {
  background: #1E50A2;
  color: #fff;
  border-color: #1E50A2;
  box-shadow: 0 4px 12px rgba(30, 80, 162, 0.2);
  transform: translateY(-1px);
}

.nk-header-divider {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(30, 80, 162, 0.2) 0%, rgba(30, 80, 162, 0.05) 100%);
  border-radius: 2px;
}

.nk-section-header__right {
  width: 320px;
  flex-shrink: 0;
}

.nk-section-title-sidebar {
  font-family: var(--nk-font);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 800;
  color: #1E50A2;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nk-section-title-sidebar::after {
  content: "";
  flex: 1;
  height: 2px;
  background: rgba(30, 80, 162, 0.2);
  border-radius: 2px;
}

.nk-featured-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr 340px;
  gap: 24px;
  align-items: stretch;
}

.nk-main-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(30, 80, 162, 0.12);
  box-shadow: 0 8px 24px rgba(30, 80, 162, 0.06);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}

.nk-main-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(30, 80, 162, 0.12);
  border-color: rgba(30, 80, 162, 0.3);
}

.nk-main-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #cbd5e1;
}

.nk-main-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nk-main-card:hover .nk-main-card__img-wrap img {
  transform: scale(1.04);
}

.nk-badge-floating {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.nk-main-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.nk-main-card__title {
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
  margin: 0 0 10px 0;
  font-family: var(--nk-font);
  transition: color 0.2s ease;
}

.nk-main-card:hover .nk-main-card__title {
  color: #1E50A2;
}

.nk-meta-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 12px;
}

.nk-meta-line svg {
  width: 13px;
  height: 13px;
  opacity: 0.7;
}

.nk-main-card__excerpt {
  font-size: 13.5px;
  line-height: 1.55;
  color: #475569;
  margin: 0 0 18px 0;
  flex: 1;
}

.nk-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 800;
  color: #1E50A2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: gap 0.2s ease;
}

.nk-main-card:hover .nk-read-more {
  gap: 10px;
  color: #1E50A2;
}

.nk-grid-4, .nk-grid-6 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  height: 100%;
}

.nk-sub-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(30, 80, 162, 0.12);
  box-shadow: 0 4px 14px rgba(30, 80, 162, 0.04);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

.nk-sub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(30, 80, 162, 0.1);
  border-color: rgba(30, 80, 162, 0.3);
}

.nk-sub-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9.5;
  overflow: hidden;
  background: #cbd5e1;
}

.nk-sub-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.nk-sub-card:hover .nk-sub-card__img-wrap img {
  transform: scale(1.05);
}

.nk-sub-card__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.nk-sub-card__tag-wrap {
  margin-bottom: 8px;
}

.nk-sub-card__title {
  font-size: 14.5px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  margin: 0;
  font-family: var(--nk-font);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.nk-sub-card:hover .nk-sub-card__title {
  color: #1E50A2;
}

.nk-trending-sidebar {
  background: #fff;
  border-radius: 14px;
  padding: 20px 18px;
  border: 1px solid rgba(30, 80, 162, 0.12);
  box-shadow: 0 8px 24px rgba(30, 80, 162, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  box-sizing: border-box;
}

.nk-trending-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: space-between;
}

.nk-trending-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

.nk-trending-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.nk-trending-item:hover {
  transform: translateX(3px);
}

.nk-trending-num {
  font-family: var(--nk-font);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  color: #e74c5e;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.nk-trending-content {
  flex: 1;
  min-width: 0;
}

.nk-trending-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
}

.nk-trending-cat {
  color: #1E50A2;
}

.nk-trending-views {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #64748b;
}

.nk-trending-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #1e293b;
  margin: 0;
  font-family: var(--nk-font);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.nk-trending-item:hover .nk-trending-title {
  color: #1E50A2;
}

@media (max-width: 1200px) {
  .nk-featured-layout { grid-template-columns: 1fr 1fr; }
  .nk-section-header__right { display: none; }
  .nk-trending-sidebar { grid-column: span 2; }
  .nk-trending-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .nk-trending-item { border-bottom: none; background: #f8fafc; padding: 12px; border-radius: 8px; }
}

@media (max-width: 768px) {
  .nk-featured-layout { grid-template-columns: 1fr; }
  .nk-grid-6 { grid-template-columns: 1fr; }
  .nk-trending-sidebar { grid-column: span 1; }
  .nk-trending-list { grid-template-columns: 1fr; }
  .nk-section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .nk-section-header__left { width: 100%; }
}

/* ==========================================================================
   3) SECAO TV OFICIAL (Vídeos & pronunciamentos)
   ========================================================================== */
.nk-tv-section {
  background: linear-gradient(180deg, #eef5fc 0%, #e2edf8 100%);
  padding: 55px 0 65px;
  border-top: 2px solid rgba(30, 80, 162, 0.12);
  border-bottom: 2px solid rgba(30, 80, 162, 0.12);
}

.nk-tv-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.nk-tv-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.nk-tv-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nk-tv-logo-badge {
  background: #ff0000;
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.25);
}

.nk-tv-section-title {
  font-size: 26px;
  font-weight: 800;
  color: #1E50A2;
  margin: 0;
  font-family: var(--nk-font);
}

.nk-tv-subtitle {
  color: #475569;
  font-size: 14px;
  margin: 4px 0 0;
}

.nk-tv-channel-btn {
  background: #1E50A2;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(30, 80, 162, 0.2);
}

.nk-tv-channel-btn:hover {
  background: #143770;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(30, 80, 162, 0.3);
}

.nk-tv-featured-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: #1E50A2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(30, 80, 162, 0.18);
  margin-bottom: 30px;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nk-tv-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(30, 80, 162, 0.25);
}

.nk-tv-featured-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 340px;
  overflow: hidden;
  background: #0f172a;
}

.nk-tv-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nk-tv-featured-card:hover .nk-tv-featured-media img {
  transform: scale(1.04);
}

.nk-tv-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: rgba(255, 204, 0, 0.95);
  color: #1E50A2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 10px rgba(255, 204, 0, 0.25), 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.nk-tv-featured-card:hover .nk-tv-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: #FFCC00;
  box-shadow: 0 0 0 14px rgba(255, 204, 0, 0.35), 0 12px 30px rgba(0, 0, 0, 0.4);
}

.nk-tv-featured-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #1E50A2 0%, #143770 100%);
}

.nk-tv-badge-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.nk-tv-featured-title {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
  color: #fff;
  margin: 0 0 14px;
  font-family: var(--nk-font);
}

.nk-tv-featured-meta {
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.nk-tv-featured-desc {
  font-size: 14px;
  color: #e2e8f0;
  line-height: 1.6;
  margin: 0 0 22px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nk-tv-watch-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFCC00;
  color: #1E50A2;
  font-weight: 800;
  font-size: 13.5px;
  padding: 12px 24px;
  border-radius: 30px;
  align-self: flex-start;
  transition: all 0.25s ease;
}

.nk-tv-featured-card:hover .nk-tv-watch-cta {
  background: #fff;
  color: #1E50A2;
  gap: 14px;
}

.nk-tv-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.nk-tv-card {
  background: #1E50A2;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(30, 80, 162, 0.12);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #fff;
  transition: all 0.25s ease;
}

.nk-tv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(30, 80, 162, 0.22);
}

.nk-tv-card__thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9.5;
  overflow: hidden;
  background: #0f172a;
}

.nk-tv-card__thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.nk-tv-card:hover .nk-tv-card__thumb-wrap img {
  transform: scale(1.06);
}

.nk-tv-card__play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background: rgba(30, 80, 162, 0.85);
  color: #FFCC00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFCC00;
  transition: all 0.3s ease;
}

.nk-tv-card:hover .nk-tv-card__play-badge {
  background: #FFCC00;
  color: #1E50A2;
  transform: translate(-50%, -50%) scale(1.12);
}

.nk-tv-card__duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 4px;
}

.nk-tv-card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.nk-tv-card__title {
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  margin: 8px 0 10px;
  font-family: var(--nk-font);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nk-tv-card:hover .nk-tv-card__title {
  color: #FFCC00;
}

.nk-tv-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #64748b;
}

@media (max-width: 1024px) {
  .nk-tv-featured-card { grid-template-columns: 1fr; }
  .nk-tv-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .nk-tv-grid-4 { grid-template-columns: 1fr; }
  .nk-tv-featured-body { padding: 24px 20px; }
}

/* Variante compacta do card de blog (grade secundária da home) */
.nk-blog-card--small { min-height: 170px; }
.nk-blog-card--small .nk-blog-card__title,
.nk-blog-card--small h3 { font-size: 15px; line-height: 1.35; }
