:root {
  --bg: #f4f5f9;
  --surface: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --brand: #e50914;
  --brand-2: #b91c1c;
  --dark: #0b1120;
  --dark-2: #101a30;
  --radius: 16px;
  --shadow: 0 1px 2px rgba(15, 23, 42, .06), 0 8px 24px -12px rgba(15, 23, 42, .18);
  --shadow-lg: 0 12px 40px -12px rgba(15, 23, 42, .28);
  --font-display: "Sora", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 6px; }

.container { width: min(1240px, 100% - 32px); margin-inline: auto; }

/* ===================== TOPBAR ===================== */
.topbar {
  background: var(--dark);
  color: #cbd5e1;
  font-size: 12.5px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.tb { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 7px; }
.tb-left { display: flex; align-items: center; gap: 9px; font-weight: 500; letter-spacing: .02em; text-transform: capitalize; }
.tb-sep { opacity: .3; }
#datetime { white-space: nowrap; }
.weather-mini { display: flex; align-items: center; gap: 5px; font-size: 12px; color: #facc15; white-space: nowrap; }
.weather-mini svg { flex-shrink: 0; }
#weatherTemp { font-weight: 700; }
#weatherCity { color: #94a3b8; font-weight: 400; }

.dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e; flex: none;
  animation: pulse 1.6s ease-in-out infinite;
}
.dot-live.dark { background: var(--brand); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, .55); }
  60% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.tb-right { display: flex; align-items: center; gap: 8px; }
