:root{
  --brand:#2f3294;         /* azul */
  --brand2:#1f6feb;        /* azul claro */
  --text:#111;
  --muted:#6b7280;
  --bg:#fff;
  --border:#e5e7eb;
  --card:#fff;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--bg);
}
a{color:inherit;text-decoration:none}
a:hover{opacity:.9}
.container{
  width:min(1200px, 92vw);
  margin:0 auto;
}

.topbar{
  background:var(--brand);
  color:#fff;
  font-size:14px;
}
.topbar .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
}
.topbar .links{display:flex;gap:14px;flex-wrap:wrap}
.topbar .social{display:flex;gap:12px;align-items:center}

.header{
  padding:18px 0 8px;
  border-bottom:1px solid var(--border);
}
.header .row{
  display:grid;
  grid-template-columns: 260px 1fr 280px;
  gap:18px;
  align-items:center;
}
.logo{
  font-size:48px;
  font-weight:800;
  letter-spacing:-1px;
}
.logo span{color:var(--brand)}
.search{
  display:flex;
  align-items:center;
  border:1px solid var(--border);
  border-radius:8px;
  padding:10px 12px;
  gap:10px;
}
.search input{
  width:100%;
  border:0;
  outline:0;
  font-size:14px;
}
.metahead{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
  text-align:right;
}
.metahead .date{font-size:14px;color:var(--muted)}
.weather{
  border-left:1px solid var(--border);
  padding-left:14px;
}
.weather .temp{font-weight:800;color:var(--brand);font-size:20px}
.weather .city{font-size:12px;color:var(--muted)}

.navbar{
  border-bottom:1px solid var(--border);
}
.navbar .row{
  display:flex;
  align-items:center;
  gap:18px;
  padding:12px 0;
  flex-wrap:wrap;
}
.navbar .menu-btn{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
}
.navbar ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.navbar li a{
  font-weight:700;
  font-size:14px;
  text-transform:uppercase;
  color:#111;
}
.navbar li a:hover{color:var(--brand)}

.ad-970{
  margin:20px 0 10px;
  border:1px dashed var(--border);
  border-radius:10px;
  height:150px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  color:#b91c1c;
  background: #fff5f5;
}
.ad-300{
  border:1px dashed var(--border);
  border-radius:10px;
  height:300px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  color:#b91c1c;
  background:#fff5f5;
  margin-bottom:16px;
}

.section-title{
  margin:34px 0 16px;
  display:flex;
  align-items:flex-end;
  gap:12px;
}
.section-title h2{
  margin:0;
  font-size:44px;
  font-weight:900;
  color:var(--brand);
  text-transform:uppercase;
  line-height:1;
}
.section-title .line{
  height:6px;
  background:var(--brand);
  flex:1;
  border-radius:999px;
  opacity:.25;
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 360px;
  gap:22px;
}
.grid-3{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:18px;
}
.grid-4{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap:18px;
}
@media (max-width: 1020px){
  .header .row{grid-template-columns: 1fr; text-align:left}
  .metahead{justify-content:flex-start}
  .grid-2{grid-template-columns:1fr}
  .grid-4{grid-template-columns:1fr 1fr}
}
@media (max-width: 640px){
  .grid-3{grid-template-columns:1fr}
  .grid-4{grid-template-columns:1fr}
  .logo{font-size:36px}
}

.card{
  background:var(--card);
}
.card .thumb{
  width:100%;
  height:180px;
  border-radius:14px;
  overflow:hidden;
  background:#f3f4f6;
}
.card .thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.card .meta{
  margin-top:10px;
  font-size:12px;
  color:var(--brand);
  font-weight:800;
  text-transform:uppercase;
}
.card h3{
  margin:8px 0 0;
  font-size:20px;
  line-height:1.2;
}
.card.small .thumb{height:120px}
.card.small h3{font-size:16px}

.hero{
  margin-top:18px;
  padding:18px 0;
}
.hero .tag{
  display:inline-block;
  background:var(--brand);
  color:#fff;
  padding:6px 14px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.3px;
}
.hero h1{
  margin:14px 0 0;
  font-size:56px;
  line-height:1.05;
  font-weight:900;
}
.hero .sub{
  margin-top:10px;
  color:var(--muted);
  font-size:14px;
}

.sidebar .box{
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
  margin-bottom:16px;
}
.sidebar .box h4{
  margin:0 0 10px;
  font-size:18px;
  color:var(--brand);
  text-transform:uppercase;
  font-weight:900;
}
.list{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.list-item{
  display:grid;
  grid-template-columns: 86px 1fr;
  gap:10px;
  align-items:center;
}
.list-item img{
  width:86px;
  height:60px;
  object-fit:cover;
  border-radius:10px;
}
.list-item .kicker{
  font-size:12px;
  color:var(--brand);
  font-weight:900;
  text-transform:uppercase;
}
.list-item .title{
  font-size:14px;
  font-weight:800;
  line-height:1.2;
}

.footer{
  margin-top:40px;
  background:var(--brand);
  color:#fff;
}
.footer .links{
  display:flex;
  gap:20px;
  justify-content:center;
  padding:18px 0;
  font-weight:700;
}
.footer .copy{
  background:#1e40af;
  text-align:center;
  padding:14px 0;
  font-size:13px;
  opacity:.95;
}
