/* ==========================================================================
   Notícias Flamengo — folha de estilo de componentes
   Recriação fiel (hi-fi) do design em design/Noticias Flamengo.dc.html
   ========================================================================== */

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--nf-fonte-corpo);
  background: var(--nf-cinza-fundo);
  color: var(--nf-cinza-texto);
  min-height: 100vh;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--nf-fonte-titulo); cursor: pointer; }
figure { margin: 0; }

@keyframes nf-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes nf-pulse   { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.nf-container { max-width: var(--nf-container); margin: 0 auto; padding-left: var(--nf-pad-lateral); padding-right: var(--nf-pad-lateral); }
.nf-skip-link { position: absolute; left: -9999px; }
.nf-skip-link:focus { left: 12px; top: 12px; z-index: 200; background: #fff; padding: 10px 16px; box-shadow: var(--nf-sombra); }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }

/* ---------- Header (sticky) ---------- */
.nf-header { position: sticky; top: 0; z-index: 50; box-shadow: 0 1px 0 rgba(0,0,0,.08); }

.nf-ticker { background: var(--nf-preto); color: #fff; height: 38px; display: flex; align-items: center; overflow: hidden; }
.nf-ticker__label {
  background: var(--nf-vermelho); height: 38px; display: flex; align-items: center; gap: 7px; padding: 0 14px;
  font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 12px; letter-spacing: .5px;
  text-transform: uppercase; white-space: nowrap; flex: none;
}
.nf-ticker__dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: nf-pulse 1.2s infinite; display: inline-block; }
.nf-ticker__track-wrap { overflow: hidden; flex: 1; }
.nf-ticker__track { display: flex; gap: 0; white-space: nowrap; animation: nf-marquee 28s linear infinite; width: max-content; font-size: 13px; color: #e8e8e8; }
.nf-ticker__track span { display: inline-flex; align-items: center; }
/* Bullet rubro-negro separando cada manchete (losango vermelho com brilho) */
.nf-ticker__track span::before {
  content: ""; flex: none; width: 7px; height: 7px; margin: 0 22px;
  background: var(--nf-vermelho); transform: rotate(45deg);
  box-shadow: 0 0 7px rgba(215,25,32,.55);
}
.nf-ticker__track a { transition: color .12s; }
.nf-ticker__track a:hover { color: #fff; }

.nf-bar { background: #fff; border-bottom: 3px solid var(--nf-vermelho); }
.nf-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 14px; padding-bottom: 14px; }

/* Barra de navegação (acima da barra principal) */
.nf-topnav { background: var(--nf-preto); box-shadow: inset 0 1px 0 rgba(255,255,255,.06); }
.nf-topnav__inner { display: flex; align-items: center; min-height: 42px; }
.nf-topnav .nf-nav { flex: 1; justify-content: center; gap: 2px; }
.nf-topnav .nf-nav a { color: #fff; }
.nf-topnav .nf-nav a:hover,
.nf-topnav .nf-nav .current-menu-item > a,
.nf-topnav .nf-nav .current_page_item > a { background: var(--nf-vermelho); color: #fff; }

.nf-logo { display: flex; flex-direction: column; line-height: 1; flex: none; }
.nf-logo__row { display: flex; align-items: center; gap: 9px; }
.nf-logo__word { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 23px; color: var(--nf-preto); letter-spacing: -.5px; text-transform: uppercase; white-space: nowrap; }
.nf-logo__word b { color: var(--nf-vermelho); font-weight: 900; }
.nf-logo__tagline { font-size: 11px; color: #888; margin-top: 5px; margin-left: 43px; letter-spacing: .3px; }

.nf-nav { display: flex; gap: 1px; flex-wrap: wrap; flex: 1; justify-content: center; margin: 0; padding: 0; list-style: none; }
.nf-nav a {
  display: inline-block; font-family: var(--nf-fonte-titulo); font-weight: 700; font-size: 12.5px; text-transform: uppercase;
  letter-spacing: .2px; color: var(--nf-preto); padding: 7px 8px; border-radius: var(--nf-raio); white-space: nowrap; transition: background .12s,color .12s;
}
.nf-nav a:hover, .nf-nav .current-menu-item > a, .nf-nav .current_page_item > a { background: var(--nf-preto); color: #fff; }

.nf-search-toggle { display: flex; align-items: center; gap: 8px; flex: none; }
.nf-search-box {
  display: flex; align-items: center; gap: 9px; width: 230px;
  background: #fafafa; border: 1.5px solid #e6e6e6; border-radius: 999px;
  padding: 8px 9px 8px 14px; cursor: text;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.nf-search-box:hover, .nf-search-box:focus-within { background: #fff; border-color: var(--nf-vermelho); box-shadow: 0 2px 12px rgba(215,25,32,.13); }
.nf-search-box__icon { flex: none; stroke: #b5b5b5; transition: stroke .15s; }
.nf-search-box:hover .nf-search-box__icon, .nf-search-box:focus-within .nf-search-box__icon { stroke: var(--nf-vermelho); }
.nf-search-box input { border: none; background: transparent; outline: none; font-size: 13.5px; color: #444; font-family: var(--nf-fonte-corpo); width: 100%; cursor: text; }
.nf-search-box input::placeholder { color: #9a9a9a; }
.nf-search-box__kbd { flex: none; font-family: var(--nf-fonte-mono); font-size: 11px; line-height: 1; color: #aaa; background: #fff; border: 1px solid #e6e6e6; border-radius: 6px; padding: 4px 8px; box-shadow: 0 1px 0 #ededed; }
.nf-search-box:hover .nf-search-box__kbd, .nf-search-box:focus-within .nf-search-box__kbd { color: var(--nf-vermelho); border-color: #f0c9cb; }
.nf-menu-btn { background: var(--nf-vermelho); border: none; width: 38px; height: 38px; border-radius: var(--nf-raio); display: flex; align-items: center; justify-content: center; flex: none; }

/* Mobile nav panel (progressive) */
.nf-nav-mobile { display: none; }

/* ---------- Layout principal ---------- */
.nf-main { padding-top: 24px; padding-bottom: 60px; }
.nf-layout { display: flex; gap: 32px; align-items: flex-start; flex-wrap: wrap; }
.nf-layout--article { gap: 36px; }
.nf-col-main { flex: 1 1 640px; min-width: 0; }
.nf-col-main--narrow { flex: 1 1 600px; }
.nf-sidebar { flex: 1 1 300px; min-width: 0; max-width: 340px; display: flex; flex-direction: column; gap: 24px; }
.nf-sidebar--article { flex: 1 1 290px; max-width: 330px; position: sticky; top: 150px; }

/* ---------- Seções / headers de seção ---------- */
.nf-section { margin-top: 34px; }
.nf-section--tight { margin-top: 8px; }
.nf-section-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.nf-section-bar { width: 5px; height: 24px; display: inline-block; background: var(--nf-vermelho); flex: none; }
.nf-section-bar--dark { background: var(--nf-preto); }
.nf-section-bar--gold { background: var(--nf-dourado); }
.nf-section-title { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 22px; text-transform: uppercase; color: var(--nf-preto); margin: 0; letter-spacing: -.3px; }
.nf-section-link { margin-left: auto; font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 12px; color: var(--nf-vermelho); text-transform: uppercase; }
.nf-live { display: flex; align-items: center; gap: 6px; margin-left: auto; font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 11px; color: var(--nf-vermelho); text-transform: uppercase; }
.nf-live__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--nf-vermelho); animation: nf-pulse 1.2s infinite; }

/* ---------- Capa / placeholder rubro-negro ---------- */
.nf-cover { position: relative; aspect-ratio: 16/9; overflow: hidden; background:
  linear-gradient(135deg, var(--nf-preto) 0%, var(--nf-vermelho-esc) 100%); }
.nf-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nf-cover__mono { position: absolute; right: -6px; bottom: -18px; font-family: var(--nf-fonte-titulo); font-weight: 900; color: rgba(255,255,255,.08); line-height: 1; font-style: italic; font-size: 70px; pointer-events: none; }
.nf-cover__cat { position: absolute; top: 10px; left: 10px; background: var(--nf-vermelho); color: #fff; font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 9.5px; letter-spacing: .5px; text-transform: uppercase; padding: 4px 7px; }
.nf-cover__cat--dark { background: var(--nf-preto); }
/* variações de gradiente por índice (fallback sem imagem) */
.nf-cover.g0 { background: linear-gradient(135deg,#0B0B0B 0%,#8B0000 100%); }
.nf-cover.g1 { background: linear-gradient(135deg,#D71920 0%,#0B0B0B 100%); }
.nf-cover.g2 { background: linear-gradient(120deg,#0B0B0B 0%,#1c1c1c 55%,#8B0000 100%); }
.nf-cover.g3 { background: linear-gradient(135deg,#8B0000 0%,#0B0B0B 90%); }
.nf-cover.g4 { background: linear-gradient(160deg,#161616 0%,#0B0B0B 50%,#8B0000 100%); }

/* ---------- Cards ---------- */
.nf-card { background: #fff; box-shadow: var(--nf-sombra); display: block; transition: box-shadow .15s; }
.nf-card:hover { box-shadow: var(--nf-sombra-hover); }

/* Card grande / hero */
.nf-hero-row { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 8px; }
.nf-hero { flex: 1 1 420px; min-width: 0; }
.nf-hero .nf-cover__mono { font-size: 120px; right: -10px; bottom: -26px; color: rgba(255,255,255,.07); }
.nf-hero .nf-cover__cat { top: 14px; left: 14px; font-size: 11px; letter-spacing: .6px; padding: 5px 9px; }
.nf-hero__body { padding: 18px 20px 22px; }
.nf-hero__title { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: clamp(24px,3vw,32px); line-height: 1.08; color: var(--nf-preto); margin: 0 0 12px; letter-spacing: -.5px; text-wrap: balance; }
.nf-hero__excerpt { font-size: 16px; line-height: 1.5; color: #444; margin: 0 0 16px; }
.nf-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.nf-avatar { width: 26px; height: 26px; border-radius: 50%; background: var(--nf-preto); color: #fff; font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 11px; display: flex; align-items: center; justify-content: center; flex: none; overflow: hidden; }
.nf-avatar img { width: 100%; height: 100%; object-fit: cover; }
.nf-meta__name { font-size: 13px; color: #666; font-weight: 600; }
.nf-meta__dot { width: 4px; height: 4px; border-radius: 50%; background: #ccc; }
.nf-meta__time { font-size: 13px; color: var(--nf-cinza-meta); }
.nf-meta__cta { margin-left: auto; font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 13px; color: var(--nf-vermelho); text-transform: uppercase; letter-spacing: .4px; }

/* Card secundário (compacto horizontal) */
.nf-secondary-col { flex: 1 1 230px; min-width: 0; display: flex; flex-direction: column; gap: 14px; }
.nf-compact { display: flex; gap: 12px; box-shadow: var(--nf-sombra); padding: 10px; align-items: center; background: #fff; transition: box-shadow .15s; }
.nf-compact:hover { box-shadow: 0 3px 12px rgba(0,0,0,.12); }
.nf-compact__thumb { position: relative; width: 96px; height: 72px; flex: none; overflow: hidden; }
.nf-compact__thumb .nf-cover__mono { font-size: 42px; right: -4px; bottom: -10px; color: rgba(255,255,255,.1); }
.nf-compact__cat { font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 10px; letter-spacing: .5px; text-transform: uppercase; color: var(--nf-vermelho); }
.nf-compact__title { font-family: var(--nf-fonte-titulo); font-weight: 700; font-size: 15px; line-height: 1.15; color: var(--nf-preto); margin: 3px 0 4px; text-wrap: pretty; }
.nf-compact__time { font-size: 12px; color: var(--nf-cinza-meta); }

/* Card médio (grid) */
.nf-grid { display: grid; gap: 18px; }
.nf-grid--auto { grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); }
.nf-grid--fill { grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 22px; }
.nf-grid--related { grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); }
.nf-card-medio__body { padding: 13px 14px 16px; }
.nf-card-medio__title { font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 17px; line-height: 1.15; color: var(--nf-preto); margin: 0 0 8px; text-wrap: pretty; }
.nf-card-medio__time { font-size: 12px; color: var(--nf-cinza-meta); }

/* Lista "Últimas" (card sem imagem) */
.nf-list { background: #fff; box-shadow: var(--nf-sombra); }
.nf-list__item { display: flex; gap: 14px; align-items: center; padding: 14px 18px; border-bottom: 1px solid var(--nf-cinza-linha); border-left: 3px solid var(--nf-vermelho); transition: background .12s; }
.nf-list__item:last-child { border-bottom: none; }
.nf-list__item:hover { background: var(--nf-cinza-suave); }
.nf-list__time { font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 11px; color: #fff; background: var(--nf-preto); padding: 3px 7px; flex: none; letter-spacing: .4px; text-transform: uppercase; white-space: nowrap; }
.nf-list__cat { font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 10px; letter-spacing: .5px; text-transform: uppercase; color: var(--nf-vermelho); }
.nf-list__title { font-family: var(--nf-fonte-titulo); font-weight: 700; font-size: 16px; line-height: 1.2; color: var(--nf-preto); margin: 2px 0 0; text-wrap: pretty; }

/* Opinião (card preto) */
.nf-opiniao { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 18px; }
.nf-opiniao__card { background: var(--nf-preto); color: #fff; padding: 22px; position: relative; overflow: hidden; transition: background .15s; }
.nf-opiniao__card:hover { background: #161616; }
.nf-opiniao__quote { position: absolute; top: 6px; right: 14px; font-family: Georgia, serif; font-size: 90px; color: rgba(215,25,32,.25); line-height: 1; }
.nf-opiniao__head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.nf-opiniao__badge { width: 36px; height: 36px; border-radius: 50%; background: var(--nf-dourado); color: var(--nf-preto); font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 13px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.nf-opiniao__author { font-weight: 700; font-size: 14px; }
.nf-opiniao__role { font-size: 11px; color: #bbb; text-transform: uppercase; letter-spacing: .5px; }
.nf-opiniao__title { font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 19px; line-height: 1.22; margin: 0; position: relative; text-wrap: pretty; }

/* ---------- Sidebar widgets ---------- */
.nf-widget { background: #fff; box-shadow: var(--nf-sombra); }
.nf-widget__head { background: var(--nf-preto); color: #fff; font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 14px; text-transform: uppercase; letter-spacing: .5px; padding: 13px 16px; display: flex; justify-content: space-between; align-items: center; }
.nf-widget__head small { font-size: 10px; color: var(--nf-dourado); font-weight: 700; }
.nf-widget--pad { padding: 18px; }
.nf-widget__title { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 14px; color: var(--nf-preto); text-transform: uppercase; margin: 0 0 12px; }

/* Mais lidas (ranking) */
.nf-rank__item { display: flex; gap: 13px; padding: 14px 16px; border-bottom: 1px solid var(--nf-cinza-linha); align-items: flex-start; transition: background .12s; }
.nf-rank__item:last-child { border-bottom: none; }
.nf-rank__item:hover { background: var(--nf-cinza-suave); }
.nf-rank__num { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 26px; color: var(--nf-vermelho); line-height: .9; flex: none; width: 24px; }
.nf-rank__title { font-family: var(--nf-fonte-titulo); font-weight: 700; font-size: 14.5px; line-height: 1.2; color: var(--nf-preto); margin: 0; text-wrap: pretty; }

/* Próximo jogo */
.nf-jogo { background: linear-gradient(160deg,#0B0B0B 0%,#8B0000 130%); color: #fff; padding: 20px; }
.nf-jogo__label { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--nf-dourado); margin-bottom: 4px; }
.nf-jogo__comp { font-size: 11px; color: #cfcfcf; margin-bottom: 18px; }
.nf-jogo__teams { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 18px; }
.nf-jogo__team { text-align: center; }
.nf-jogo__tile { width: 54px; height: 54px; display: flex; align-items: center; justify-content: center; font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 18px; margin: 0 auto 7px; }
.nf-jogo__tile--home { background: var(--nf-vermelho); transform: skewX(-7deg); }
.nf-jogo__tile--away { background: #222; }
.nf-jogo__teamname { font-size: 11px; color: #ddd; }
.nf-jogo__vs { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 20px; color: #777; }
.nf-jogo__info { border-top: 1px solid rgba(255,255,255,.15); padding-top: 14px; display: flex; flex-direction: column; gap: 7px; font-size: 12.5px; }
.nf-jogo__info-row { display: flex; justify-content: space-between; }
.nf-jogo__info-row span:first-child { color: #aaa; }
.nf-jogo__info-row span:last-child { font-weight: 700; }
.nf-jogo__btn { width: 100%; margin-top: 16px; background: var(--nf-vermelho); color: #fff; border: none; padding: 11px; font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .5px; }

/* Classificação */
.nf-tabela { width: 100%; border-collapse: collapse; font-size: 13px; }
.nf-tabela thead tr { background: #f5f5f5; color: #888; font-family: var(--nf-fonte-titulo); font-weight: 700; font-size: 10px; text-transform: uppercase; letter-spacing: .4px; }
.nf-tabela th { padding: 8px 6px; }
.nf-tabela th:first-child { text-align: left; padding-left: 14px; }
.nf-tabela th:nth-child(2) { text-align: left; }
.nf-tabela tbody tr { border-bottom: 1px solid #f2f2f2; }
.nf-tabela tbody tr.is-fla { background: rgba(215,25,32,.10); }
.nf-tabela td { padding: 9px 6px; text-align: center; color: #777; }
.nf-tabela td:first-child { text-align: left; padding-left: 14px; font-weight: 800; color: #999; }
.nf-tabela td:nth-child(2) { text-align: left; }
.nf-tabela td:nth-child(3) { font-weight: 800; color: var(--nf-preto); }
.nf-tabela__team { display: inline-flex; align-items: center; gap: 7px; }
.nf-tabela__abbr { width: 22px; height: 22px; background: var(--nf-preto); color: #fff; font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 9px; display: flex; align-items: center; justify-content: center; flex: none; }
.nf-tabela__name { font-weight: 600; color: #222; }

/* Social (whatsapp/telegram) */
.nf-social-cta { background: #fff; box-shadow: var(--nf-sombra); padding: 20px; text-align: center; }
.nf-social-cta__title { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 16px; color: var(--nf-preto); text-transform: uppercase; }
.nf-social-cta p { font-size: 13px; color: #777; margin: 8px 0 16px; }
.nf-btn-group { display: flex; flex-direction: column; gap: 9px; }
.nf-btn { border: none; padding: 11px; font-weight: 800; font-size: 13px; color: #fff; display: flex; align-items: center; justify-content: center; gap: 8px; }
.nf-btn--whatsapp { background: var(--nf-whatsapp); }
.nf-btn--telegram { background: var(--nf-telegram); }

/* Tags */
.nf-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.nf-tag { font-size: 12px; font-weight: 600; color: #444; background: #f3f3f3; border: 1px solid #eaeaea; padding: 5px 10px; border-radius: var(--nf-raio); transition: background .12s,color .12s,border-color .12s; }
.nf-tag:hover { background: var(--nf-vermelho); color: #fff; border-color: var(--nf-vermelho); }

/* ---------- Anúncios ---------- */
.nf-ad { border: 1px dashed #cfcfcf; background: #ececec; display: flex; align-items: center; justify-content: center; border-radius: 4px; }
.nf-ad__label { font-family: var(--nf-fonte-titulo); font-weight: 700; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #b3b3b3; }
.nf-ad--topo { height: 92px; margin: 18px 0 0; }
.nf-ad--feed { height: 110px; margin: 24px 0; }
.nf-ad--artigo { height: 100px; margin: 28px 0; }
.nf-ad--sidebar { height: 260px; }
.nf-ad--sticky { height: 260px; }

/* ---------- Newsletter ---------- */
.nf-newsletter { margin-top: 44px; background: linear-gradient(120deg,#D71920 0%,#8B0000 100%); padding: 40px 30px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.nf-newsletter__text { flex: 1 1 300px; }
.nf-newsletter__title { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: clamp(24px,3vw,32px); color: #fff; margin: 0 0 8px; text-transform: uppercase; line-height: 1; }
.nf-newsletter__text p { color: #ffd9da; font-size: 15px; margin: 0; }
.nf-newsletter__form { flex: 1 1 320px; display: flex; gap: 10px; flex-wrap: wrap; }
.nf-newsletter__form input { flex: 1 1 200px; border: none; padding: 14px 16px; font-size: 15px; font-family: var(--nf-fonte-corpo); outline: none; }
.nf-newsletter__form button { background: var(--nf-preto); color: #fff; border: none; padding: 14px 24px; font-weight: 800; font-size: 14px; text-transform: uppercase; }

/* ---------- Artigo (single) ---------- */
.nf-breadcrumb { font-size: 12px; color: var(--nf-cinza-meta); margin-bottom: 16px; display: flex; gap: 7px; flex-wrap: wrap; }
.nf-breadcrumb a { color: var(--nf-vermelho); font-weight: 600; }
.nf-article__cat { display: inline-block; background: var(--nf-vermelho); color: #fff; font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 11px; letter-spacing: .6px; text-transform: uppercase; padding: 5px 10px; margin-bottom: 14px; white-space: nowrap; }
.nf-article__title { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: clamp(28px,4.5vw,44px); line-height: 1.06; color: var(--nf-preto); margin: 0 0 16px; letter-spacing: -.8px; text-wrap: balance; }
.nf-article__excerpt { font-size: 19px; line-height: 1.45; color: #555; margin: 0 0 22px; }
.nf-article__byline { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding: 16px 0; border-top: 1px solid var(--nf-cinza-borda); border-bottom: 1px solid var(--nf-cinza-borda); margin-bottom: 24px; }
.nf-article__byline .nf-avatar { width: 42px; height: 42px; font-size: 14px; }
.nf-byline__name { font-weight: 700; font-size: 14px; color: #222; }
.nf-byline__date { font-size: 12px; color: var(--nf-cinza-meta); }
.nf-updated { color: var(--nf-vermelho); font-weight: 600; }
.nf-share { margin-left: auto; display: flex; gap: 8px; }
.nf-share a { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; color: #fff; }
.nf-share__wa { background: var(--nf-whatsapp); }
.nf-share__tg { background: var(--nf-telegram); }
.nf-share__x  { background: var(--nf-preto); font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 14px; }
.nf-share__link { background: #eee; color: #333; }

.nf-figure .nf-cover { aspect-ratio: 16/9; }
.nf-figure .nf-cover__mono { font-size: 160px; right: 0; bottom: -30px; color: rgba(255,255,255,.07); }
/* Legendas de imagem (capa destacada + dentro do conteúdo) */
.nf-figcaption,
.nf-article__body figcaption,
.nf-article__body .wp-caption-text,
.nf-article__body .wp-element-caption {
  font-family: var(--nf-fonte-corpo);
  font-size: 13px;
  line-height: 1.5;
  font-style: italic;
  color: var(--nf-cinza-meta);
  margin: 8px 0 0;
  padding: 2px 0 2px 12px;
  border-left: 3px solid var(--nf-vermelho);
}
.nf-figcaption a,
.nf-article__body figcaption a { color: var(--nf-cinza-texto); border-bottom: 1px solid #ddd; font-weight: 600; }
/* Espaçamento das figuras e imagens no conteúdo */
.nf-article__body figure { margin: 28px 0; }
.nf-article__body figure img { margin: 0; }
.nf-article__body figure.wp-block-image { max-width: 100%; }
/* Limpa floats das imagens alinhadas */
.nf-article__body::after { content: ''; display: block; clear: both; }
.nf-article__body .alignleft { float: left; margin: 6px 24px 14px 0; max-width: 50%; }
.nf-article__body .alignright { float: right; margin: 6px 0 14px 24px; max-width: 50%; }
.nf-article__body .aligncenter { margin-left: auto; margin-right: auto; text-align: center; }
/* Em imagem centralizada, a legenda centraliza e dispensa a barra lateral */
.nf-article__body .aligncenter > figcaption,
.nf-article__body figure.aligncenter figcaption,
.nf-article__body .wp-caption.aligncenter .wp-caption-text { border-left: 0; padding-left: 0; text-align: center; }
@media (max-width: 560px) {
  .nf-article__body .alignleft,
  .nf-article__body .alignright { float: none; display: block; margin: 24px 0; max-width: 100%; }
}

.nf-article__body { font-size: 18px; line-height: 1.72; color: #2a2a2a; max-width: 820px; }
.nf-article__body p { margin: 20px 0; }
.nf-article__body a { color: var(--nf-vermelho); font-weight: 600; border-bottom: 2px solid #f3c6c8; }
.nf-article__body h2 { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 26px; color: var(--nf-preto); margin: 34px 0 14px; letter-spacing: -.4px; }
.nf-article__body h3 { font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 21px; color: var(--nf-preto); margin: 30px 0 12px; }
.nf-article__body blockquote { margin: 28px 0; padding: 18px 24px; border-left: 4px solid var(--nf-vermelho); background: var(--nf-cinza-suave); font-family: var(--nf-fonte-titulo); font-weight: 700; font-size: 21px; line-height: 1.35; color: var(--nf-preto); font-style: italic; }
.nf-article__body img { margin: 24px 0; }
.nf-article__body ul, .nf-article__body ol { padding-left: 22px; }
.nf-article__body li { margin: 8px 0; }

.nf-article__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0; padding-top: 24px; border-top: 1px solid var(--nf-cinza-borda); align-items: center; }
.nf-article__tags-label { font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 12px; color: var(--nf-cinza-meta); text-transform: uppercase; margin-right: 4px; }

.nf-authorbox { display: flex; gap: 16px; background: var(--nf-preto); color: #fff; padding: 22px; margin: 26px 0; align-items: flex-start; }
.nf-authorbox .nf-avatar { width: 58px; height: 58px; font-size: 18px; background: var(--nf-vermelho); flex: none; }
.nf-authorbox__name { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 17px; }
.nf-authorbox__role { font-size: 11px; color: var(--nf-dourado); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.nf-authorbox p { font-size: 13.5px; color: #ccc; margin: 0; line-height: 1.5; }

.nf-wa-cta { background: linear-gradient(120deg,#0B0B0B,#8B0000); color: #fff; padding: 24px; text-align: center; margin: 26px 0; }
.nf-wa-cta__title { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 19px; text-transform: uppercase; }
.nf-wa-cta p { font-size: 13.5px; color: #ddd; margin: 8px 0 14px; }
.nf-wa-cta button { background: var(--nf-whatsapp); color: #fff; border: none; padding: 12px 26px; font-weight: 800; font-size: 14px; }

/* ---------- Hero de categoria / autor ---------- */
.nf-hero-banner { background: linear-gradient(120deg,#0B0B0B 0%,#8B0000 120%); color: #fff; padding: 34px 30px; position: relative; overflow: hidden; }
.nf-hero-banner__mono { position: absolute; right: 10px; bottom: -30px; font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 130px; color: rgba(255,255,255,.06); line-height: 1; font-style: italic; pointer-events: none; }
.nf-hero-banner__crumb { font-size: 12px; color: var(--nf-dourado); font-weight: 600; margin-bottom: 8px; }
.nf-hero-banner__crumb a { cursor: pointer; }
.nf-hero-banner__title { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: clamp(30px,5vw,46px); text-transform: uppercase; margin: 0 0 10px; letter-spacing: -.5px; }
.nf-hero-banner p { font-size: 15px; color: #ddd; max-width: 560px; margin: 0; line-height: 1.5; }

.nf-author-head { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; padding: 30px; }
.nf-author-head__avatar { width: 104px; height: 104px; border-radius: 50%; background: var(--nf-vermelho); color: #fff; font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 34px; display: flex; align-items: center; justify-content: center; flex: none; border: 4px solid rgba(255,255,255,.15); overflow: hidden; }
.nf-author-head__mono { right: 0; bottom: -40px; font-size: 150px; color: rgba(255,255,255,.05); }
.nf-author-head__info { flex: 1 1 280px; min-width: 0; }
.nf-author-head__role { font-size: 11px; color: var(--nf-dourado); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 4px; }
.nf-author-head__name { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: clamp(28px,4vw,40px); margin: 0 0 10px; text-transform: uppercase; letter-spacing: -.5px; }
.nf-author-head__bio { font-size: 14.5px; color: #ddd; margin: 0 0 14px; line-height: 1.55; max-width: 560px; }
.nf-author-stats { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.nf-author-stats b { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 22px; color: #fff; }
.nf-author-stats span { font-size: 12px; color: #bbb; margin-left: 6px; }

/* ---------- Tabs de filtro (categoria) ---------- */
.nf-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; border-bottom: 2px solid var(--nf-cinza-borda); padding-bottom: 2px; }
.nf-tabs a, .nf-tabs span { font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 13px; text-transform: uppercase; color: #666; padding: 9px 16px; white-space: nowrap; }
.nf-tabs .is-active { color: #fff; background: var(--nf-vermelho); }
.nf-tabs a:hover { color: var(--nf-vermelho); }

/* ---------- Paginação ---------- */
.nf-pagination { margin-top: 34px; }
.nf-pagination .nav-links { display: flex; justify-content: center; gap: 7px; flex-wrap: wrap; }
.nf-pagination .screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }
.nf-pagination .page-numbers { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: #fff; color: #444; font-family: var(--nf-fonte-titulo); font-weight: 800; box-shadow: var(--nf-sombra); transition: background .12s,color .12s; }
.nf-pagination .page-numbers.current { background: var(--nf-vermelho); color: #fff; box-shadow: none; }
.nf-pagination a.page-numbers:hover { background: var(--nf-preto); color: #fff; }

/* ---------- Busca (resultado) ---------- */
.nf-searchbar { background: #fff; box-shadow: var(--nf-sombra); padding: 26px; margin-bottom: 8px; }
.nf-searchbar__form { display: flex; gap: 10px; flex-wrap: wrap; }
.nf-searchbar__field { flex: 1 1 300px; display: flex; align-items: center; gap: 10px; background: var(--nf-cinza-fundo); border: 2px solid var(--nf-preto); padding: 13px 16px; }
.nf-searchbar__field input { border: none; background: transparent; outline: none; font-size: 17px; font-family: var(--nf-fonte-corpo); width: 100%; color: var(--nf-preto); font-weight: 600; }
.nf-searchbar__btn { background: var(--nf-vermelho); color: #fff; border: none; padding: 0 28px; font-weight: 800; font-size: 14px; text-transform: uppercase; }
.nf-search-count { font-size: 14px; color: #777; margin-bottom: 18px; }
.nf-search-count strong { color: var(--nf-preto); font-family: var(--nf-fonte-titulo); }
.nf-search-count em { color: var(--nf-vermelho); font-weight: 700; font-style: normal; }
.nf-result-list { display: flex; flex-direction: column; gap: 14px; }
.nf-result { background: #fff; display: flex; gap: 16px; box-shadow: var(--nf-sombra); padding: 14px; align-items: center; transition: box-shadow .15s; }
.nf-result:hover { box-shadow: 0 3px 12px rgba(0,0,0,.12); }
.nf-result__thumb { position: relative; width: 150px; height: 96px; flex: none; overflow: hidden; }
.nf-result__thumb .nf-cover__mono { font-size: 50px; right: -4px; bottom: -12px; color: rgba(255,255,255,.1); }
.nf-result__cat { font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 10px; letter-spacing: .5px; text-transform: uppercase; color: var(--nf-vermelho); }
.nf-result__title { font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 18px; line-height: 1.18; color: var(--nf-preto); margin: 4px 0 6px; text-wrap: pretty; }
.nf-result__meta { font-size: 12.5px; color: var(--nf-cinza-meta); }

/* ---------- 404 ---------- */
.nf-404 { max-width: 760px; margin: 0 auto; padding: 60px 20px 70px; text-align: center; }
.nf-404__num { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: clamp(110px,22vw,200px); line-height: .85; letter-spacing: -6px; background: linear-gradient(120deg,#D71920,#8B0000); -webkit-background-clip: text; background-clip: text; color: transparent; font-style: italic; }
.nf-404__title { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: clamp(24px,4vw,34px); color: var(--nf-preto); text-transform: uppercase; margin: 6px 0 12px; letter-spacing: -.5px; }
.nf-404 p { font-size: 16px; color: #666; line-height: 1.6; margin: 0 auto 28px; max-width: 480px; }
.nf-404__search { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; max-width: 460px; margin: 0 auto 32px; }
.nf-404__field { flex: 1 1 240px; display: flex; align-items: center; gap: 10px; background: #fff; border: 2px solid var(--nf-preto); padding: 12px 15px; }
.nf-404__field input { border: none; background: transparent; outline: none; font-size: 15px; font-family: var(--nf-fonte-corpo); width: 100%; }
.nf-404__btn { background: var(--nf-vermelho); color: #fff; border: none; padding: 0 24px; font-weight: 800; font-size: 14px; text-transform: uppercase; }
.nf-404__suggest-label { font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 12px; color: var(--nf-cinza-meta); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px; }
.nf-404__divider { border-top: 1px solid var(--nf-cinza-borda); padding-top: 26px; }
.nf-404__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 16px; text-align: left; }

/* ---------- Footer ---------- */
.nf-footer { background: var(--nf-preto); color: #bbb; }
.nf-footer__topbar { height: 4px; background: linear-gradient(90deg,#D71920,#8B0000); }
.nf-footer__cols { display: flex; gap: 40px; flex-wrap: wrap; padding-top: 44px; padding-bottom: 24px; }
.nf-footer__brand { flex: 1 1 260px; }
.nf-footer__logo { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.nf-footer__logo .nf-logo__word { color: #fff; font-size: 22px; }
.nf-footer__brand p { font-size: 13px; line-height: 1.6; color: #999; max-width: 300px; }
.nf-footer__social { display: flex; gap: 10px; margin-top: 16px; }
.nf-footer__social a { width: 34px; height: 34px; border-radius: 50%; background: #1a1a1a; display: flex; align-items: center; justify-content: center; }
.nf-footer__col { flex: 1 1 150px; }
.nf-footer__col--wide { flex: 1 1 220px; }
.nf-footer__col-title { font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 13px; color: #fff; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px; }
.nf-footer__links { display: flex; flex-direction: column; gap: 9px; font-size: 13px; }
.nf-footer__links a:hover { color: #fff; }
.nf-footer__col p { font-size: 13px; color: #999; margin: 0 0 12px; line-height: 1.5; }
.nf-footer__btn { width: 100%; border: none; padding: 11px; font-weight: 800; font-size: 13px; color: #fff; margin-bottom: 8px; }
.nf-footer__bottom { border-top: 1px solid #1f1f1f; padding: 18px 20px; }
.nf-footer__bottom-inner { max-width: var(--nf-container); margin: 0 auto; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; align-items: center; }
.nf-footer__copy { font-size: 12px; color: #777; }
.nf-footer__disclaimer { font-size: 11.5px; color: #666; max-width: 560px; text-align: right; line-height: 1.5; }

/* ---------- Escudos (crests da API) ---------- */
.nf-crest { width: 18px; height: 18px; object-fit: contain; flex: none; vertical-align: middle; }
.nf-crest--lg { width: 38px; height: 38px; }
.nf-jogo__tile img.nf-crest { width: 38px; height: 38px; }
.nf-jogo__tile--home img.nf-crest { filter: drop-shadow(0 1px 2px rgba(0,0,0,.4)); }

/* ---------- Tabela: colunas extras + zonas ---------- */
.nf-tabela td.nf-tabela__zone, .nf-tabela th.nf-tabela__zone { width: 4px; padding: 0; }
.nf-tabela tr.zone-liber td:first-child { border-left: 4px solid #1e9e5a; }
.nf-tabela tr.zone-sula td:first-child  { border-left: 4px solid #2a7de1; }
.nf-tabela tr.zone-z4 td:first-child    { border-left: 4px solid #d23; }
.nf-tabela--full { font-size: 13px; }
.nf-tabela--full td, .nf-tabela--full th { padding: 9px 7px; }
.nf-zone-legend { display: flex; flex-wrap: wrap; gap: 16px; margin: 14px 2px 0; font-size: 12px; color: #555; }
.nf-zone-legend span { display: inline-flex; align-items: center; gap: 6px; }
.nf-zone-legend i { width: 11px; height: 11px; border-radius: 2px; display: inline-block; }
.nf-zone-legend .z-liber { background: #1e9e5a; }
.nf-zone-legend .z-sula  { background: #2a7de1; }
.nf-zone-legend .z-z4    { background: #d23; }

/* ---------- Widget Artilharia ---------- */
.nf-scorer { display: flex; align-items: center; gap: 11px; padding: 11px 16px; border-bottom: 1px solid var(--nf-cinza-linha); }
.nf-scorer:last-child { border-bottom: none; }
.nf-scorer.is-fla { background: rgba(215,25,32,.07); }
.nf-scorer__pos { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 15px; color: #bbb; width: 18px; flex: none; text-align: center; }
.nf-scorer.is-fla .nf-scorer__pos { color: var(--nf-vermelho); }
.nf-scorer__info { min-width: 0; flex: 1; }
.nf-scorer__name { font-family: var(--nf-fonte-titulo); font-weight: 700; font-size: 14px; color: var(--nf-preto); line-height: 1.15; }
.nf-scorer__team { font-size: 11px; color: var(--nf-cinza-meta); display: flex; align-items: center; gap: 5px; margin-top: 2px; }
.nf-scorer__goals { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 20px; color: var(--nf-preto); flex: none; }
.nf-scorer__goals small { font-size: 10px; color: var(--nf-cinza-meta); font-weight: 700; display: block; text-align: center; text-transform: uppercase; }

/* ---------- Widget Forma / últimos jogos ---------- */
.nf-forma { padding: 16px; }
.nf-forma__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.nf-forma__badges { display: flex; gap: 5px; }
.nf-badge { width: 24px; height: 24px; border-radius: 4px; display: flex; align-items: center; justify-content: center; font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 12px; color: #fff; }
.nf-badge--V { background: #1e9e5a; }
.nf-badge--E { background: #9aa0a6; }
.nf-badge--D { background: #d23; }
.nf-forma__aprov { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 13px; color: var(--nf-preto); }
.nf-forma__aprov small { color: var(--nf-cinza-meta); font-weight: 600; }
.nf-result-row { display: flex; align-items: center; gap: 8px; padding: 9px 0; border-top: 1px solid var(--nf-cinza-linha); font-size: 13px; }
.nf-result-row__date { font-size: 11px; color: var(--nf-cinza-meta); width: 38px; flex: none; }
.nf-result-row__teams { display: flex; align-items: center; gap: 6px; flex: 1; min-width: 0; }
.nf-result-row__score { font-family: var(--nf-fonte-titulo); font-weight: 800; color: var(--nf-preto); }
.nf-result-row__res { width: 18px; height: 18px; border-radius: 3px; color: #fff; font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 10px; display: flex; align-items: center; justify-content: center; flex: none; }
.nf-result-row__res.V { background: #1e9e5a; } .nf-result-row__res.E { background: #9aa0a6; } .nf-result-row__res.D { background: #d23; }

/* ---------- Página Elenco ---------- */
.nf-squad-group { margin-bottom: 28px; }
.nf-squad-group__title { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 16px; text-transform: uppercase; color: var(--nf-preto); margin: 0 0 12px; display: flex; align-items: center; gap: 10px; }
.nf-squad-group__title::before { content: ''; width: 5px; height: 18px; background: var(--nf-vermelho); display: inline-block; }
.nf-squad-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 12px; }
.nf-player { background: #fff; box-shadow: var(--nf-sombra); padding: 13px 15px; }
.nf-player__name { font-family: var(--nf-fonte-titulo); font-weight: 700; font-size: 15px; color: var(--nf-preto); }
.nf-player__meta { font-size: 12px; color: var(--nf-cinza-meta); margin-top: 3px; }
.nf-coach-card { background: linear-gradient(120deg,#0B0B0B,#8B0000); color: #fff; padding: 18px 22px; margin-bottom: 24px; display: flex; align-items: center; gap: 14px; }
.nf-coach-card__label { font-size: 11px; color: var(--nf-dourado); text-transform: uppercase; letter-spacing: .5px; font-weight: 700; }
.nf-coach-card__name { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 22px; }

/* ---------- Página Jogos (calendário/resultados) ---------- */
.nf-match-card { background: #fff; box-shadow: var(--nf-sombra); padding: 14px 18px; display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.nf-match-card__date { font-size: 12px; color: var(--nf-cinza-meta); width: 90px; flex: none; }
.nf-match-card__teams { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; font-family: var(--nf-fonte-titulo); font-weight: 700; }
.nf-match-card__score { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 18px; color: var(--nf-preto); }
.nf-match-card__vs { color: #bbb; font-weight: 800; }

/* ---------- Busca: overlay (popup) + autocomplete ---------- */
.nf-no-scroll { overflow: hidden; }
.nf-search-overlay[hidden] { display: none; }
.nf-search-overlay { position: fixed; inset: 0; z-index: 200; display: flex; flex-direction: column; align-items: center; }
.nf-search-overlay__backdrop { position: absolute; inset: 0; background: rgba(11,11,11,.62); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.nf-search-overlay__panel {
  position: relative; width: 100%; max-width: 640px; margin: 7vh 16px 0; background: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,.45); max-height: 82vh; display: flex; flex-direction: column;
  animation: nf-search-in .16s ease;
}
@keyframes nf-search-in { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: none; } }
.nf-search-overlay__bar { display: flex; align-items: center; gap: 12px; padding: 16px 18px; border-bottom: 3px solid var(--nf-vermelho); flex: none; }
.nf-search-overlay__input { flex: 1; min-width: 0; border: none; outline: none; background: transparent; font-family: var(--nf-fonte-corpo); font-size: 19px; color: var(--nf-preto); }
.nf-search-overlay__input::placeholder { color: #aaa; }
.nf-search-overlay__close { background: #f3f3f3; border: none; width: 34px; height: 34px; border-radius: 50%; font-size: 14px; color: #666; cursor: pointer; flex: none; transition: background .12s, color .12s; }
.nf-search-overlay__close:hover { background: var(--nf-vermelho); color: #fff; }
.nf-search-overlay__results { overflow-y: auto; padding: 8px; }
.nf-search-section-label { font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: #999; padding: 10px 10px 8px; }
.nf-search-hint { font-size: 11.5px; color: #aaa; padding: 8px 10px 12px; }
.nf-search-hint kbd { font-family: var(--nf-fonte-mono); font-size: 10px; background: #f1f1f1; border: 1px solid #e2e2e2; border-radius: 3px; padding: 1px 5px; margin: 0 1px; color: #555; }
.nf-suggest { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 4px; text-decoration: none; }
.nf-suggest:hover, .nf-suggest.is-active { background: #faf0f0; }
.nf-suggest__thumb { width: 56px; height: 42px; flex: none; position: relative; overflow: hidden; background: linear-gradient(135deg,#0B0B0B,#8B0000); }
.nf-suggest__thumb img { width: 100%; height: 100%; object-fit: cover; }
.nf-suggest__mono { position: absolute; right: -2px; bottom: -6px; font-family: var(--nf-fonte-titulo); font-weight: 900; font-style: italic; font-size: 22px; color: rgba(255,255,255,.14); line-height: 1; }
.nf-suggest__body { min-width: 0; display: flex; flex-direction: column; }
.nf-suggest__cat { font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 10px; text-transform: uppercase; letter-spacing: .4px; color: var(--nf-vermelho); }
.nf-suggest__title { font-family: var(--nf-fonte-titulo); font-weight: 700; font-size: 15px; line-height: 1.2; color: var(--nf-preto); margin: 2px 0; overflow: hidden; text-overflow: ellipsis; }
.nf-suggest__title mark { background: #ffe08a; color: inherit; padding: 0 1px; }
.nf-suggest__date { font-size: 11px; color: var(--nf-cinza-meta); }
.nf-search-alllink { display: block; text-align: center; padding: 12px; margin: 8px; font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .3px; color: #fff; background: var(--nf-vermelho); border-radius: 4px; text-decoration: none; }
.nf-search-alllink.is-active { background: var(--nf-vermelho-esc); }
.nf-search-empty, .nf-search-loading { padding: 26px 14px; text-align: center; color: #888; font-size: 14px; }
@media (max-width: 560px) {
  .nf-search-overlay__panel { margin: 0; max-width: none; height: 100%; max-height: none; }
}

/* ---------- Reações rápidas ---------- */
.nf-reactions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; background: #fff; box-shadow: var(--nf-sombra); padding: 16px 18px; margin: 26px 0; }
.nf-reactions__label { font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: .3px; color: var(--nf-preto); }
.nf-reactions__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.nf-react { display: inline-flex; align-items: center; gap: 7px; background: #f5f5f5; border: 1.5px solid #ececec; border-radius: 999px; padding: 7px 14px; cursor: pointer; font-family: var(--nf-fonte-titulo); font-weight: 800; transition: border-color .12s, background .12s; }
.nf-react:hover { border-color: var(--nf-vermelho); background: #fff; }
.nf-react.is-on { border-color: var(--nf-vermelho); background: #faf0f0; cursor: default; }
.nf-react__emoji { font-size: 18px; line-height: 1; }
.nf-react__count { font-size: 13px; color: #555; min-width: 8px; }
.nf-react.is-on .nf-react__count { color: var(--nf-vermelho); }
@keyframes nf-react-pop { 0% { transform: scale(1); } 40% { transform: scale(1.28); } 100% { transform: scale(1); } }
.nf-react--pop .nf-react__emoji { animation: nf-react-pop .28s ease; }

/* ---------- Comentários ---------- */
.nf-comments { margin-top: 36px; }
.nf-comments__list { list-style: none; margin: 0 0 24px; padding: 0; }
.nf-comments__list .children { list-style: none; margin: 0 0 0 26px; padding-left: 18px; border-left: 2px solid #f0f0f0; }
.nf-comment { margin: 0; }
.nf-comment__body { display: flex; gap: 13px; padding: 16px 0; border-bottom: 1px solid var(--nf-cinza-linha); align-items: flex-start; }
.nf-comment__avatar { width: 44px; height: 44px; flex: none; }
.nf-comment__avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.nf-comment__main { min-width: 0; flex: 1; }
.nf-comment__head { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; flex-wrap: wrap; }
.nf-comment__author { font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 14px; color: var(--nf-preto); }
.nf-comment__dot { color: #ccc; }
.nf-comment__date { font-size: 12px; color: var(--nf-cinza-meta); }
.nf-comment__hold { display: block; font-size: 12.5px; color: var(--nf-vermelho); margin: 4px 0; }
.nf-comment__text { font-size: 15px; line-height: 1.6; color: #2a2a2a; }
.nf-comment__text p { margin: 0 0 8px; }
.nf-comment__actions { margin-top: 6px; }
.nf-comment__actions a { font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .3px; color: var(--nf-vermelho); }
.bypostauthor > .nf-comment__body .nf-comment__author::after { content: "AUTOR"; font-size: 9px; background: var(--nf-preto); color: #fff; padding: 2px 6px; margin-left: 6px; border-radius: 3px; letter-spacing: .4px; vertical-align: middle; }

/* ---------- Formulário de comentário ---------- */
.nf-commentform { background: #fff; box-shadow: var(--nf-sombra); padding: 22px; margin-top: 8px; }
.nf-commentform .comment-reply-title { font-family: var(--nf-fonte-titulo); font-weight: 900; font-size: 20px; text-transform: uppercase; color: var(--nf-preto); margin: 0 0 6px; letter-spacing: -.2px; }
.nf-commentform .comment-reply-title a { font-size: 12px; color: var(--nf-vermelho); }
.nf-commentform__note { font-size: 12.5px; color: #888; margin: 0 0 16px; }
.nf-commentform__form { display: flex; flex-wrap: wrap; gap: 14px; }
.nf-commentform__field { display: flex; flex-direction: column; gap: 5px; flex: 1 1 100%; margin: 0; }
.nf-commentform__field--half { flex: 1 1 calc(50% - 7px); }
.nf-commentform__field label { font-family: var(--nf-fonte-titulo); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .3px; color: #555; }
.nf-commentform__field input, .nf-commentform__field textarea { border: 1.5px solid #e3e3e3; border-radius: 4px; padding: 11px 13px; font-family: var(--nf-fonte-corpo); font-size: 15px; color: var(--nf-preto); outline: none; width: 100%; transition: border-color .12s; }
.nf-commentform__field input:focus, .nf-commentform__field textarea:focus { border-color: var(--nf-vermelho); }
.nf-commentform .form-submit { flex: 1 1 100%; margin: 0; }
.nf-btn-submit { background: var(--nf-vermelho); color: #fff; border: none; padding: 13px 28px; font-family: var(--nf-fonte-titulo); font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: .4px; cursor: pointer; transition: background .12s; }
.nf-btn-submit:hover { background: var(--nf-vermelho-esc); }
.nf-req { color: var(--nf-vermelho); }
.nf-comments__closed { font-size: 14px; color: #888; background: #fafafa; padding: 14px; text-align: center; }
.nf-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Responsivo ---------- */
@media (max-width: 980px) {
  .nf-sidebar, .nf-sidebar--article { max-width: none; position: static; top: auto; }
  .nf-sidebar--article { order: 2; }
}
@media (max-width: 760px) {
  /* topnav colapsa; o hambúrguer (na barra branca) abre o menu como dropdown */
  .nf-topnav__inner { min-height: 0; }
  .nf-topnav .nf-nav { display: none; width: 100%; flex-direction: column; }
  .nf-topnav .nf-nav.is-open { display: flex; padding: 6px 0; }
  .nf-topnav .nf-nav.is-open a { width: 100%; padding: 12px 6px; border-radius: 0; }
  .nf-bar__inner { gap: 12px; }
  .nf-search-box { width: auto; flex: 1; }
  .nf-search-box__kbd { display: none; }
  .nf-footer__disclaimer { text-align: left; }
  .nf-share { width: 100%; margin-left: 0; }
  .nf-newsletter { padding: 28px 20px; }
}