.tb-follow { color: #64748b; text-transform: uppercase; letter-spacing: .14em; font-size: 10px; margin-right: 2px; }
.soc {
  display: grid; place-items: center; width: 26px; height: 26px;
  border-radius: 50%; color: #cbd5e1; transition: .25s;
}
.soc svg { width: 14px; height: 14px; }
.soc:hover { background: var(--brand); color: #fff; transform: translateY(-1px); }

/* ===================== MASTHEAD ===================== */
.masthead { background: linear-gradient(180deg, #0d1526, #0b1120); color: #fff; position: relative; overflow: hidden; }
.masthead::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 200px at 85% 120%, rgba(229, 9, 20, .25), transparent);
  pointer-events: none;
}
.mast { display: flex; align-items: center; gap: 28px; padding-block: 18px; position: relative; z-index: 1; }

.logo { display: inline-flex; flex-direction: column; line-height: 1; gap: 5px; }
.logo-img {
  height: clamp(44px, 5vw, 60px); width: auto; max-width: min(260px, 70vw);
  object-fit: contain; object-position: left center;
}
.footer-logo .logo-img { height: 46px; max-width: 220px; }
.lg-top { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 3.4vw, 34px); letter-spacing: -.02em; display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.lg-badge {
  background: var(--brand); color: #fff; font-size: clamp(13px, 1.6vw, 17px);
  padding: 4px 10px; border-radius: 8px; letter-spacing: .08em;
  transform: skewX(-8deg);
}
.lg-sub { font-size: 11px; color: #7d8aa5; letter-spacing: .12em; text-transform: uppercase; }

.search { margin-left: auto; display: flex; align-items: center; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12); border-radius: 999px; padding: 4px 4px 4px 16px; transition: .25s; }
.search:focus-within { background: rgba(255, 255, 255, .12); border-color: rgba(229, 9, 20, .6); }
.search input { background: transparent; border: none; outline: none; color: #fff; width: 190px; font-size: 14px; }
.search input::placeholder { color: #8ea0bd; }
.search button { color: #fff; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--brand); transition: .2s; }
.search button:hover { filter: brightness(1.15); }

/* ===================== PUBLICIDADE (caixas) ===================== */
.pub-label {
  display: block; text-align: center;
  font-size: 10px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: #94a3b8; margin-bottom: 6px;
}
.pub-wrap.mini { margin-left: 8px; }
.ad-box {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  text-align: center; border-radius: 12px;
  background: repeating-linear-gradient(-45deg, #eef1f6, #eef1f6 12px, #f6f8fb 12px, #f6f8fb 24px);
  border: 1px dashed #b6c2d4; color: #475569;
  transition: .25s; overflow: hidden; position: relative;
}
.ad-box:hover { border-color: var(--brand); color: var(--brand-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.ad-box img { width: 100%; height: 100%; object-fit: contain; display: block; }
.ad-box strong { font-family: var(--font-display); letter-spacing: .06em; font-size: 15px; }
.ad-box small { font-size: 11px; opacity: .8; }
.ad-cta {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  padding: 7px 22px; border-radius: 999px;
  background: var(--brand); color: #fff; font-size: 12px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase; transition: .25s; white-space: nowrap;
}
.ad-box:hover .ad-cta { background: var(--brand-2); transform: translateX(-50%) translateY(-1px); }
.ad-mini { width: 468px; max-width: 100%; height: 60px; }
.ad-wide { height: 250px; }
.ad-tall { height: 600px; }
.ad-square { height: 250px; }
.rail-pub .pub-label { margin-top: 4px; }

/* ===================== NAVBAR ===================== */
.navbar {
  background: var(--dark-2);
  position: sticky; top: 0; z-index: 50;
  border-bottom: 3px solid var(--brand);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 10px 30px -10px rgba(2, 6, 23, .5); }
.navwrap { display: flex; align-items: center; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.navwrap::-webkit-scrollbar { display: none; }
.chip {
  color: #b7c3d8; font-size: 13.5px; font-weight: 600;
  padding: 13px 15px; white-space: nowrap; position: relative;
  transition: .2s; letter-spacing: .01em;
}
.chip::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 0; height: 3px;
  background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.chip:hover { color: #fff; }
.chip.active { color: #fff; }
.chip.active::after { transform: scaleX(1); }

/* ===================== TICKER ===================== */
.ticker { display: flex; align-items: stretch; background: #fff; border-bottom: 1px solid var(--line); overflow: hidden; }
.ticker-label {
  display: flex; align-items: center; gap: 8px;
  background: var(--brand); color: #fff; font-weight: 800; font-size: 12px; letter-spacing: .1em;
  padding: 10px 16px; clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
  z-index: 2; flex: none;
}
.ticker-vp { overflow: hidden; flex: 1; display: flex; align-items: center; }
.ticker-track { display: inline-flex; align-items: center; white-space: nowrap; animation: tick 80s linear infinite; will-change: transform; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track a { font-size: 13.5px; font-weight: 500; color: #334155; padding-inline: 6px; transition: .2s; }
.ticker-track a:hover { color: var(--brand); }
.ticker-track .sep { color: var(--brand); padding-inline: 14px; font-size: 10px; }
@keyframes tick { to { transform: translateX(-50%); } }

/* ===================== HERO / SLIDER DE ANÚNCIOS ===================== */
.hero-ad { margin-top: 22px; }

/* ===================== CLIMA / TEMPO EM DESTAQUE ===================== */
.weather-hero { margin-top: 18px; }
.weather-card {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: linear-gradient(135deg, #0b1120 0%, #162040 100%);
  border-radius: var(--radius); padding: 20px 28px; color: #fff;
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.weather-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(300px 200px at 80% 50%, rgba(250, 204, 21, .1), transparent);
  pointer-events: none;
}
.wc-left { display: flex; align-items: center; gap: 16px; position: relative; z-index: 1; }
.wc-icon { flex-shrink: 0; }
.wc-info { display: flex; flex-direction: column; gap: 2px; }
.wc-city { font-size: 13px; color: #94a3b8; font-weight: 500; }
.wc-temp { display: flex; align-items: flex-start; gap: 2px; }
.wc-temp #wcTempBig { font-family: var(--font-display); font-size: 42px; font-weight: 800; line-height: 1; }
.wc-unit { font-size: 18px; font-weight: 700; margin-top: 4px; color: #facc15; }
.wc-desc { font-size: 13px; color: #cbd5e1; text-transform: capitalize; }
.wc-right { display: flex; gap: 20px; position: relative; z-index: 1; }
.wc-detail { display: flex; flex-direction: column; align-items: center; gap: 2px; text-align: center; }
.wc-detail span { font-size: 11px; color: #64748b; text-transform: uppercase; letter-spacing: .06em; }
.wc-detail strong { font-size: 14px; font-weight: 700; color: #e2e8f0; }
@media (max-width: 768px) {
  .weather-card { flex-direction: column; align-items: flex-start; padding: 16px 20px; }
  .wc-right { flex-wrap: wrap; gap: 12px; }
  .wc-temp #wcTempBig { font-size: 32px; }
}
.slider { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); background: var(--dark); }
.slides { display: flex; transition: transform .6s cubic-bezier(.77, 0, .18, 1); height: clamp(180px, 26vw, 300px); }
.slide { flex: 0 0 100%; position: relative; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide.slide-banner img { object-fit: contain; background: #000; }
.slide a { display: block; height: 100%; }

.slide.promo figcaption {
  height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; gap: 10px; padding: 24px; color: #fff;
}
.slide.promo h3 { font-family: var(--font-display); font-size: clamp(22px, 3.6vw, 40px); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; text-shadow: 0 4px 20px rgba(0, 0, 0, .35); }
.slide.promo p { font-size: clamp(13px, 1.6vw, 16px); opacity: .92; max-width: 640px; }
.cta {
  display: inline-block; background: #fff; color: var(--ink) !important;
  font-weight: 700; font-size: 13.5px; padding: 10px 26px; border-radius: 999px;
  transition: .25s; margin-top: 4px;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 10px 25px -8px rgba(0, 0, 0, .45); }
.g1 { background: linear-gradient(130deg, #e50914 0%, #7f1d1d 70%, #450a0a 100%); }
.g2 { background: linear-gradient(130deg, #0f172a 0%, #1e293b 60%, #334155 100%); }
.g2 .cta { background: var(--brand); color: #fff !important; }
.g3 { background: linear-gradient(130deg, #f59e0b 0%, #ef4444 65%, #be123c 100%); }

.s-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(15, 23, 42, .35); color: #fff; backdrop-filter: blur(6px);
  display: grid; place-items: center; opacity: 0; transition: .25s; z-index: 3;
}
.slider:hover .s-btn, .s-btn:focus-visible { opacity: 1; }
.s-btn.prev { left: 14px; } .s-btn.next { right: 14px; }
.s-btn:hover { background: var(--brand); }

.dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 3; }
.dots button { width: 8px; height: 8px; border-radius: 99px; background: rgba(255, 255, 255, .5); transition: .3s; }
.dots button.active { width: 26px; background: #fff; }

/* ===================== LAYOUT PRINCIPAL ===================== */
.layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 28px; margin-top: 30px; }

.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 26px 0 14px; }
.col-main .sec-head:first-child { margin-top: 4px; }
.sec-head h2 {
  font-family: var(--font-display); font-size: 21px; font-weight: 800; letter-spacing: -.01em;
  display: flex; align-items: center; gap: 10px;
}
.sec-head h2::before { content: ""; width: 5px; height: 22px; background: var(--brand); border-radius: 4px; flex: none; }
.results { font-size: 12.5px; color: var(--muted); }

.updated {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 600; color: #166534;
  background: #dcfce7; border: 1px solid #bbf7d0; padding: 4px 12px; border-radius: 999px;
}
.updated::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #22c55e; }

/* ---------- Destaques ---------- */
.featured-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 18px; }
.f-side { display: grid; gap: 18px; align-content: start; }

.card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: .3s cubic-bezier(.2, .7, .3, 1);
  display: flex; flex-direction: column; position: relative;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.thumb { position: relative; overflow: hidden; aspect-ratio: 16/9; background: linear-gradient(135deg, #1e293b, #0b1120); }
.thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2, .7, .3, 1); }
.card:hover .thumb img { transform: scale(1.06); }

.ph {
  width: 100%; height: 100%;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 44px; color: rgba(255, 255, 255, .85);
}

.thumb.noimg { display: grid; place-items: center; }
.thumb.noimg::after {
  content: "JR";
  font-family: var(--font-display); font-weight: 800; font-size: 42px; color: rgba(255, 255, 255, .85);
}

.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  color: #fff; font-size: 10.5px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; backdrop-filter: blur(4px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, .3);
}

.cbody { padding: 15px 17px 17px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card h3 { font-family: var(--font-display); font-size: 15.5px; line-height: 1.38; font-weight: 700; letter-spacing: -.005em; }
.meta { margin-top: auto; display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); font-weight: 500; }
.meta .src { color: var(--brand-2); font-weight: 700; text-transform: uppercase; font-size: 10.5px; letter-spacing: .06em; }

/* card principal (grande, com texto sobreposto) */
.card.featured-main { min-height: 100%; cursor: pointer; }
.card.featured-main > a { position: absolute; inset: 0; z-index: 2; border-radius: var(--radius); }
.card.featured-main .thumb { aspect-ratio: auto; flex: 1; min-height: 340px; }
.card.overlay { justify-content: flex-end; }
.card.overlay .thumb::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0) 30%, rgba(2, 6, 23, .88));
}
.card.overlay .otext { position: absolute; inset-inline: 0; bottom: 0; z-index: 1; padding: 22px; color: #fff; display: flex; flex-direction: column; gap: 8px; }
.card.overlay h3 { font-size: clamp(18px, 2.2vw, 25px); }
.card.overlay .meta { color: #b8c4d8; }
.card.overlay .meta .src { color: #ff5a63; }

/* ---------- Grade de cards ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(235px, 1fr)); gap: 18px; }
.cards-grid .thumb { aspect-ratio: 16/9; }
.cards-grid h3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.excerpt {
  font-size: 13px; color: var(--muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.loadmore-wrap { display: grid; place-items: center; gap: 14px; margin: 28px 0 10px; }
.btn-more {
  background: var(--dark); color: #fff; font-weight: 700; font-size: 14px;
  padding: 13px 34px; border-radius: 999px; transition: .25s;
}
.btn-more:hover { background: var(--brand); transform: translateY(-2px); box-shadow: 0 12px 28px -10px rgba(229, 9, 20, .55); }

.status-error {
  text-align: center; background: #fff; border: 1px solid #fecaca; border-radius: var(--radius);
  padding: 28px; color: #7f1d1d; font-size: 14px;
}
.status-error strong { display: block; font-family: var(--font-display); margin-bottom: 6px; font-size: 16px; }
.btn-retry { margin-top: 14px; background: var(--brand); color: #fff; font-weight: 700; padding: 10px 28px; border-radius: 999px; transition: .2s; }
.btn-retry:hover { filter: brightness(1.12); }

/* ---------- Skeleton loading ---------- */
@keyframes shimmer { to { background-position: -400px 0; } }
.skel { border-radius: var(--radius); overflow: hidden; background: var(--surface); box-shadow: var(--shadow); }
.skel .sk-thumb { aspect-ratio: 16/9; background: linear-gradient(90deg, #eceff4 25%, #f7f9fc 50%, #eceff4 75%); background-size: 400px 100%; animation: shimmer 1.3s infinite linear; }
.skel .sk-body { padding: 15px 17px; display: grid; gap: 9px; }
.skel .sk-line { height: 12px; border-radius: 6px; background: linear-gradient(90deg, #eceff4 25%, #f7f9fc 50%, #eceff4 75%); background-size: 400px 100%; animation: shimmer 1.3s infinite linear; }
.skel .sk-line.w80 { width: 80%; } .skel .sk-line.w60 { width: 60%; }

/* ===================== RAIL ===================== */
.rail { display: flex; flex-direction: column; gap: 22px; }
.widget { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; }
.widget h3 {
  font-family: var(--font-display); font-size: 16px; font-weight: 800; letter-spacing: -.01em;
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.widget h3 span { width: 5px; height: 20px; background: var(--brand); border-radius: 4px; }

.trend-list { list-style: none; counter-reset: trend; display: grid; gap: 4px; }
.trend-list li { counter-increment: trend; }
.trend-list a {
  display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start;
  padding: 9px 6px; border-radius: 10px; transition: .2s;
  font-size: 13.5px; font-weight: 600; line-height: 1.4;
}
.trend-list a:hover { background: #f1f5f9; color: var(--brand-2); }
.trend-list a::before {
  content: counter(trend, decimal-leading-zero);
  font-family: var(--font-display); font-weight: 800; font-size: 20px; color: #cbd5e1;
  line-height: 1.05;
}
.trend-list li:nth-child(-n+3) a::before { color: var(--brand); }
.trend-list .t-title { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ===================== SERVIÇOS JSMUNIZ (ANÚNCIO) ===================== */
.svc-band {
  margin: 10px 0 54px; padding: clamp(24px, 4vw, 46px);
  border-radius: 22px; background:
    radial-gradient(800px 300px at 110% -10%, rgba(229, 9, 20, .28), transparent),
    linear-gradient(150deg, #0b1120, #111a2e);
  box-shadow: var(--shadow-lg); color: #fff;
}
.svc-head { text-align: center; max-width: 720px; margin: 0 auto 30px; }
.svc-tag {
  display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: #fca5a5;
  border: 1px solid rgba(229, 9, 20, .55); padding: 5px 14px; border-radius: 999px; margin-bottom: 14px;
}
.svc-head h2 { font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); font-weight: 600; letter-spacing: -.01em; }
.svc-head h2 strong { color: var(--brand); font-weight: 800; }
.svc-head p { margin-top: 8px; opacity: .82; font-size: 14.5px; }

.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.svc-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: .3s cubic-bezier(.2, .7, .3, 1);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px -12px rgba(0, 0, 0, .5); }
.svc-thumb { aspect-ratio: 16/10; overflow: hidden; background: #e2e8f0; }
.svc-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2, .7, .3, 1); }
.svc-card:hover .svc-thumb img { transform: scale(1.07); }
.svc-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.svc-ico {
  width: 42px; height: 42px; border-radius: 12px; flex: none;
  background: linear-gradient(135deg, #fee2e2, #fecaca); color: var(--brand-2);
  display: grid; place-items: center;
}
.svc-ico svg { width: 22px; height: 22px; stroke-width: 1.8; }
.svc-body h3 { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: var(--ink); }
.svc-body p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.svc-cta {
  display: block; text-align: center; background: var(--dark); color: #fff;
  font-weight: 700; font-size: 13px; padding: 12px; margin: 0 18px 18px;
  border-radius: 999px; transition: .25s;
}
.svc-cta:hover { background: var(--brand); transform: translateY(-2px); }

/* ===================== NEWSLETTER ===================== */
.newsletter {
  margin: 44px 0 54px; padding: clamp(26px, 4vw, 44px);
  border-radius: 22px; color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(120deg, #dc2626 0%, #7f1d1d 55%, #0b1120 100%);
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.newsletter::before {
  content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: rgba(255, 255, 255, .07); top: -170px; right: -90px;
}
.newsletter h2 { font-family: var(--font-display); font-size: clamp(21px, 2.6vw, 27px); font-weight: 800; }
.newsletter p { opacity: .88; font-size: 14px; max-width: 480px; margin-top: 5px; }
.newsletter form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter input {
  min-width: min(300px, 70vw); padding: 13px 20px; border-radius: 999px; border: none; outline: none;
  font-size: 14px;
}
.newsletter button {
  background: var(--dark); color: #fff; font-weight: 700; font-size: 14px;
  padding: 13px 28px; border-radius: 999px; transition: .2s;
}
.newsletter button:hover { background: #000; transform: translateY(-2px); }
#nlMsg { width: 100%; font-size: 13px; font-weight: 600; color: #bbf7d0; }

/* ===================== FOOTER ===================== */
footer { background: #070b14; color: #93a3bd; margin-top: 20px; }
.fgrid { display: grid; grid-template-columns: 1.4fr .8fr .9fr 1fr; gap: 34px; padding-block: 48px; }
.fcol h4 { color: #fff; font-family: var(--font-display); font-size: 14px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.fcol.about p { font-size: 13px; margin-top: 14px; line-height: 1.7; }
.f-soc { display: flex; gap: 8px; margin-top: 16px; }
.f-soc .soc { background: rgba(255, 255, 255, .07); width: 34px; height: 34px; }
.f-soc .soc svg { width: 17px; height: 17px; }
.footer-logo .lg-top { font-size: 24px; }
.fcol nav, .fcol { display: block; }
.fcol > a, .fcol > button, .fcol > p { display: block; text-align: left; font-size: 13.5px; padding: 5px 0; color: #93a3bd; transition: .2s; width: fit-content; }
.fcol > a:hover, .fcol > button:hover { color: #fff; transform: translateX(4px); }
.contact p strong { color: #c7d2e5; font-weight: 600; }

.fbar { border-top: 1px solid rgba(255, 255, 255, .07); padding-block: 16px; font-size: 12.5px; }
.fb-in { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.fb-in strong { color: #fff; }

/* ===================== FLUTUANTES ===================== */
.radio-float {
  position: fixed; left: 20px; bottom: 84px; z-index: 60;
  display: flex; align-items: center; gap: 11px;
  background: linear-gradient(120deg, #111827, #1f2937);
  color: #fff; padding: 9px 18px 9px 10px; border-radius: 999px;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, .55);
  border: 1px solid rgba(229, 9, 20, .5);
  transition: .25s;
}
.radio-float:hover { transform: translateY(-3px); border-color: var(--brand); }
.rf-icon {
  position: relative; width: 38px; height: 38px; border-radius: 50%;
  background: var(--brand); display: grid; place-items: center; flex: none;
}
.rf-icon svg { width: 17px; height: 17px; }
.rf-icon .ic-pause { display: none; }
.radio-float.playing .rf-icon .ic-play { display: none; }
.radio-float.playing .rf-icon .ic-pause { display: block; }
.rf-text { display: flex; flex-direction: column; line-height: 1.15; }
.rf-text strong { font-size: 12px; letter-spacing: .08em; font-family: var(--font-display); }
.rf-text small { font-size: 11px; color: #b6c2d8; }

.rf-waves { display: flex; align-items: flex-end; gap: 2.5px; height: 16px; margin-left: 2px; }
.rf-waves i { width: 3px; border-radius: 2px; background: var(--brand); height: 6px; opacity: .4; transition: .3s; }
.radio-float.playing .rf-waves i { animation: wave 1s ease-in-out infinite; opacity: 1; }
.radio-float.playing .rf-waves i:nth-child(2) { animation-delay: .15s; }
.radio-float.playing .rf-waves i:nth-child(3) { animation-delay: .3s; }
.radio-float.playing .rf-waves i:nth-child(4) { animation-delay: .45s; }
@keyframes wave { 0%, 100% { height: 6px; } 50% { height: 16px; } }

.wapp-float {
  position: fixed; right: 20px; bottom: 84px; z-index: 60;
  width: 54px; height: 54px; border-radius: 50%;
  background: #22c55e; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px -8px rgba(34, 197, 94, .65); transition: .25s;
}
.wapp-float svg { width: 28px; height: 28px; stroke-width: 1.6; }
.wapp-float:hover { transform: scale(1.1) rotate(6deg); }

#toTop {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--dark); color: #fff; display: grid; place-items: center;
  opacity: 0; pointer-events: none; transform: translateY(10px); transition: .3s;
}
#toTop.show { opacity: 1; pointer-events: auto; transform: none; }
#toTop:hover { background: var(--brand); }

#toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 80px); z-index: 100;
  background: var(--dark); color: #fff; font-size: 13.5px; font-weight: 600;
  padding: 12px 24px; border-radius: 999px; box-shadow: var(--shadow-lg);
  opacity: 0; transition: .35s cubic-bezier(.2, .7, .3, 1); pointer-events: none;
}
#toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ===================== POPUP NOTIFICAÇÕES ===================== */
.notif-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0, 0, 0, .55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .35s;
}
.notif-overlay.show { opacity: 1; pointer-events: auto; }
.notif-popup {
  background: #fff; border-radius: 16px; padding: 32px 28px; max-width: 400px; width: 90%;
  text-align: center; position: relative; box-shadow: 0 24px 60px -12px rgba(0,0,0,.35);
  transform: translateY(20px); transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.notif-overlay.show .notif-popup { transform: translateY(0); }
.notif-close {
  position: absolute; top: 12px; right: 14px; font-size: 24px; color: #94a3b8;
  cursor: pointer; background: none; border: none; line-height: 1; transition: color .2s;
}
.notif-close:hover { color: var(--brand); }
.notif-icon { margin: 0 auto 12px; width: 56px; height: 56px; border-radius: 50%; background: #fef3c7; color: #f59e0b; display: grid; place-items: center; }
.notif-text { font-size: 15px; color: #334155; line-height: 1.5; margin-bottom: 18px; }
.notif-btn {
  display: inline-block; padding: 12px 36px; border-radius: 999px; border: none;
  background: var(--brand); color: #fff; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: .25s; letter-spacing: .02em;
}
.notif-btn:hover { background: var(--brand-2); transform: translateY(-2px); box-shadow: 0 8px 20px -6px rgba(229,9,20,.4); }

/* ===================== RESPONSIVO ===================== */
@media (max-width: 1120px) {
  .pub-wrap.mini { display: none; }
  .layout { grid-template-columns: 1fr; }
  .rail { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: start; }
}

@media (max-width: 860px) {
  .search { order: 3; width: 100%; margin-left: 0; }
  .search input { width: 100%; flex: 1; }
  .search { padding-right: 6px; }
  .mast { flex-wrap: wrap; row-gap: 14px; padding-block: 14px; }
  .featured-grid { grid-template-columns: 1fr; }
  .card.featured-main .thumb { min-height: 240px; }
  .fgrid { grid-template-columns: 1fr 1fr; gap: 26px; }
}

@media (max-width: 560px) {
  .tb-follow { display: none; }
  .ticker-label { padding: 10px 12px; font-size: 10.5px; }
  .cards-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .cards-grid .excerpt { display: none; }
  .rail { grid-template-columns: 1fr; }
  .ad-tall { height: 420px; }
  .newsletter { flex-direction: column; align-items: stretch; text-align: center; }
  .newsletter input { width: 100%; min-width: 0; }
  .newsletter form { flex-direction: column; }
  .fgrid { grid-template-columns: 1fr; }
  .wapp-float { right: 14px; bottom: 76px; }
  #toTop { right: 14px; bottom: 16px; }
  .radio-float { left: 14px; bottom: 70px; padding: 7px 13px 7px 8px; gap: 8px; }
  .rf-icon { width: 32px; height: 32px; }
  .rf-text strong { font-size: 10.5px; }
  .rf-text small { font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; scroll-behavior: auto !important; }
}
