
:root{
  --red:#c4170c;
  --red-dark:#a10f08;
  --red-soft:#fff1f0;
  --text:#101114;
  --muted:#667085;
  --line:#e4e7ec;
  --bg:#f6f7f9;
  --card:#fff;
  --footer:#15191f;
  --shadow:0 10px 28px rgba(16,24,40,.08);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Arial, Helvetica, sans-serif;
  -webkit-font-smoothing:antialiased;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.container{width:min(1180px, calc(100% - 32px));margin:auto}
/* HEADER V2 FIX */
.brand-inner-v2{
  min-height:78px;
  display:grid;
  grid-template-columns:auto auto minmax(280px, 560px) auto;
  align-items:center;
  gap:22px;
}

.menu-toggle-v2{
  display:flex;
  align-items:center;
  gap:8px;
  background:transparent;
  border:0;
  color:#fff;
  cursor:pointer;
  text-transform:uppercase;
  font-size:13px;
  white-space:nowrap;
  padding:0;
}

.menu-toggle-v2 span{
  display:block;
  width:18px;
  height:2px;
  background:#fff;
  border-radius:999px;
  margin:3px 0;
}

.menu-toggle-v2 b{
  font-weight:600;
}

.logo-v2{
  color:#fff;
  font-size:42px;
  line-height:1;
  letter-spacing:-2.5px;
  white-space:nowrap;
}

.logo-v2 strong{
  font-weight:900;
}

.logo-v2 span{
  font-weight:300;
}

.search-form-v2{
  width:100%;
  display:flex;
  background:#fff;
  border-radius:6px;
  overflow:hidden;
  min-width:0;
}

.search-form-v2 input{
  flex:1;
  min-width:0;
  border:0;
  outline:0;
  padding:14px 16px;
  font-size:15px;
}

.search-form-v2 button{
  border:0;
  background:#d71913;
  color:#fff;
  padding:0 22px;
  font-weight:800;
  text-transform:uppercase;
  cursor:pointer;
}

.header-actions-v2{
  display:flex;
  align-items:center;
  gap:18px;
  white-space:nowrap;
  font-size:14px;
  font-weight:700;
}

.header-actions-v2 a{
  color:#fff;
}

.nav-bar-v2{
  background:#a10f08;
}

.nav-inner-v2{
  min-height:42px;
  display:flex;
  align-items:center;
  overflow-x:auto;
  scrollbar-width:none;
}

.nav-inner-v2::-webkit-scrollbar{
  display:none;
}

.nav-inner-v2 a{
  color:#fff;
  min-height:42px;
  display:flex;
  align-items:center;
  padding:0 15px;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  white-space:nowrap;
  border-bottom:3px solid transparent;
}

.nav-inner-v2 a:hover,
.nav-inner-v2 a.active{
  background:rgba(255,255,255,.1);
  border-bottom-color:#fff;
}

.breaking-inner-v2{
  min-height:48px;
  display:grid;
  grid-template-columns:auto minmax(0, 1fr) auto;
  align-items:center;
  gap:12px;
}

.breaking-inner-v2 span{
  background:#c4170c;
  color:#fff;
  border-radius:4px;
  padding:8px 12px;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.breaking-title{
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  color:#c4170c;
  font-weight:800;
}

.all-news-link{
  color:#c4170c;
  font-size:13px;
  font-weight:800;
  white-space:nowrap;
}

/* TABLET */
@media(max-width:1024px){
  .brand-inner-v2{
    grid-template-columns:auto auto minmax(220px, 1fr);
  }

  .header-actions-v2{
    display:none;
  }
}

/* MOBILE */
@media(max-width:720px){
  .edition-line{
    display:none;
  }

  .brand-inner-v2{
    min-height:auto;
    padding:14px 0;
    grid-template-columns:auto 1fr auto;
    gap:12px;
  }

  .menu-toggle-v2 b{
    display:none;
  }

  .logo-v2{
    justify-self:center;
    font-size:32px;
    letter-spacing:-1.7px;
  }

  .search-form-v2{
    grid-column:1 / -1;
    order:3;
    border-radius:8px;
  }

  .search-form-v2 input{
    padding:12px 14px;
  }

  .search-form-v2 button{
    padding:0 16px;
    font-size:12px;
  }

  .nav-bar-v2{
    display:none;
  }

  .nav-bar-v2.open{
    display:block;
  }

  .nav-inner-v2{
    display:grid;
    gap:4px;
    padding:8px 0;
  }

  .nav-inner-v2 a{
    min-height:auto;
    padding:12px 10px;
    border-bottom:0;
    border-radius:6px;
  }

  .breaking-inner-v2{
    grid-template-columns:auto minmax(0,1fr);
    padding:9px 0;
  }

  .breaking-title{
    font-size:14px;
  }

  .breaking-inner-v2 .all-news-link{
    display:none;
  }
}
.edition-line{height:30px;background:#fff;border-bottom:1px solid var(--line);font-size:12px;color:var(--muted)}
.edition-inner{height:30px;display:flex;align-items:center;justify-content:space-between}
.edition-inner strong{color:var(--red)}

.brand-bar{background:linear-gradient(90deg,#b90f08,#df1710);color:#fff}
.brand-inner{min-height:78px;display:flex;align-items:center;gap:24px}
.menu-toggle{display:flex;align-items:center;gap:8px;background:transparent;border:0;color:#fff;text-transform:uppercase;font-size:13px;cursor:pointer}
.menu-toggle span{display:block;width:18px;height:2px;background:#fff;border-radius:9px;margin:3px 0}
.menu-toggle b{font-weight:500}
.logo{font-size:42px;letter-spacing:-2.8px;line-height:1;color:#fff;white-space:nowrap}
.logo strong{font-weight:900}
.logo span{font-weight:300}
.search-form{display:flex;flex:1;max-width:560px;margin-left:auto;background:#fff;border-radius:4px;overflow:hidden}
.search-form input{flex:1;border:0;outline:0;padding:15px 18px;font-size:15px;min-width:0}
.search-form button{border:0;background:#d71913;color:#fff;padding:0 24px;font-weight:800;text-transform:uppercase;cursor:pointer}
.header-actions{margin-left:auto;display:flex;gap:24px;font-weight:700;font-size:14px}

.nav-bar{background:var(--red-dark);color:#fff}
.nav-inner{height:42px;display:flex;align-items:center;gap:0;overflow:auto;scrollbar-width:none}
.nav-inner::-webkit-scrollbar{display:none}
.nav-inner a{height:42px;display:flex;align-items:center;padding:0 17px;text-transform:uppercase;font-size:13px;font-weight:800;white-space:nowrap;border-bottom:3px solid transparent}
.nav-inner a:hover,.nav-inner a.active{background:rgba(255,255,255,.08);border-bottom-color:#fff}

.breaking-bar{background:#fff;border-bottom:1px solid var(--line)}
.breaking-inner{min-height:48px;display:flex;align-items:center;gap:12px}
.breaking-inner span{background:var(--red);color:#fff;text-transform:uppercase;font-weight:900;font-size:13px;padding:9px 14px;border-radius:2px}
.breaking-inner a:not(.all-news-link){font-size:16px}
.all-news-link{margin-left:auto;color:var(--red);font-size:13px;font-weight:700}

.page{padding:26px 0 54px}
.hero-grid{display:grid;grid-template-columns:minmax(0,2.1fr) 1fr;gap:28px}
.hero-card{height:430px;border-radius:8px;overflow:hidden;box-shadow:var(--shadow);background:#111}
.hero-card a{height:100%;display:block;position:relative}
.hero-card img{width:100%;object-fit:cover}
.hero-overlay{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:flex-end;padding:34px;background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.78));color:#fff}
.hero-overlay span,.news-item span,.highlight-card span,.quick-card span,.editor-item span,.article-category{color:var(--red);text-transform:uppercase;font-size:12px;font-weight:900}
.hero-overlay span{background:var(--red);color:#fff;width:max-content;padding:8px 10px;border-radius:3px}
.hero-overlay h1{font-size:40px;line-height:1.06;margin:14px 0 10px;max-width:760px;letter-spacing:-.8px}
.hero-overlay p{font-size:17px;line-height:1.45;margin:0 0 14px;max-width:760px}
.hero-overlay small{color:#fff}

.highlights h2,.section-title h2{margin:0;font-size:22px;text-transform:uppercase}
.highlights h2:after,.section-title h2:after{content:"";display:block;width:64px;height:3px;background:var(--red);margin-top:8px}
.highlight-card{background:#fff;border-radius:8px;box-shadow:var(--shadow);overflow:hidden;margin-top:18px}
.highlight-card a{display:grid;grid-template-columns:120px 1fr;gap:14px;padding:0}
.highlight-card img{width:120px;height:170px;object-fit:cover}
.highlight-card div{padding:16px 16px 16px 0}
.highlight-card h3{font-size:18px;line-height:1.18;margin:7px 0}
.highlight-card p{font-size:14px;color:var(--muted);line-height:1.45;margin:0 0 14px}
.highlight-card small,.news-item small,.quick-card small,.editor-item small{color:var(--muted);font-size:12px}

.quick-grid{display:grid;grid-template-columns:repeat(4,1fr);margin:24px 0 34px;background:#fff;border:1px solid var(--line);border-radius:8px;box-shadow:var(--shadow);overflow:hidden}
.quick-card{border-right:1px solid var(--line)}
.quick-card:last-child{border-right:0}
.quick-card a{display:flex;gap:18px;padding:22px;min-height:112px}
.quick-icon{width:42px;height:42px;border:2px solid #111;border-radius:50%;display:grid;place-items:center;font-weight:900;flex:0 0 auto}
.quick-card strong{display:block;margin:6px 0 12px;font-size:16px;line-height:1.25}

.content-grid{display:grid;grid-template-columns:minmax(0,1fr) 330px;gap:34px;align-items:start}
.section-title{display:flex;align-items:flex-end;justify-content:space-between;border-bottom:1px solid var(--line);padding-bottom:10px;margin-bottom:18px}
.section-title a{color:var(--red);font-weight:700;font-size:13px}
.news-list{display:grid;gap:0}
.news-item{border-bottom:1px solid var(--line);padding:16px 0}
.news-item a{display:grid;grid-template-columns:250px 1fr;gap:26px;align-items:center}
.news-item img{width:250px;object-fit:cover;border-radius:6px;background:#ddd}
.news-item h3{font-size:21px;line-height:1.22;margin:6px 0 8px}
.news-item p{font-size:15px;line-height:1.45;color:#475467;margin:0 0 10px}
.load-more{margin:22px auto 0;display:block;border:1px solid var(--line);background:#fff;border-radius:6px;padding:12px 20px;text-transform:uppercase;font-size:13px;cursor:pointer}

.sidebar{display:grid;gap:22px;position:sticky;top:16px}
.side-box{background:#fff;border:1px solid var(--line);border-radius:8px;box-shadow:var(--shadow);padding:22px}
.side-box h3{font-size:20px;text-transform:uppercase;margin:0 0 18px}
.ranking-box ol{margin:0;padding-left:0;list-style:none;counter-reset:item}
.ranking-box li{counter-increment:item;display:grid;grid-template-columns:30px 1fr;gap:8px;margin-bottom:18px;font-weight:800;line-height:1.35}
.ranking-box li:before{content:counter(item);color:var(--red);font-size:22px;font-weight:900}
.newsletter{background:var(--red-soft);border-color:#ffd0cc}
.newsletter h3{color:var(--red)}
.newsletter p{color:var(--muted);line-height:1.45}
.newsletter input{width:100%;padding:15px;border:1px solid var(--line);border-radius:5px;margin:8px 0 12px}
.newsletter button{width:100%;border:0;background:var(--red);color:#fff;border-radius:5px;padding:15px;text-transform:uppercase;font-weight:900}
.editor-item{display:grid;grid-template-columns:72px 1fr;gap:12px;border-top:1px solid var(--line);padding:14px 0}
.editor-item:first-of-type{border-top:0}
.editor-item img{width:72px;height:58px;object-fit:cover;border-radius:5px}
.editor-item strong{font-size:14px;line-height:1.25;display:block;margin:3px 0}

.category-header{background:#fff;border-radius:8px;box-shadow:var(--shadow);padding:32px;margin-bottom:24px;border-left:6px solid var(--red)}
.category-header span{color:var(--red);font-size:12px;font-weight:900;text-transform:uppercase}
.category-header h1{font-size:42px;line-height:1;margin:8px 0;color:var(--red)}
.category-header p{font-size:18px;color:var(--muted);line-height:1.5;margin:0}

.article-layout{display:grid;grid-template-columns:minmax(0,780px) 330px;gap:34px;align-items:start}
.article-main{background:#fff;border-radius:8px;box-shadow:var(--shadow);padding:38px}
.article-main h1{font-size:48px;line-height:1.04;color:var(--red);margin:10px 0 12px;letter-spacing:-1px}
.article-lead{font-size:22px;line-height:1.45;color:#475467;margin:0 0 18px}
.article-meta{border-top:1px solid var(--line);border-bottom:1px solid var(--line);padding:14px 0;margin-bottom:24px;display:grid;gap:4px;color:var(--muted);font-size:14px}
.article-meta strong{color:var(--text)}
.article-image{width:100%;object-fit:cover;border-radius:8px;margin-bottom:28px}
.article-content p{font-size:19px;line-height:1.78;margin:0 0 22px}
.article-content h2{font-size:28px;margin:30px 0 12px}
.article-content li{font-size:18px;line-height:1.7;margin-bottom:8px}
.article-content blockquote{margin:26px 0;padding:18px 22px;border-left:5px solid var(--red);background:var(--red-soft);font-size:20px;line-height:1.5}
.tags{display:flex;flex-wrap:wrap;gap:8px;border-top:1px solid var(--line);padding-top:18px;margin-top:24px}
.tags span{background:#f1f3f5;border-radius:999px;padding:8px 12px;color:#475467;font-size:13px}

.site-footer{background:linear-gradient(135deg,#111820,#202933);color:#fff;padding:42px 0 20px}
.footer-grid{display:grid;grid-template-columns:1.2fr 1fr 1fr 1fr;gap:34px}
.footer-logo{font-size:34px;color:#fff;letter-spacing:-2px}
.footer-logo strong{font-weight:900}.footer-logo span{font-weight:300}
.site-footer p,.site-footer li{color:#cbd5e1;line-height:1.55}
.site-footer ul{list-style:none;padding:0;margin:0}
.socials{display:flex;gap:12px;margin-top:18px}
.socials span{width:28px;height:28px;border-radius:50%;background:rgba(255,255,255,.12);display:grid;place-items:center}
.copyright{border-top:1px solid rgba(255,255,255,.15);margin-top:30px;padding-top:18px;text-align:center;color:#cbd5e1;font-size:13px}

@media(max-width:1000px){
  .brand-inner{gap:14px}
  .header-actions{display:none}
  .hero-grid,.content-grid,.article-layout{grid-template-columns:1fr}
  .sidebar{position:static}
  .quick-grid{grid-template-columns:repeat(2,1fr)}
  .quick-card:nth-child(2){border-right:0}
  .quick-card:nth-child(1),.quick-card:nth-child(2){border-bottom:1px solid var(--line)}
}

@media(max-width:760px){
  .container{width:min(100% - 22px, 1180px)}
  .edition-line{display:none}
  .brand-inner{min-height:auto;padding:14px 0;display:grid;grid-template-columns:auto 1fr auto;gap:12px}
  .menu-toggle b{display:none}
  .logo{font-size:32px;justify-self:center}
  .search-form{grid-column:1 / -1;max-width:none;width:100%;order:3}
  .search-form input{padding:12px}
  .search-form button{padding:0 16px}
  .nav-bar{display:none}
  .nav-bar.open{display:block}
  .nav-inner{height:auto;display:grid;padding:8px 0}
  .nav-inner a{height:auto;padding:12px 10px;border-bottom:0;border-radius:4px}
  .breaking-inner{align-items:flex-start;padding:10px 0;flex-wrap:wrap}
  .all-news-link{margin-left:0;width:100%}
  .page{padding-top:18px}
  .hero-card{height:390px}
  .hero-overlay{padding:22px}
  .hero-overlay h1{font-size:30px}
  .hero-overlay p{font-size:15px}
  .highlight-card a{grid-template-columns:110px 1fr}
  .highlight-card img{width:110px;height:140px}
  .quick-grid{display:grid;grid-template-columns:1fr;border-radius:8px}
  .quick-card{border-right:0;border-bottom:1px solid var(--line)}
  .quick-card:last-child{border-bottom:0}
  .news-item a{grid-template-columns:116px 1fr;gap:14px}
  .news-item img{width:116px;height:92px}
  .news-item h3{font-size:17px;margin:4px 0}
  .news-item p{display:none}
  .section-title h2{font-size:20px}
  .article-main{padding:22px}
  .article-main h1{font-size:34px}
  .article-lead{font-size:18px}
  .article-image{height:auto;aspect-ratio:16/10}
  .footer-grid{grid-template-columns:1fr}
}

/* HEADER FINAL FIX */
@media (min-width: 721px){
  .menu-toggle-v2{
    display:none !important;
  }

  .brand-inner-v2{
    grid-template-columns:auto minmax(360px, 560px) auto !important;
    justify-content:center;
  }

  .logo-v2{
    justify-self:start;
  }
}

.brand-bar{
  overflow:hidden;
}

.search-form-v2{
  max-width:560px;
}

@media (max-width:720px){
  .brand-inner-v2{
    grid-template-columns:44px 1fr 44px !important;
  }

  .menu-toggle-v2{
    width:44px;
    height:44px;
    display:flex !important;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    gap:4px;
  }

  .menu-toggle-v2 span{
    margin:0;
  }

  .logo-v2{
    text-align:center;
  }
}

/* AJUSTE FINAL DO ALINHAMENTO DO HEADER */
@media (min-width: 1025px){
  .brand-inner-v2{
    max-width:1180px;
    margin:0 auto;
    grid-template-columns:220px 560px 160px !important;
    justify-content:start !important;
  }

  .logo-v2{
    justify-self:start;
    text-align:left;
  }

  .search-form-v2{
    justify-self:start;
    width:560px;
  }
}

/* IMAGENS SEM CORTAR ROSTOS */
.article-image,
.news-item img,
.editor-item img,
.highlight-card img{
  object-fit: contain !important;
  background:#f3f4f6;
}

/* imagem principal da notícia */
.article-image{
  width:100%;
  height:auto !important;
  max-height:none !important;
  aspect-ratio:auto !important;
}

/* imagens pequenas sem distorcer */
.news-item img{
  height:135px !important;
}

.editor-item img{
  height:58px !important;
}

.highlight-card img{
  height:170px !important;
}

/* mobile */
@media(max-width:760px){
  .news-item img{
    width:116px !important;
    height:92px !important;
  }

  .editor-item img{
    width:72px !important;
    height:58px !important;
  }
}