/* ==========================================================================
   TV NIKOLAS — Tema Institucional Nikolas 2026 (Azul Claro e Branco)
   ========================================================================== */
.nk-tvpage { background: #F0F4F9; color: #1e293b; }

/* ---- Botões (a página TV não carrega pages.css, então definimos aqui) ---- */
.nk-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 30px; font-size: 14px; font-weight: 800;
  text-decoration: none; transition: all 0.25s ease; border: none; cursor: pointer; line-height: 1;
}
.nk-btn--yellow { background: #FFCC00; color: #1E50A2; box-shadow: 0 4px 12px rgba(255,204,0,0.3); }
.nk-btn--yellow:hover { background: #ffd633; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(255,204,0,0.4); }
.nk-btn--blue { background: #1E50A2; color: #fff; box-shadow: 0 4px 12px rgba(30,80,162,0.25); }
.nk-btn--blue:hover { transform: translateY(-2px); }

/* ---- Aba azul padrão (copy da TV) ---- */
.nk-tvbar { background: #1E50A2; color: #fff; padding: 34px 0; border-bottom: 4px solid #FFCC00; margin-top: var(--nk-header-h); }
@media (max-width: 768px) { .nk-tvbar { margin-top: 62px; } }
@media (min-width: 1200px) { .nk-tvbar { margin-top: 78px; } }
.nk-tvbar__kicker { display: inline-flex; align-items: center; gap: 8px; background: #ff0000; color: #fff; font-size: 12px; font-weight: 900; letter-spacing: 0.12em; padding: 6px 12px; border-radius: 6px; margin-bottom: 14px; }
.nk-tvbar h1 { font-size: clamp(26px, 4vw, 40px); font-weight: 900; line-height: 1.05; margin: 0; }
.nk-tvbar p { color: #cbd5e1; margin: 10px 0 0; font-size: clamp(14px, 1.4vw, 16px); line-height: 1.6; max-width: 760px; }

/* ---- HERO SECTION: 21 Dias de Oração pelo Brasil ---- */
.nk-oracao-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFCC00 0%, #E6B800 40%, #C99700 100%);
  padding: clamp(24px, 3.2vw, 44px) 0 clamp(32px, 4vw, 56px);
  border-bottom: 2px solid #D4A000;
}

.nk-oracao-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
  mix-blend-mode: multiply;
  z-index: 1;
}

.nk-oracao-hero__overlay {
  display: none;
}

.nk-oracao-hero__wrap {
  position: relative;
  z-index: 3;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
}

/* Header superior da Hero */
.nk-oracao-hero__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.nk-oracao-hero__info {
  width: 100%;
  background: rgba(8, 18, 32, 0.75);
  backdrop-filter: blur(10px);
  padding: 18px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.nk-oracao-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 204, 0, 0.18);
  color: #FFCC00;
  border: 1px solid rgba(255, 204, 0, 0.5);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.nk-oracao-hero__title {
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 900;
  line-height: 1.08;
  color: #ffffff;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.nk-oracao-hero__lead {
  font-size: clamp(14.5px, 1.3vw, 16.5px);
  line-height: 1.6;
  color: #d1def0;
  margin: 0;
  max-width: 760px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}
.nk-oracao-hero__lead strong {
  color: #FFCC00;
}

/* Status de Reprodução no Topo */
.nk-oracao-hero__status-badge {
  display: flex;
  flex-direction: column;
  background: rgba(10, 20, 36, 0.9);
  border: 1px solid rgba(255, 204, 0, 0.4);
  padding: 10px 18px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.nk-oracao-hero__status-lbl {
  font-size: 10.5px;
  text-transform: uppercase;
  color: #9fb0c8;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.nk-oracao-hero__status-val {
  font-size: 16px;
  font-weight: 900;
  color: #FFCC00;
}

/* STAGE: PLAYER + PLAYLIST SIDEBAR */
.nk-oracao-hero__stage {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 28px;
  align-items: start;
  width: 100%;
}
@media (max-width: 1120px) {
  .nk-oracao-hero__stage {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.nk-oracao-hero__player-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.nk-oracao-hero__screen {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 60px rgba(0,0,0,0.85);
  border: 3px solid rgba(255, 204, 0, 0.5);
}
.nk-oracao-hero__screen iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.nk-oracao-hero__meta-card {
  background: rgba(13, 26, 48, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nk-oracao-hero__meta-badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #FFCC00;
  color: #081220;
  padding: 3px 8px;
  border-radius: 6px;
}

.nk-oracao-hero__vtitle {
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 800;
  color: #ffffff;
  margin: 2px 0 4px;
  line-height: 1.35;
}

.nk-oracao-hero__desc {
  font-size: 14px;
  color: #9fb0c8;
  margin: 0;
  line-height: 1.55;
}

/* PLAYLIST SIDEBAR */
.nk-oracao-hero__sidebar {
  background: rgba(13, 26, 48, 0.9);
  border: 1px solid rgba(255, 204, 0, 0.35);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.nk-oracao-hero__sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nk-oracao-hero__sidebar-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #FFCC00;
  font-weight: 800;
  font-size: 15px;
}
.nk-oracao-hero__sidebar-title svg {
  color: #FFCC00;
}

.nk-oracao-hero__sidebar-total {
  font-size: 11.5px;
  font-weight: 800;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 9px;
  border-radius: 20px;
}

.nk-oracao-hero__scroll-list {
  max-height: clamp(360px, 48vh, 560px);
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nk-oracao-hero__scroll-list::-webkit-scrollbar {
  width: 6px;
}
.nk-oracao-hero__scroll-list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}
.nk-oracao-hero__scroll-list::-webkit-scrollbar-thumb {
  background: rgba(255, 204, 0, 0.5);
  border-radius: 10px;
}
.nk-oracao-hero__scroll-list::-webkit-scrollbar-thumb:hover {
  background: #FFCC00;
}

.nk-oracao-hero__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
  width: 100%;
}
.nk-oracao-hero__item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 204, 0, 0.4);
  transform: translateX(3px);
}
.nk-oracao-hero__item.is-active {
  background: rgba(255, 204, 0, 0.14);
  border-color: #FFCC00;
  box-shadow: 0 4px 16px rgba(255, 204, 0, 0.2);
}

.nk-oracao-hero__thumb {
  position: relative;
  width: 105px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #000;
}
.nk-oracao-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nk-oracao-hero__tag-day {
  position: absolute;
  top: 4px;
  left: 4px;
  background: rgba(0, 0, 0, 0.85);
  color: #FFCC00;
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 4px;
  text-transform: uppercase;
}

.nk-oracao-hero__play-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  color: #FFCC00;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.nk-oracao-hero__item:hover .nk-oracao-hero__play-hover,
.nk-oracao-hero__item.is-active .nk-oracao-hero__play-hover {
  opacity: 1;
}

.nk-oracao-hero__item-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.nk-oracao-hero__item-ep {
  font-size: 11px;
  font-weight: 800;
  color: #FFCC00;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nk-oracao-hero__item-name {
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nk-oracao-hero__item.is-active .nk-oracao-hero__item-name {
  color: #FFCC00;
}

/* ---- HERO SECTION: ajustes mobile ---- */
@media (max-width: 700px) {
  .nk-oracao-hero__info {
    padding: 14px 16px;
    border-radius: 14px;
  }
  .nk-oracao-hero__badge {
    font-size: 11px;
    padding: 5px 11px;
    margin-bottom: 10px;
  }
  .nk-oracao-hero__meta-card {
    padding: 14px 16px;
  }
  .nk-oracao-hero__scroll-list {
    max-height: 46vh;
  }
  .nk-oracao-hero__thumb {
    width: 92px;
  }
}

/* ---- CATÁLOGO estilo Netflix no Tema Claro ---- */
.nk-tvcatalog {
  background: transparent;
  padding: 40px 0 60px;
}
.nk-tvcatalog__wrap { max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }
.nk-tvcatalog__head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 26px; }
.nk-tvcatalog__title { font-size: clamp(22px, 2.4vw, 30px); font-weight: 900; color: #1E50A2; margin: 0; }
.nk-tvcatalog__title::before { content: ""; display: inline-block; width: 5px; height: 26px; background: #FFCC00; border-radius: 3px; margin-right: 12px; vertical-align: -4px; }
.nk-tvcatalog__sub { color: #64748b; font-size: 14.5px; margin: 8px 0 0; }
.nk-tvcatalog__actions { display: flex; gap: 10px; flex-wrap: wrap; align-self: center; }
.nk-tvcatalog__all { align-self: center; }
.nk-tvcatalog__empty { color: #64748b; text-align: center; padding: 50px 0; }

.nk-tvgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1100px) { .nk-tvgrid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .nk-tvgrid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 460px) { .nk-tvgrid { grid-template-columns: 1fr; } }

.nk-tvcard {
  display: flex; flex-direction: column; text-decoration: none; color: inherit;
  background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(30, 80, 162, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.nk-tvcard:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 16px 36px rgba(30, 80, 162, 0.12); border-color: #FFCC00; }
.nk-tvcard__poster { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #060d18; }
.nk-tvcard__poster img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.nk-tvcard:hover .nk-tvcard__poster img { transform: scale(1.06); }
.nk-tvcard__poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6) 100%); }
.nk-tvcard__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.85);
  width: 54px; height: 54px; border-radius: 50%; background: #FFCC00; color: #1E50A2;
  display: flex; align-items: center; justify-content: center; z-index: 2; opacity: 0; transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.nk-tvcard:hover .nk-tvcard__play { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.nk-tvcard__dur { position: absolute; bottom: 8px; right: 8px; z-index: 2; background: rgba(0,0,0,0.8); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 7px; border-radius: 4px; }
.nk-tvcard__info { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; background: #ffffff; }
.nk-tvcard__title {
  font-size: 15.5px; font-weight: 800; line-height: 1.35; color: #1e293b; margin: 0; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  transition: color 0.2s ease;
}
.nk-tvcard:hover .nk-tvcard__title { color: #1E50A2; }
.nk-tvcard__meta { display: flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: #64748b; }

/* ---- MODAL de inscrição ---- */
.nk-modal { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.nk-modal[hidden] { display: none; }
.nk-modal__backdrop { position: absolute; inset: 0; background: rgba(6, 12, 22, 0.78); backdrop-filter: blur(4px); }
.nk-modal__box {
  position: relative; z-index: 1; width: 100%; max-width: 420px; background: #fff; color: #1e293b;
  border-radius: 18px; padding: 32px 30px 26px; text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.55); border-top: 5px solid #ff0000;
}
.nk-modal__close {
  position: absolute; top: 12px; right: 14px; width: 34px; height: 34px; border: none; background: #f1f5f9;
  color: #475569; border-radius: 50%; font-size: 22px; line-height: 1; cursor: pointer; transition: all 0.2s;
}
.nk-modal__close:hover { background: #e2e8f0; color: #1E50A2; }
.nk-modal__brand { display: inline-flex; align-items: center; gap: 7px; color: #ff0000; font-weight: 900; font-size: 13px; letter-spacing: 0.1em; margin-bottom: 12px; }
.nk-modal__title { font-size: 21px; font-weight: 800; color: #1E50A2; margin: 0 0 8px; }
.nk-modal__desc { font-size: 14px; line-height: 1.55; color: #64748b; margin: 0 0 20px; }
.nk-modal__widget { display: flex; justify-content: center; min-height: 34px; margin-bottom: 16px; }
.nk-modal__alt { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 800; color: #1E50A2; text-decoration: none; }
.nk-modal__alt:hover { gap: 9px; }

/* ==========================================================================
   CARROSSEL DE SHORTS
   ========================================================================== */
.nk-shorts { background: #0a1424; padding: 46px 0 6px; }
.nk-shorts {
  background: #060d19;
  padding: clamp(38px, 4.5vw, 64px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nk-shorts__wrap { max-width: 1440px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

.nk-shorts__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.nk-shorts__header-txt {
  max-width: 820px;
}

.nk-shorts__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 0, 0, 0.16);
  color: #ff3333;
  border: 1px solid rgba(255, 0, 0, 0.4);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.nk-shorts__title {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.nk-shorts__sub {
  color: #9fb0c8;
  font-size: 14.5px;
  line-height: 1.55;
  margin: 8px 0 0;
}

.nk-shorts__nav { display: flex; gap: 10px; flex-shrink: 0; }
.nk-shorts__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 204, 0, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: #FFCC00;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.nk-shorts__arrow:hover {
  background: #FFCC00;
  color: #0a1424;
  border-color: #FFCC00;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

.nk-shorts__rail {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 2px 20px;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 204, 0, 0.4) rgba(255, 255, 255, 0.04);
}
.nk-shorts__rail:active {
  cursor: grabbing;
}
.nk-shorts__rail::-webkit-scrollbar {
  height: 6px;
}
.nk-shorts__rail::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}
.nk-shorts__rail::-webkit-scrollbar-thumb {
  background: rgba(255, 204, 0, 0.4);
  border-radius: 10px;
}
.nk-shorts__rail::-webkit-scrollbar-thumb:hover {
  background: #FFCC00;
}

.nk-short {
  flex: 0 0 auto;
  width: 200px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 520px) {
  .nk-short { width: 160px; }
}

.nk-short__views {
  position: absolute; bottom: 8px; left: 8px; z-index: 2; display: inline-flex; align-items: center; gap: 4px;
  background: rgba(0,0,0,0.85); color: #fff; font-size: 11px; font-weight: 800; padding: 3px 8px; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
}
.nk-short__views .nk-ico { color: #FFCC00; }

.nk-short__thumb {
  position: relative; width: 100%; aspect-ratio: 9 / 16; border-radius: 14px; overflow: hidden;
  border: 2px solid rgba(255,255,255,0.08); background: #060d18; cursor: pointer; padding: 0; display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.nk-short__thumb:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0,0,0,0.6);
  border-color: #FFCC00;
}
.nk-short__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.nk-short__thumb:hover img { transform: scale(1.08); }
.nk-short__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%; background: rgba(255,0,0,0.92); color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0,0,0,0.45);
  transition: all 0.25s ease;
}
.nk-short__thumb:hover .nk-short__play { background: #FFCC00; color: #0a1424; transform: translate(-50%, -50%) scale(1.15); }
.nk-short__label {
  font-size: 13.5px; font-weight: 700; line-height: 1.35; color: #e2e8f0; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* ==========================================================================
   LIGHTBOX vertical (assistir Short em pé)
   ========================================================================== */
.nk-lightbox__box {
  position: relative; z-index: 1; width: 100%; max-width: 900px; background: #0d1a30;
  border-radius: 20px; padding: 28px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.08);
}
.nk-lightbox__grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.nk-lightbox__info { color: #e8eef7; max-width: 440px; }
.nk-lightbox__badge {
  display: inline-flex; align-items: center; gap: 7px; background: #ff0000; color: #fff;
  font-size: 12px; font-weight: 900; letter-spacing: 0.1em; padding: 6px 12px; border-radius: 6px;
}
.nk-lightbox__h { font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; color: #fff; line-height: 1.25; margin: 14px 0 10px; }
.nk-lightbox__meta { color: #FFCC00; font-weight: 800; font-size: 13px; margin: 0 0 14px; }
.nk-lightbox__desc { color: #cdd8ea; font-size: 14.5px; line-height: 1.6; margin: 0 0 22px; }
.nk-lightbox__player {
  position: relative; height: min(78vh, 660px); width: calc(min(78vh, 660px) * 9 / 16); aspect-ratio: 9 / 16;
  border-radius: 16px; overflow: hidden; background: #000; box-shadow: 0 20px 50px rgba(0,0,0,0.5); flex-shrink: 0;
}
.nk-lightbox__player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.nk-lightbox__close {
  position: absolute; top: 12px; right: 12px; z-index: 3; width: 38px; height: 38px; border: none; background: rgba(255,255,255,0.14);
  color: #fff; border-radius: 50%; font-size: 24px; line-height: 1; cursor: pointer; transition: background 0.2s;
}
.nk-lightbox__close:hover { background: rgba(255,255,255,0.28); }

@media (max-width: 760px) {
  .nk-lightbox__box { padding: 20px; max-height: 92vh; overflow-y: auto; }
  .nk-lightbox__grid { grid-template-columns: 1fr; gap: 20px; }
  .nk-lightbox__info { max-width: none; order: 2; }
  .nk-lightbox__player { order: 1; height: auto; width: 100%; max-width: 300px; margin: 0 auto; }
}

/* ==========================================================================
   TIKTOK OFICIAL (@nikolasferreiradm)
   ========================================================================== */
.nk-tiktok-section {
  width: 100%;
}

.nk-tiktok-profile-card {
  background: #000000;
  color: #ffffff;
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.nk-tiktok-profile-header {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
@media (max-width: 700px) {
  .nk-tiktok-profile-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }
}

.nk-tiktok-avatar-wrap {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #FFCC00 0%, #00A859 100%);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.nk-tiktok-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.nk-tiktok-profile-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.nk-tiktok-name-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .nk-tiktok-name-row {
    justify-content: center;
  }
}

.nk-tiktok-name {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.nk-tiktok-handle {
  font-size: 15px;
  color: #a1a1aa;
  font-weight: 600;
}

.nk-tiktok-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nk-tiktok-stats {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .nk-tiktok-stats {
    justify-content: center;
  }
}

.nk-tiktok-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 14px;
}
.nk-tiktok-stat strong {
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
}
.nk-tiktok-stat span {
  color: #a1a1aa;
  font-size: 13.5px;
}

.nk-tiktok-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .nk-tiktok-actions {
    justify-content: center;
  }
}

.nk-btn--tiktok-follow {
  background: #FE2C55;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 15px;
  padding: 9px 36px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nk-btn--tiktok-follow:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.nk-btn--tiktok-msg {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 14px;
  padding: 9px 24px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nk-btn--tiktok-msg:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.nk-btn--tiktok-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff !important;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease;
}
.nk-btn--tiktok-icon:hover {
  background: rgba(255, 255, 255, 0.2);
}

.nk-tiktok-bio {
  font-size: 14.5px;
  line-height: 1.5;
  color: #e4e4e7;
  margin: 2px 0 0;
}

.nk-tiktok-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: #60a5fa;
  text-decoration: none;
}
.nk-tiktok-link:hover {
  text-decoration: underline;
}

.nk-tiktok-embed-wrap {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  overflow: hidden;
}

/* ==========================================================================
   REPOSTS DO INSTAGRAM (INTEGRADO DENTRO DO CONTEÚDO PRINCIPAL)
   ========================================================================== */
.nk-reposts-inner {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: clamp(20px, 3vw, 32px);
  box-shadow: 0 4px 16px rgba(30, 80, 162, 0.04);
}

.nk-reposts-head-clean {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.nk-reposts__grid-clean {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-height: 900px;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 4px 8px 4px 2px;
  scrollbar-width: thin;
  scrollbar-color: #1E50A2 #f1f5f9;
}
.nk-reposts__grid-clean::-webkit-scrollbar { width: 8px; }
.nk-reposts__grid-clean::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 8px; }
.nk-reposts__grid-clean::-webkit-scrollbar-thumb { background: #1E50A2; border-radius: 8px; }
.nk-reposts__grid-clean::-webkit-scrollbar-thumb:hover { background: #FFCC00; }
.nk-reposts__grid-clean .instagram-media { min-width: 0 !important; width: 100% !important; margin: 0 !important; border-radius: 12px; }

@media (max-width: 860px) {
  .nk-reposts__grid-clean {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .nk-reposts__grid-clean {
    grid-template-columns: 1fr;
    max-height: none;
    overflow: visible;
  }
}
