  :root{
    --navy:#0a1f44;
    --navy-2:#0d2452;
    --blue:#2b7fff;
    --blue-2:#1d6fe0;
    --red:#e1262d;
    --ink:#16202e;
    --muted:#6b7686;
    --line:#e6e9ef;
    --bg:#ffffff;
    --bg-soft:#f5f7fa;
    --maxw:1480px;
  }
  *{box-sizing:border-box;margin:0;padding:0}
  html{overflow-x:hidden;width:100%}
  body{
    font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,sans-serif;
    color:var(--ink);
    background:var(--bg);
    -webkit-font-smoothing:antialiased;
    font-size:15px;
    overflow-x:hidden;
    width:100%;
  }
  a{color:inherit;text-decoration:none}
  img{display:block;max-width:100%}
  .wrap{max-width:var(--maxw);margin:0 auto;padding:0 22px}
  .serif{font-family:'Playfair Display',Georgia,serif}

  /* ============ BLOCO 1 — TOPBAR ============ */
  .topbar{background:var(--navy);color:#fff}
  .topbar .wrap{display:flex;align-items:center;justify-content:space-between;height:64px;gap:18px}
  .tb-left,.tb-right{display:flex;align-items:center;gap:24px;flex:1}
  .tb-right{justify-content:flex-end}
  .tb-item{display:flex;align-items:center;gap:8px;font-size:13px;font-weight:600;letter-spacing:.02em;color:#dfe6f2;white-space:nowrap;cursor:pointer}
  .tb-item svg{width:17px;height:17px;flex:none}
  .tb-item.menu{font-weight:700;color:#fff;letter-spacing:.06em}
  .tb-divider{width:1px;height:22px;background:rgba(255,255,255,.16)}
  .tb-weather{display:flex;align-items:center;gap:7px}
  .tb-weather .temp{font-weight:700;color:#fff}
  .brand{font-size:34px;font-weight:800;letter-spacing:.05em;line-height:1;white-space:nowrap;flex:none}
  .brand .br{color:#fff}
  .brand .es{color:var(--blue)}
  .tb-live{color:#fff}
  .tb-live .dot{width:9px;height:9px;border-radius:50%;background:var(--red);animation:pulse 1.8s infinite}
  @keyframes pulse{0%{box-shadow:0 0 0 0 rgba(225,38,45,.55)}70%{box-shadow:0 0 0 7px rgba(225,38,45,0)}100%{box-shadow:0 0 0 0 rgba(225,38,45,0)}}
  .tb-enter .avatar{width:24px;height:24px;border-radius:50%;background:rgba(255,255,255,.14);display:grid;place-items:center}
  .tb-enter .avatar svg{width:14px;height:14px}

  /* ============ BLOCO 1b — NAVBAR (editorias) ============ */
  .navbar{background:var(--navy-2);border-top:1px solid rgba(255,255,255,.08)}
  .navbar .wrap{display:flex;align-items:center;gap:4px;height:46px;overflow:hidden}
  .navbar a{font-size:13.5px;font-weight:700;letter-spacing:.03em;color:#cdd9ec;padding:0 16px;height:46px;display:flex;align-items:center;white-space:nowrap;position:relative}
  .navbar a:hover{color:#fff}
  .navbar a.on{color:#fff}
  .navbar a.on::after{content:"";position:absolute;left:16px;right:16px;bottom:0;height:3px;background:var(--blue)}
  .navbar a.local{color:#fff}
  .navbar a.local svg{width:14px;height:14px;margin-right:5px}

  /* ============ BLOCO 2 — BREAKING + EM ALTA ============ */
  .breaking{border-bottom:1px solid var(--line)}
  .breaking .wrap{display:flex;align-items:center;gap:18px;height:50px}
  .bk-badge{background:var(--red);color:#fff;font-size:11px;font-weight:800;letter-spacing:.08em;padding:6px 11px;border-radius:3px;white-space:nowrap}
  .bk-text{font-weight:700;color:var(--ink);font-size:15px;flex:1;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
  .bk-text .ago{color:var(--red);font-weight:600;font-size:13px;margin-left:8px}
  .bk-text .ago::before{content:"›";margin-right:6px;color:var(--muted)}
  .bk-all{color:var(--blue-2);font-weight:700;font-size:12.5px;letter-spacing:.04em;white-space:nowrap;display:flex;align-items:center;gap:5px}

  .trending{background:var(--bg-soft);border-bottom:1px solid var(--line)}
  .trending .wrap{display:flex;align-items:center;gap:0;height:46px;font-size:13.5px;overflow:hidden}
  .tr-label{color:var(--red);font-weight:800;letter-spacing:.04em;margin-right:18px;white-space:nowrap}
  .tr-list{display:flex;align-items:center;gap:0;flex-wrap:wrap;overflow:hidden}
  .tr-list a{font-weight:600;color:#33445c;white-space:nowrap;padding:0 16px;position:relative}
  .tr-list a+a::before{content:"•";position:absolute;left:-2px;color:#c3ccda}
  .tr-list a:first-child{padding-left:0}
  .tr-list a:hover{color:var(--blue-2)}

  /* ============ BLOCO 2b — TV AO VIVO ============ */
  .tvlive{background:var(--navy);color:#fff;padding:24px 0}
  .tvlive .wrap{display:grid;grid-template-columns:1.7fr 1fr;gap:26px;align-items:stretch}
  .tv-player{position:relative;border-radius:8px;overflow:hidden;background:#000;aspect-ratio:16/9}
  .tv-player img{width:100%;height:100%;object-fit:cover;opacity:.7}
  .tv-player .ply{position:absolute;inset:0;margin:auto;width:70px;height:70px;border-radius:50%;background:rgba(225,38,45,.92);display:grid;place-items:center;cursor:pointer}
  .tv-player .ply svg{width:26px;height:26px;margin-left:4px}
  .tv-player .lbl{position:absolute;top:14px;left:14px;background:var(--red);color:#fff;font-size:11px;font-weight:800;letter-spacing:.06em;padding:6px 11px;border-radius:5px;display:flex;align-items:center;gap:6px}
  .tv-player .lbl .d{width:7px;height:7px;border-radius:50%;background:#fff;animation:pulse 1.8s infinite}
  .tv-info{display:flex;flex-direction:column;justify-content:center}

  /* Barra abaixo do player embutido: badge AO VIVO (pequeno) + contador ao lado */
  @keyframes tvLiveHalo{0%{box-shadow:0 0 0 0 rgba(255,255,255,.6)}70%{box-shadow:0 0 0 6px rgba(255,255,255,0)}100%{box-shadow:0 0 0 0 rgba(255,255,255,0)}}
  @keyframes tvLiveDotBlink{0%,100%{opacity:1}50%{opacity:.25}}
  .tv-live-bar{display:flex;flex-wrap:nowrap;align-items:center;gap:10px;margin-top:18px}
  .tv-live-badge{display:inline-flex;flex-wrap:nowrap;align-items:center;gap:6px;background:linear-gradient(135deg,#ff3b3f,#c8102e);box-shadow:0 2px 8px rgba(200,16,46,.4);padding:6px 12px;border-radius:6px;font-size:11px;font-weight:800;color:#fff;flex:none;line-height:1}
  .tv-live-dot{position:relative;width:7px;height:7px;border-radius:50%;background:#fff;box-shadow:0 0 0 0 rgba(255,255,255,.7);animation:tvLiveHalo 1.6s infinite,tvLiveDotBlink 1.6s infinite;flex:none;display:inline-block}
  .tv-live-txt{letter-spacing:.06em;white-space:nowrap}

  .tv-live-counter{display:inline-flex;flex-wrap:nowrap;align-items:center;gap:7px;background:var(--bg-soft);border:1px solid var(--line);border-radius:9999px;padding:6px 13px;font-size:12px;font-weight:700;color:var(--ink);flex:none;line-height:1}
  .tv-live-counter-dot{width:7px;height:7px;border-radius:50%;background:#e1262d;display:inline-block;flex:none;animation:tvLiveDotBlink 1.4s infinite}
  .tv-live-counter-lbl{color:var(--muted);font-weight:400;font-size:11px;white-space:nowrap}
  #counterDisplay{white-space:nowrap}

  @media(max-width:520px){
    .tv-live-bar{margin-top:14px;gap:8px}
    .tv-live-badge{padding:5px 10px;font-size:10px;gap:5px;border-radius:5px}
    .tv-live-dot{width:6px;height:6px}
    .tv-live-counter{padding:5px 10px;font-size:10px;gap:5px}
    .tv-live-counter-dot{width:6px;height:6px}
    .tv-live-counter-lbl{font-size:9px}
  }
  .tv-info .k{font-size:12px;font-weight:800;letter-spacing:.1em;color:var(--blue);margin-bottom:12px}
  .tv-info h2{font-family:'Playfair Display',Georgia,serif;font-size:30px;font-weight:800;line-height:1.12;margin-bottom:14px}
  .tv-info p{font-size:14.5px;color:#c4cfe0;line-height:1.55;margin-bottom:20px}
  .tv-info .schedule{display:flex;flex-direction:column;gap:10px}
  .tv-prog{display:flex;align-items:center;gap:12px;font-size:13.5px;color:#dbe2ee}
  .tv-prog .hh{font-weight:800;color:#fff;font-variant-numeric:tabular-nums;min-width:46px}
  .tv-prog.now .hh{color:var(--red)}

  /* ============ BLOCO 3 — GRID PRINCIPAL ============ */
  .main{padding:26px 0 34px}
  .main-grid{display:grid;grid-template-columns:1fr 320px 280px;gap:30px}

  /* HERO (coluna esquerda) */
  .hero{position:relative;border-radius:6px;overflow:hidden;min-height:520px;background:#1a2738;color:#fff;display:flex;align-items:flex-end}
  .hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
  .hero::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(8,15,28,0) 30%,rgba(8,15,28,.55) 60%,rgba(8,15,28,.92) 100%)}
  .hero-body{position:relative;z-index:2;padding:38px 40px 30px}
  .badge-cat{display:inline-block;background:var(--blue);color:#fff;font-size:11px;font-weight:800;letter-spacing:.1em;padding:6px 12px;border-radius:3px;margin-bottom:18px}
  .hero h1{font-size:42px;font-weight:800;line-height:1.08;letter-spacing:-.01em;max-width:560px;margin-bottom:16px}
  .hero p{font-size:15.5px;color:#d9e0ec;max-width:520px;line-height:1.5;margin-bottom:20px}
  .byline{display:flex;align-items:center;gap:14px;font-size:12.5px;color:#cfd8e6}
  .byline .author{font-weight:700;letter-spacing:.04em;color:#fff}
  .byline .sep{opacity:.5}
  .dots{position:absolute;left:40px;bottom:22px;z-index:3;display:flex;gap:7px}
  .dots i{width:22px;height:4px;border-radius:3px;background:rgba(255,255,255,.4)}
  .dots i.on{width:26px;background:var(--blue)}

  /* COLUNA CENTRAL */
  .sec-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px}
  .sec-title{font-size:13px;font-weight:800;letter-spacing:.08em;color:var(--ink);display:flex;align-items:center;gap:8px}
  .sec-title .live-dot{width:9px;height:9px;border-radius:50%;background:var(--red);animation:pulse 1.8s infinite}
  .sec-more{font-size:11.5px;font-weight:700;letter-spacing:.04em;color:var(--blue-2)}

  .live-card{border-radius:6px;overflow:hidden;border:1px solid var(--line);margin-bottom:26px}
  .live-card .thumb{position:relative;aspect-ratio:16/9;background:#22304a}
  .live-card .thumb img{width:100%;height:100%;object-fit:cover}
  .live-tag{position:absolute;top:10px;left:10px;background:var(--red);color:#fff;font-size:10px;font-weight:800;letter-spacing:.06em;padding:4px 8px;border-radius:3px;display:flex;align-items:center;gap:5px}
  .live-tag .d{width:6px;height:6px;border-radius:50%;background:#fff}
  .live-card .lc-body{padding:13px 14px 15px}
  .live-card h3{font-size:16px;font-weight:800;line-height:1.25;margin-bottom:7px}
  .live-card p{font-size:13px;color:var(--muted);line-height:1.45;margin-bottom:12px}
  .lc-link{font-size:12px;font-weight:800;letter-spacing:.04em;color:var(--blue-2);display:flex;align-items:center;gap:5px}

  .hl-list{display:flex;flex-direction:column}
  .hl-item{display:flex;gap:14px;padding:13px 0;border-bottom:1px solid var(--line)}
  .hl-item:last-child{border-bottom:none}
  .hl-time{font-size:13px;font-weight:800;color:var(--blue-2);flex:none;font-variant-numeric:tabular-nums;padding-top:1px}
  .hl-item p{font-size:14px;font-weight:600;line-height:1.3;color:#22303f}
  .hl-foot{margin-top:8px;font-size:11.5px;font-weight:700;letter-spacing:.04em;color:var(--blue-2)}

  /* COLUNA DIREITA — MAIS LIDAS */
  .most-read .sec-title{margin-bottom:0}
  .mr-list{margin-top:6px}
  .mr-item{display:flex;gap:14px;padding:15px 0;border-bottom:1px solid var(--line)}
  .mr-num{font-family:'Playfair Display',serif;font-size:30px;font-weight:800;line-height:1;color:var(--blue);flex:none;width:26px}
  .mr-item p{font-size:14px;font-weight:600;line-height:1.32;color:#22303f}
  .mr-allbtn{margin-top:18px;width:100%;background:var(--bg-soft);border:1px solid var(--line);border-radius:5px;padding:11px;font-size:12px;font-weight:800;letter-spacing:.05em;color:var(--blue-2);cursor:pointer;display:flex;align-items:center;justify-content:center;gap:6px}

  /* ============ BLOCO 4 — FAIXA INFERIOR ============ */
  .lower{border-top:1px solid var(--line);background:#fff;padding:30px 0 46px}
  .lower-grid{display:grid;grid-template-columns:1fr 1fr 1fr 1fr;gap:34px}
  .col-head{display:flex;align-items:center;justify-content:space-between;border-bottom:2px solid var(--ink);padding-bottom:10px;margin-bottom:16px}
  .col-head h2{font-size:15px;font-weight:800;letter-spacing:.04em}
  .col-head .more{font-size:11px;font-weight:700;color:var(--muted);display:flex;align-items:center;gap:4px}

  /* Vídeos */
  .vid-main{border-radius:5px;overflow:hidden;position:relative;aspect-ratio:16/9;background:#22304a;margin-bottom:6px}
  .vid-main img{width:100%;height:100%;object-fit:cover}
  .play{position:absolute;inset:0;margin:auto;width:48px;height:48px;border-radius:50%;background:rgba(0,0,0,.55);display:grid;place-items:center}
  .play svg{width:18px;height:18px;margin-left:2px}
  .vid-dur{position:absolute;right:8px;bottom:8px;background:rgba(0,0,0,.8);color:#fff;font-size:11px;font-weight:700;padding:2px 6px;border-radius:3px}
  .vid-main-title{font-size:14.5px;font-weight:700;line-height:1.3;margin:10px 0 3px}
  .meta-time{font-size:12px;color:var(--muted)}
  .vid-small{display:flex;gap:11px;padding:12px 0;border-bottom:1px solid var(--line)}
  .vid-small:last-child{border-bottom:none}
  .vid-small .vt{position:relative;width:78px;aspect-ratio:16/10;border-radius:4px;overflow:hidden;flex:none;background:#22304a}
  .vid-small .vt img{width:100%;height:100%;object-fit:cover}
  .vid-small .vt .play{width:26px;height:26px}
  .vid-small .vt .play svg{width:10px;height:10px}
  .vid-small p{font-size:13px;font-weight:600;line-height:1.3}
  .vid-small .meta-time{font-size:11.5px;margin-top:3px}

  /* Economia */
  .eco-sub{font-size:11px;font-weight:800;letter-spacing:.1em;color:var(--muted);margin-bottom:10px}
  .eco-row{display:grid;grid-template-columns:1fr auto 54px;align-items:center;gap:8px;padding:11px 0;border-bottom:1px solid var(--line)}
  .eco-row .nm{font-size:12.5px;font-weight:700;color:#33445c}
  .eco-row .val{font-size:13.5px;font-weight:800;text-align:right}
  .eco-row .chg{font-size:12px;font-weight:800;text-align:right}
  .up{color:#0a8f3c}.down{color:var(--red)}
  .spark{width:54px;height:22px}
  .eco-btn{margin-top:16px;width:100%;background:var(--bg-soft);border:1px solid var(--line);border-radius:5px;padding:11px;font-size:11.5px;font-weight:800;letter-spacing:.04em;color:var(--blue-2);cursor:pointer;display:flex;align-items:center;justify-content:center;gap:6px}

  /* Opinião */
  .op-item{display:flex;gap:13px;padding:13px 0;border-bottom:1px solid var(--line)}
  .op-item:last-of-type{border-bottom:none}
  .op-item img{width:56px;height:56px;border-radius:8px;object-fit:cover;flex:none;background:#dfe4ec}
  .op-item .nm{font-size:14px;font-weight:700;color:var(--ink);margin-bottom:2px;line-height:1.3}
  .op-item .ph{font-size:12.5px;color:var(--muted);line-height:1.35}
  .op-btn{margin-top:16px;width:100%;background:var(--bg-soft);border:1px solid var(--line);border-radius:5px;padding:11px;font-size:11.5px;font-weight:800;letter-spacing:.04em;color:var(--blue-2);cursor:pointer;display:flex;align-items:center;justify-content:center;gap:6px}

  /* Últimas + Newsletter */
  .last-item{display:flex;gap:12px;padding:11px 0;border-bottom:1px solid var(--line)}
  .last-item .tm{font-size:12px;font-weight:800;color:var(--blue-2);flex:none;font-variant-numeric:tabular-nums;padding-top:1px}
  .last-item p{font-size:13.5px;font-weight:600;line-height:1.3;color:#22303f}
  .last-more{margin:14px 0 22px;font-size:11.5px;font-weight:800;letter-spacing:.04em;color:var(--blue-2);display:flex;align-items:center;gap:5px}
  .news-box{background:var(--navy);color:#fff;border-radius:6px;padding:20px}
  .news-box h3{font-size:14px;font-weight:800;letter-spacing:.06em;margin-bottom:8px}
  .news-box p{font-size:13px;color:#c4cfe0;line-height:1.4;margin-bottom:14px}
  .news-box input{width:100%;border:none;border-radius:5px;padding:11px 12px;font-size:13px;margin-bottom:10px;font-family:inherit}
  .news-box button{width:100%;background:var(--blue-2);color:#fff;border:none;border-radius:5px;padding:12px;font-size:12.5px;font-weight:800;letter-spacing:.06em;cursor:pointer}
  .news-box small{display:block;margin-top:11px;font-size:11px;color:#9fb0cc;line-height:1.4}
  .news-box small a{color:#cdd9ec;text-decoration:underline}

  /* ============ BLOCO 5 — ÚLTIMAS TRANSMISSÕES AO VIVO ============ */
  .lives{background:var(--bg-soft);border-top:1px solid var(--line);padding:28px 0 38px}
  .lives-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}
  .lives-title{display:flex;align-items:center;gap:12px;font-size:19px;font-weight:800;letter-spacing:.02em;color:var(--navy)}
  .lives-title .ic{width:34px;height:34px;border-radius:50%;background:var(--navy);display:grid;place-items:center;flex:none}
  .lives-title .ic svg{width:18px;height:18px}
  .lives-all{font-size:12.5px;font-weight:800;letter-spacing:.04em;color:var(--blue-2);display:flex;align-items:center;gap:6px;white-space:nowrap}
  .lives-grid{display:grid;grid-template-columns:repeat(4,1fr) 300px;gap:22px;align-items:start}
  .lives-grid--4{grid-template-columns:repeat(4,1fr)}

  .live-news{background:#fff;border:1px solid var(--line);border-radius:8px;overflow:hidden;display:flex;flex-direction:column;height:100%}
  .live-news .thumb{position:relative;aspect-ratio:16/10;background:#22304a}
  .live-news .thumb img{width:100%;height:100%;object-fit:cover}
  .live-news .tag{position:absolute;left:12px;bottom:12px;background:var(--red);color:#fff;font-size:12px;font-weight:800;letter-spacing:.04em;padding:6px 12px;border-radius:5px;display:flex;align-items:center;gap:7px}
  .live-news .tag .d{width:8px;height:8px;border-radius:50%;background:#fff;animation:pulse 1.8s infinite}
  .live-news .ln-body{padding:16px 16px 18px}
  .live-news .cat{font-size:11.5px;font-weight:800;letter-spacing:.08em;color:var(--blue-2);margin-bottom:9px}
  .live-news h3{font-family:'Playfair Display',Georgia,serif;font-size:21px;font-weight:800;line-height:1.18;color:var(--ink);margin-bottom:11px}
  .live-news p{font-size:14px;color:var(--muted);line-height:1.5}

  .lives-side{background:#fff;border:1px solid var(--line);border-radius:8px;padding:6px 18px 18px}
  .ls-item{display:flex;gap:14px;padding:16px 0;border-bottom:1px solid var(--line)}
  .ls-item .tm{font-size:13px;font-weight:800;color:var(--red);flex:none;font-variant-numeric:tabular-nums;padding-top:1px}
  .ls-item p{font-size:14.5px;font-weight:600;line-height:1.34;color:#22303f}
  .ls-btn{margin-top:18px;width:100%;background:var(--bg-soft);border:1px solid var(--line);border-radius:6px;padding:13px;font-size:12.5px;font-weight:800;letter-spacing:.05em;color:var(--blue-2);cursor:pointer;display:flex;align-items:center;justify-content:center;gap:7px}

  /* ============ BLOCO 6 — INVESTIGAÇÃO E ANÁLISE ============ */
  .invest{background:#fff;border-top:1px solid var(--line);padding:30px 0 40px}
  .invest-wrap{border:1px solid var(--line);border-radius:10px;padding:26px}
  .invest-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:22px}
  .invest-title{display:flex;align-items:center;gap:12px;font-size:19px;font-weight:800;letter-spacing:.02em;color:var(--navy)}
  .invest-title svg{width:24px;height:24px;color:var(--blue-2)}
  .invest-all{font-size:12.5px;font-weight:800;letter-spacing:.04em;color:var(--blue-2);display:flex;align-items:center;gap:6px;white-space:nowrap}
  .invest-grid{display:grid;grid-template-columns:1.15fr 1fr;gap:30px;align-items:stretch}

  /* hero esquerdo */
  .inv-hero{position:relative;border-radius:8px;overflow:hidden;min-height:520px;background:#0e1726;color:#fff;display:flex;align-items:flex-end}
  .inv-hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
  .inv-hero::after{content:"";position:absolute;inset:0;background:linear-gradient(100deg,rgba(8,14,24,.92) 18%,rgba(8,14,24,.55) 48%,rgba(8,14,24,.15) 80%)}
  .inv-hero-body{position:relative;z-index:2;padding:34px 38px 32px;max-width:560px}
  .inv-hero .badge-cat{margin-bottom:20px}
  .inv-hero h2{font-family:'Playfair Display',Georgia,serif;font-size:42px;font-weight:800;line-height:1.1;margin-bottom:18px}
  .inv-hero p{font-size:15.5px;color:#d9e0ec;line-height:1.55;max-width:430px;margin-bottom:26px}
  .inv-hero .byline{display:flex;flex-direction:column;gap:5px;font-size:13px;color:#cfd8e6}
  .inv-hero .byline .author{font-weight:700;letter-spacing:.03em;color:#fff}

  /* lista direita */
  .inv-list{display:flex;flex-direction:column;gap:0}
  .inv-item{display:grid;grid-template-columns:230px 1fr;gap:22px;padding:18px 0;border-bottom:1px solid var(--line)}
  .inv-item:first-child{padding-top:0}
  .inv-item:last-child{border-bottom:none;padding-bottom:0}
  .inv-item .thumb{border-radius:8px;overflow:hidden;aspect-ratio:16/10;background:#22304a}
  .inv-item .thumb img{width:100%;height:100%;object-fit:cover}
  .inv-item .cat{font-size:11.5px;font-weight:800;letter-spacing:.08em;color:var(--blue-2);margin-bottom:8px}
  .inv-item h3{font-family:'Playfair Display',Georgia,serif;font-size:22px;font-weight:800;line-height:1.16;color:var(--ink);margin-bottom:10px}
  .inv-item p{font-size:14px;color:#5b6577;line-height:1.5;margin-bottom:10px}
  .inv-item .tm{font-size:12.5px;color:var(--muted)}

  /* ============ BLOCO 7 — ESPECIAIS ============ */
  .specials{background:#fff;border-top:1px solid var(--line);padding:30px 0 42px}
  .specials-wrap{border:1px solid var(--line);border-radius:10px;padding:26px}
  .sp-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:24px}
  .sp-title{display:flex;align-items:center;gap:12px;font-size:19px;font-weight:800;letter-spacing:.03em;color:var(--navy)}
  .sp-title svg{width:24px;height:24px;color:var(--blue)}
  .sp-all{font-size:12.5px;font-weight:800;letter-spacing:.04em;color:var(--blue-2);display:flex;align-items:center;gap:6px;white-space:nowrap}
  .sp-grid{display:grid;grid-template-columns:1.05fr 1fr 260px;gap:34px;align-items:start}

  /* hero esquerdo */
  .sp-hero{position:relative;border-radius:8px;overflow:hidden;min-height:600px;background:#0e1f2a;color:#fff;display:flex;align-items:center}
  .sp-hero img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
  .sp-hero::after{content:"";position:absolute;inset:0;background:linear-gradient(115deg,rgba(8,20,30,.9) 25%,rgba(8,20,30,.5) 55%,rgba(8,20,30,.2) 90%)}
  .sp-hero-body{position:relative;z-index:2;padding:0 42px}
  .sp-hero .badge-cat{margin-bottom:22px}
  .sp-hero h2{font-family:'Playfair Display',Georgia,serif;font-size:44px;font-weight:800;line-height:1.08;margin-bottom:22px;max-width:480px}
  .sp-hero p{font-size:15.5px;color:#dbe2ee;line-height:1.6;max-width:470px;margin-bottom:30px}
  .sp-cta{display:inline-flex;align-items:center;gap:8px;background:#fff;color:var(--navy);font-size:13px;font-weight:800;letter-spacing:.06em;padding:14px 26px;border-radius:6px}

  /* lista numerada */
  .sp-list{display:flex;flex-direction:column}
  .sp-item{display:grid;grid-template-columns:64px 1fr;gap:10px;padding:18px 0;border-bottom:1px solid var(--line)}
  .sp-item:first-child{padding-top:0}
  .sp-item:last-child{border-bottom:none}
  .sp-num{font-family:'Playfair Display',Georgia,serif;font-size:38px;font-weight:800;line-height:1;color:var(--navy)}
  .sp-item h3{font-size:18px;font-weight:800;color:var(--ink);margin-bottom:8px}
  .sp-item p{font-size:14px;color:#5b6577;line-height:1.5;margin-bottom:10px}
  .sp-item .rt{font-size:12.5px;color:var(--blue-2);font-weight:600}

  /* coluna apoio */
  .sp-support{background:var(--bg-soft);border:1px solid var(--line);border-radius:10px;padding:22px 20px;text-align:center}
  .sp-support .lbl{font-size:12px;font-weight:800;letter-spacing:.12em;color:var(--muted);margin-bottom:20px}
  .sp-support .sponsor{height:74px;display:grid;place-items:center;border-bottom:1px solid var(--line)}
  .sp-support .sponsor:last-of-type{border-bottom:none}
  .sp-support .sponsor span{font-size:14px;font-weight:700;color:#8a93a3;letter-spacing:.04em}
  .sp-support .more{margin-top:18px;font-size:13px;font-weight:800;letter-spacing:.06em;color:var(--blue-2)}

  /* ============ BLOCO 8 — VÍDEOS EM DESTAQUE ============ */
  .vfeat{background:#fff;border-top:1px solid var(--line);padding:30px 0 44px}
  .vf-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:22px}
  .vf-title{display:flex;align-items:center;gap:13px;font-size:20px;font-weight:800;letter-spacing:.03em;color:var(--navy)}
  .vf-title .ic{width:36px;height:36px;border-radius:50%;background:var(--navy);display:grid;place-items:center;flex:none}
  .vf-title .ic svg{width:15px;height:15px;margin-left:2px}
  .vf-all{font-size:12.5px;font-weight:800;letter-spacing:.04em;color:var(--blue-2);display:flex;align-items:center;gap:6px;white-space:nowrap}
  .vf-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:24px}

  .vfeat-card .thumb{position:relative;border-radius:8px;overflow:hidden;aspect-ratio:16/10;background:#1a2738}
  .vfeat-card .thumb img{width:100%;height:100%;object-fit:cover}
  .vfeat-card .pbtn{position:absolute;inset:0;margin:auto;width:58px;height:58px;border:3px solid #fff;border-radius:12px;display:grid;place-items:center;background:rgba(0,0,0,.25)}
  .vfeat-card .pbtn svg{width:20px;height:20px;margin-left:3px}
  .vfeat-card .dur{position:absolute;left:12px;bottom:12px;background:rgba(0,0,0,.85);color:#fff;font-size:13px;font-weight:700;padding:4px 9px;border-radius:5px;font-variant-numeric:tabular-nums}
  .vfeat-card .cat{font-size:12px;font-weight:800;letter-spacing:.08em;color:var(--blue-2);margin:15px 0 9px}
  .vfeat-card h3{font-family:'Playfair Display',Georgia,serif;font-size:21px;font-weight:800;line-height:1.16;color:var(--ink);margin-bottom:11px}
  .vfeat-card p{font-size:14px;color:#5b6577;line-height:1.5}

  /* ============ BLOCO 9 — CLIMA / PAINEL ECONÔMICO / MAIS LIDAS ============ */
  .dash{background:#fff;border-top:1px solid var(--line);padding:30px 0 26px}
  .dash-grid{display:grid;grid-template-columns:1fr 1.25fr 1fr;gap:24px;align-items:start}
  .panel{border:1px solid var(--line);border-radius:12px;padding:24px 24px 24px;display:flex;flex-direction:column;height:100%}
  .panel-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:20px}
  .panel-title{display:flex;align-items:center;gap:11px;font-size:18px;font-weight:800;letter-spacing:.02em;color:var(--navy)}
  .panel-title svg{width:24px;height:24px;color:var(--blue)}
  .panel-more{font-size:12px;font-weight:800;letter-spacing:.04em;color:var(--blue-2);display:flex;align-items:center;gap:5px;white-space:nowrap}
  .panel-btn{margin-top:auto;width:100%;background:var(--bg-soft);border:1px solid var(--line);border-radius:7px;padding:14px;font-size:12.5px;font-weight:800;letter-spacing:.05em;color:var(--blue-2);cursor:pointer;display:flex;align-items:center;justify-content:center;gap:7px}

  /* clima */
  .wx-now{display:flex;align-items:center;gap:18px;padding-bottom:20px;border-bottom:1px solid var(--line)}
  .wx-ico{font-size:52px;line-height:1}
  .wx-temp{font-size:46px;font-weight:800;color:var(--ink);line-height:1}
  .wx-temp sup{font-size:22px;font-weight:700;vertical-align:super}
  .wx-now .desc{font-size:14px;color:#33445c;margin-top:6px}
  .wx-now .city{font-size:13px;color:var(--muted)}
  .wx-stats{margin-left:auto;display:flex;flex-direction:column;gap:9px;font-size:13.5px;color:#5b6577}
  .wx-stats b{color:var(--ink)}
  .wx-stats .r{color:var(--red);font-weight:700}
  .wx-stats .b{color:var(--blue-2);font-weight:700}
  .wx-days{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;padding:20px 0 6px;text-align:center}
  .wx-day .dn{font-size:12px;font-weight:800;color:var(--muted);letter-spacing:.04em}
  .wx-day .di{font-size:30px;margin:8px 0}
  .wx-day .hi{font-size:14px;font-weight:800;color:var(--red)}
  .wx-day .lo{font-size:14px;font-weight:800;color:var(--blue-2);margin-top:2px}

  /* painel econômico */
  .eco-tabs{display:flex;gap:24px;border-bottom:1px solid var(--line);margin-bottom:6px}
  .eco-tabs span{font-size:13px;font-weight:700;color:var(--muted);padding-bottom:11px;cursor:pointer;white-space:nowrap}
  .eco-tabs span.on{color:var(--blue-2);border-bottom:3px solid var(--blue-2)}
  .ind-row{display:grid;grid-template-columns:38px 1fr auto 110px;align-items:center;gap:14px;padding:15px 0;border-bottom:1px solid var(--line)}
  .ind-ico{width:38px;height:38px;border-radius:50%;background:var(--bg-soft);display:grid;place-items:center;color:#5b6577}
  .ind-ico svg{width:18px;height:18px}
  .ind-name{font-size:12px;font-weight:800;letter-spacing:.05em;color:var(--muted)}
  .ind-val{font-size:16px;font-weight:800;color:var(--ink);margin-top:2px}
  .ind-chg{font-size:14px;font-weight:800;text-align:right}
  .ind-spark{width:110px;height:34px}
  .ind-pair{display:grid;grid-template-columns:1fr 1fr;gap:14px;padding:16px 0 4px}
  .ind-pair .ip .ind-name{margin-bottom:4px}
  .ind-pair .ip .ind-val{font-size:18px}

  /* mais lidas (vermelho) */
  .topread .ti{display:grid;grid-template-columns:34px 1fr;gap:16px;padding:16px 0;border-bottom:1px solid var(--line);align-items:start}
  .topread .ti:first-child{padding-top:0}
  .topread .tn{font-family:'Playfair Display',Georgia,serif;font-size:30px;font-weight:800;line-height:1;color:var(--red)}
  .topread .ti p{font-size:15px;font-weight:600;line-height:1.34;color:#22303f}

  /* ============ BLOCO 10 — TÓPICOS EM ALTA ============ */
  .topics{background:#fff;border-top:1px solid var(--line);padding:6px 0 40px}
  .topics-wrap{border:1px solid var(--line);border-radius:12px;padding:22px 24px;display:flex;align-items:center;gap:22px}
  .topics-title{display:flex;align-items:center;gap:11px;font-size:18px;font-weight:800;color:var(--navy);white-space:nowrap}
  .topics-title svg{width:22px;height:22px;color:var(--blue)}
  .chips{display:flex;align-items:center;gap:12px;overflow:hidden;flex:1}
  .chip{border:1px solid var(--line);border-radius:30px;padding:10px 18px;font-size:13.5px;font-weight:600;color:#33445c;white-space:nowrap;cursor:pointer}
  .chip:hover{border-color:var(--blue);color:var(--blue-2)}
  .chips-arrow{width:34px;height:34px;border:1px solid var(--line);border-radius:50%;display:grid;place-items:center;color:var(--muted);flex:none;cursor:pointer}

  /* ============ BLOCO 11 — NEWSLETTER (faixa) ============ */
  .nl{padding:6px 0 36px}
  .nl-box{position:relative;overflow:hidden;background:var(--navy);color:#fff;border-radius:12px;padding:38px 44px;display:grid;grid-template-columns:1fr auto;gap:30px;align-items:center}
  .nl-tag{font-size:13px;font-weight:800;letter-spacing:.06em;color:#cdd9ec;margin-bottom:12px}
  .nl-tag .b2{color:var(--blue);font-family:'Playfair Display',Georgia,serif;font-weight:800}
  .nl-box h2{font-family:'Playfair Display',Georgia,serif;font-size:34px;font-weight:800;margin-bottom:12px}
  .nl-box p{font-size:15px;color:#c4cfe0;line-height:1.55;max-width:520px}
  .nl-form{display:flex;flex-direction:column;gap:14px;min-width:430px}
  .nl-input{display:flex;gap:0;background:#fff;border-radius:8px;overflow:hidden}
  .nl-input input{flex:1;border:none;padding:16px 18px;font-size:14px;font-family:inherit;outline:none}
  .nl-input button{background:var(--navy);color:#fff;border:2px solid #fff;border-radius:8px;margin:5px;padding:0 26px;font-size:13px;font-weight:800;letter-spacing:.05em;cursor:pointer;white-space:nowrap}
  .nl-consent{display:flex;align-items:center;gap:10px;font-size:13px;color:#b9c5da}
  .nl-consent input{width:16px;height:16px;flex:none}
  .nl-consent a{color:#cdd9ec;text-decoration:underline}
  .nl-env{font-size:120px;line-height:1;opacity:.18;padding-right:10px}

  /* ============ BLOCO 12 — FOOTER ============ */
  .foot{background:var(--navy);color:#9fb0cc;padding:46px 0 28px}
  .foot-grid{display:grid;grid-template-columns:1.3fr 1fr 1fr 1fr 1fr 1.1fr;gap:30px}
  .foot .brand{font-size:30px;margin-bottom:14px;display:inline-block}
  .foot-about{font-size:14px;color:#aab6cc;line-height:1.6;max-width:240px;margin-bottom:20px}
  .foot-social{display:flex;gap:14px}
  .foot-social a{width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.08);display:grid;place-items:center;color:#cdd9ec}
  .foot-social a:hover{background:var(--blue-2);color:#fff}
  .foot-social svg{width:18px;height:18px}
  .foot-col h4{font-size:13px;font-weight:800;letter-spacing:.08em;color:#fff;margin-bottom:16px}
  .foot-col a{display:block;font-size:14px;color:#aab6cc;padding:6px 0}
  .foot-col a:hover{color:#fff}
  .foot-paper{align-self:start}
  .foot-paper img{width:100%;border-radius:6px;transform:rotate(3deg);box-shadow:0 14px 34px rgba(0,0,0,.4)}
  .foot-bottom{border-top:1px solid rgba(255,255,255,.1);margin-top:34px;padding-top:22px;text-align:center;font-size:13px;color:#8c99b3}

  @media(max-width:1180px){
    .lives-grid,.lives-grid--4{grid-template-columns:repeat(2,1fr)!important}
    .lives-side{grid-column:1/-1;order:9}
    .vf-grid{grid-template-columns:repeat(3,1fr)}
  }
  @media(max-width:640px){
    .lives-grid,.lives-grid--4{grid-template-columns:1fr!important}
  }
  @media(max-width:980px){
    .invest-grid{grid-template-columns:1fr}
    .inv-hero{min-height:420px}
    .sp-grid{grid-template-columns:1fr 1fr}
    .sp-hero{grid-column:1/-1;min-height:380px}
    .sp-support{grid-column:1/-1}
    .sp-hero-body{padding:30px 32px}
    .dash-grid{grid-template-columns:1fr 1fr}
    .topread{grid-column:1/-1}
    .foot-grid{grid-template-columns:1fr 1fr 1fr}
    .foot-paper{display:none}
  }
  @media(max-width:1080px){
    .main-grid{grid-template-columns:1fr 300px}
    .most-read{grid-column:1/-1}
    .lower-grid{grid-template-columns:1fr 1fr}
  }
  @media(max-width:720px){
    /* Padding lateral consistente e menor no mobile (era 22px). */
    .wrap{padding:0 4px}
    /* min-width:0 só onde há texto que precisa quebrar em coluna (não na
       navbar/chips, que devem manter largura e rolar horizontalmente). */
    .main-grid,.lower-grid,.dash-grid,.invest-grid,.sp-grid,.lives-grid,
    .vf-grid,.foot-grid,.panel,.mr-item,.mr-item>*,.hl-item,.hl-item>*,
    .last-item,.last-item>*,.op-item,.op-item>*,.ti,.ti>*,.inv-item,.inv-item>*,
    .live-news,.vfeat-card,.sp-item,.sp-item>*,.wx-now,.wx-now>*{min-width:0}
    .invest-wrap{padding:16px}
    .inv-item{grid-template-columns:1fr;gap:12px}
    .inv-hero h2{font-size:30px}
    .inv-hero-body{padding:22px 18px 20px}
    .specials-wrap{padding:16px}
    .sp-head,.invest-head,.lives-head,.vf-head{flex-wrap:wrap;gap:8px}
    .sp-grid{grid-template-columns:1fr}
    .sp-hero h2{font-size:30px}
    .sp-hero-body{padding:22px 18px}
    .sp-item{grid-template-columns:48px 1fr}
    .sp-num{font-size:30px}
    .vf-grid{grid-template-columns:1fr}
    .vf-title{font-size:17px}
    .dash-grid{grid-template-columns:1fr}
    .panel{padding:16px;min-width:0;max-width:100%;overflow:hidden}
    .wx-now{flex-wrap:wrap;gap:10px;min-width:0}
    .wx-stats{margin-left:0;flex-direction:row;flex-wrap:wrap;gap:8px 14px;min-width:0}
    .wx-days{grid-template-columns:repeat(4,1fr);gap:4px}
    .wx-day{min-width:0}
    .eco-tabs{flex-wrap:wrap;gap:12px 16px;row-gap:8px}
    .ind-row{grid-template-columns:30px 1fr auto;gap:8px;padding:12px 0;min-width:0}
    .ind-row>div{min-width:0}
    .ind-spark{display:none}
    .ind-name{font-size:10.5px;overflow-wrap:break-word}
    .ind-val{font-size:14px;overflow-wrap:break-word}
    .ind-chg{font-size:12px}
    .ind-pair{grid-template-columns:1fr 1fr;gap:8px;min-width:0}
    .ind-pair .ip{min-width:0}
    .topread .ti{grid-template-columns:26px 1fr;gap:10px;min-width:0}
    .topread .ti p{overflow-wrap:break-word;word-break:break-word}
    .main-grid .most-read,.mr-item{min-width:0}
    .mr-item p{overflow-wrap:break-word;word-break:break-word}
    .nl-input{flex-direction:column;gap:10px;background:none;overflow:visible}
    .nl-input input{min-width:0;width:100%;background:#fff;border-radius:8px}
    .nl-input button{margin:0;width:100%;padding:15px 26px;border-radius:8px;font-size:14px}
    .nl-consent{align-items:flex-start;gap:8px;font-size:12.5px;flex-wrap:wrap}
    .nl-consent a{white-space:nowrap}
    .topics-wrap{flex-direction:column;align-items:stretch;gap:14px;padding:18px}
    .topics-title{width:100%}
    .chips{flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;scrollbar-width:none;gap:10px}
    .chips::-webkit-scrollbar{display:none}
    .chip{flex:none}
    .chips-arrow{display:none}
    .nl-box{grid-template-columns:1fr;padding:26px 22px}
    .nl-box h2{font-size:26px}
    .nl-form{min-width:0}
    .nl-env{display:none}
    .foot-grid{grid-template-columns:1fr}
    .navbar{position:relative}
    .navbar .wrap{overflow-x:auto;overflow-y:hidden;flex-wrap:nowrap;gap:0;-webkit-overflow-scrolling:touch;scrollbar-width:none}
    .navbar .wrap::-webkit-scrollbar{display:none}
    .navbar a{flex:none;padding:0 14px;font-size:13px}
    .navbar::after{content:"";position:absolute;top:0;right:0;bottom:0;width:28px;pointer-events:none;background:linear-gradient(90deg,rgba(13,36,82,0),var(--navy-2))}
    .tvlive .wrap{grid-template-columns:1fr}
    .tv-info h2{font-size:24px}
    .tb-left .tb-item:not(.menu),.tb-divider,.tb-hide-mobile{display:none}
    .tb-right{gap:0;flex:none}
    .topbar .wrap{height:56px;gap:8px}
    .brand{font-size:19px}
    .tb-live{font-size:11px;padding:5px 8px;gap:4px}
    .tb-live .dot{width:6px;height:6px}
    .breaking .wrap{height:auto;padding:12px 4px;flex-wrap:wrap;gap:10px}
    .bk-text{white-space:normal;flex:1 1 100%;order:3}
    .trending{display:none}
    .main-grid,.lower-grid{grid-template-columns:1fr}
    .hero{min-height:380px}
    .hero h1{font-size:28px}
    .hero-body{padding:22px 18px 20px}
    .lives-title{font-size:16px}
  }
