/* ARAPONGAS DIGITAL — HOME PORTAL */

:root{
  --bg:#f5f7fa;
  --card:#ffffff;
  --text:#101418;
  --muted:#66717d;
  --line:#e5e9ef;
  --link:#c4170c;
  --link-dark:#8f120a;
  --dark:#0f1419;
  --soft:#f0f3f7;
  --radius:18px;
  --shadow:0 10px 30px rgba(16,20,24,.06);
  --shadow-soft:0 14px 38px rgba(16,20,24,.07);
  --container:1280px;
  --font:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
a:hover{color:var(--link-dark)}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 18px;
}

.sep{opacity:.35}

/* novo topo */
.siteTopBar{
  background:linear-gradient(90deg, #0f4cc9 0%, #2563eb 50%, #38bdf8 100%);
  color:#fff;
  border-bottom:0;
  position:sticky;
  top:0;
  z-index:200;
  box-shadow:0 8px 24px rgba(37,99,235,.18);
}

.siteTopBarInner{
  min-height:78px;
  display:grid;
  grid-template-columns:180px 1fr 180px;
  align-items:center;
  gap:16px;
}

.menuButton{
  display:inline-flex;
  align-items:center;
  gap:10px;
  height:46px;
  padding:0 16px;
  border:1px solid rgba(255,255,255,.22);
  border-radius:12px;
  background:rgba(255,255,255,.10);
  color:#fff;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  justify-self:start;
  backdrop-filter:blur(4px);
}

.menuButton:hover{
  background:rgba(255,255,255,.18);
  color:#fff;
}

.siteLogo{
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.siteLogo a{
  color:#fff;
  font-size:44px;
  line-height:1;
  letter-spacing:-1.6px;
  font-weight:900;
  text-shadow:0 2px 10px rgba(0,0,0,.14);
}

.siteLogo a:hover{
  color:#fff;
  opacity:.96;
}

.adminLink{
  display:flex;
  justify-content:flex-end;
  align-items:center;
}

.adminLink a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-left:1px solid rgba(255,255,255,.22);
  color:#fff;
  font-size:16px;
  font-weight:700;
}

.adminLink a:hover{
  color:#fff;
  opacity:.92;
}

.categoryBar{
  background:#fff;
  border-bottom:1px solid var(--line);
}

.categoryNav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:30px;
  overflow:auto;
  white-space:nowrap;
  scrollbar-width:thin;
}

.categoryNav a{
  display:block;
  padding:16px 0;
  font-size:16px;
  font-weight:800;
  color:#374151;
  border-bottom:3px solid transparent;
}

.categoryNav a:hover{
  color:var(--link);
}

.categoryNav a.active{
  color:var(--link);
  border-bottom-color:var(--link);
}

.topBanner{
  background:transparent;
  border-bottom:0;
  padding:18px 0 22px;
}

.topBanner .container{
  display:flex;
  justify-content:center;
  align-items:center;
}

.topBanner .adwrap,
.topBanner .adPlaceholder{
  width:100%;
  max-width:970px;
  margin:0 auto;
}

.topBanner .adcenter{
  width:100%;
  justify-content:center;
  align-items:center;
}

.infoBar{
  background:linear-gradient(90deg, #0f4cc9 0%, #2563eb 50%, #38bdf8 100%);
  color:#fff;
  box-shadow:0 8px 24px rgba(37,99,235,.18);
}

.infoBarInner{
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
  padding:10px 0;
  font-weight:500;
}

.infoDate,
.infoClock,
.infoWeather{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:15px;
  line-height:1.2;
  font-weight:500;
  letter-spacing:.01em;
}

.infoDate::before{
  content:"📅";
  font-size:15px;
  line-height:1;
}

.infoClock::before{
  content:"🕒";
  font-size:15px;
  line-height:1;
}

.infoWeather::before{
  content:"🌤";
  font-size:15px;
  line-height:1;
}

.sideMenu{
  position:fixed;
  top:0;
  left:-340px;
  width:320px;
  max-width:calc(100vw - 28px);
  height:100vh;
  background:#fff;
  box-shadow:0 18px 50px rgba(0,0,0,.18);
  z-index:9999;
  transition:left .25s ease;
  border-right:1px solid var(--line);
  overflow-y:auto;
}

.sideMenu.open{
  left:0;
}

.sideMenuInner{
  padding:18px;
  display:flex;
  flex-direction:column;
}

.closeMenu{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  margin-bottom:10px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  color:#111827;
  font-size:22px;
  cursor:pointer;
}

.closeMenu:hover{
  background:var(--soft);
}

.sideMenuInner a{
  display:block;
  padding:14px 0;
  border-top:1px solid var(--line);
  font-size:16px;
  font-weight:700;
  color:#1f2937;
}

.sideMenuInner a:first-of-type{
  border-top:0;
}

.sideMenuInner a:hover{
  color:var(--link);
}

/* topbar legado */
.topbar{
  background:var(--dark);
  color:#fff;
  font-size:12px;
}

.topbarIn{
  min-height:40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
}

.topbarLeft,
.topbarRight{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.topbar a{
  color:#fff;
  opacity:.92;
}

.topbar a:hover{
  opacity:1;
}

/* anúncios */
.topad{
  background:#fff;
  border-bottom:1px solid var(--line);
  padding:12px 0;
}

.adwrap{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:12px;
  box-shadow:var(--shadow);
}

.adcenter{
  display:flex;
  justify-content:center;
  align-items:center;
}

.adcenter img{
  max-width:100%;
  height:auto;
  border-radius:10px;
}

/* lateral: mantém largura da coluna e reduz altura para formato horizontal */
.sideAdBox .sideAdInner{
  padding:12px;
}

.sideAdBox .adcenter{
  width:100%;
}

.sideAdBox .adcenter img{
  width:100%;
  max-width:100%;
  aspect-ratio:2 / 1;
  height:auto;
  object-fit:cover;
  border-radius:12px;
}

.adPlaceholder{
  background:#fff;
  border:1px dashed #cbd5e1;
  border-radius:16px;
  padding:26px 18px;
  text-align:center;
  color:var(--muted);
}

/* header legado */
.header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.headerIn{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:78px;
}

.brand{
  font-size:34px;
  line-height:1;
  letter-spacing:-1px;
  font-weight:800;
}

.brand a{
  color:var(--text);
}

.headerActions{
  display:flex;
  align-items:center;
  gap:12px;
}

.searchDesk{
  display:flex;
  align-items:center;
  gap:8px;
}

.searchDesk input{
  width:340px;
  max-width:45vw;
  height:44px;
  border:1px solid var(--line);
  border-radius:12px;
  padding:0 14px;
  background:#fff;
  outline:none;
  font-size:14px;
}

.searchDesk input:focus{
  border-color:#d8b4b0;
  box-shadow:0 0 0 4px rgba(196,23,12,.08);
}

.searchDesk button,
.btnIcon{
  height:44px;
  border:0;
  border-radius:12px;
  cursor:pointer;
  transition:.18s ease;
}

.searchDesk button{
  background:var(--link);
  color:#fff;
  padding:0 16px;
  font-weight:700;
}

.searchDesk button:hover{
  background:var(--link-dark);
}

.btnIcon{
  min-width:44px;
  padding:0 14px;
  background:#fff;
  color:var(--text);
  border:1px solid var(--line);
  font-size:18px;
}

.btnIcon:hover{
  background:var(--soft);
}

/* nav legado */
.navwrap{
  background:#fff;
  border-bottom:1px solid var(--line);
}

.navRow{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  overflow:auto;
  white-space:nowrap;
  scrollbar-width:thin;
  padding:0;
}

.nav a{
  display:block;
  padding:14px 0;
  font-size:14px;
  color:#1f2933;
  border-bottom:3px solid transparent;
  font-weight:600;
}

.nav a:hover{
  color:var(--link);
}

.nav a.active{
  color:var(--link);
  border-bottom-color:var(--link);
}

.navPanel{
  display:none;
  background:#fff;
  border-bottom:1px solid var(--line);
}

.navPanel.isOpen{
  display:block;
}

.navPanelLinks{
  display:flex;
  flex-direction:column;
  padding:6px 0 12px;
}

.navPanelLinks a{
  padding:12px 0;
  border-top:1px solid var(--line);
  font-weight:600;
}

.navPanelLinks a:first-child{
  border-top:0;
}

.navPanelLinks a.active{
  color:var(--link);
}

/* layout principal */
.siteGrid{
  max-width:var(--container);
  margin:22px auto 30px;
  padding:0 18px;
  display:grid;
  grid-template-columns:minmax(0,2fr) 340px;
  gap:24px;
  align-items:start;
}

.mainCol{
  min-width:0;
}

.sideCol{
  min-width:0;
  align-self:stretch;
}

.sidebarSticky{
  position:sticky;
  top:138px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.sideAdsSticky{
  position:sticky;
  top:110px;
  display:flex;
  flex-direction:column;
  gap:18px;
  align-self:start;
}

.sideAdBox{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}

.sideAdInner{
  padding:12px;
}

.sidebarBox{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.latestBox{
  padding:18px;
}

.latestHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.latestHead h3{
  margin:0;
  font-size:22px;
  letter-spacing:-.5px;
}

.livePill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:58px;
  height:28px;
  padding:0 10px;
  border-radius:999px;
  background:#ffe7e5;
  color:var(--link);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
}

.latestList{
  display:flex;
  flex-direction:column;
}

.latestList a{
  padding:14px 0;
  border-top:1px solid var(--line);
}

.latestList a:first-child{
  border-top:0;
}

.latestList strong{
  display:block;
  font-size:16px;
  line-height:1.25;
  letter-spacing:-.2px;
}

.sidebarBox.latestBox{
  display:none !important;
}

/* títulos e meta */
.sectionTag,
.miniKicker{
  display:inline-block;
  color:var(--link);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:11px;
  font-weight:800;
}

.sectionTag{
  margin-bottom:10px;
}

.sectionMeta{
  color:var(--muted);
  font-size:12px;
  line-height:1.4;
}

.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}

.sectionTitle{
  margin:4px 0 0;
  font-size:32px;
  line-height:1.03;
  letter-spacing:-1px;
}

.sectionMore{
  color:var(--link);
  font-size:13px;
  font-weight:800;
  white-space:nowrap;
}

.sectionMore:hover{
  text-decoration:underline;
}

/* selo bombando */
.trendBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  min-height:30px;
  padding:0 12px;
  border-radius:999px;
  font-size:11px;
  font-weight:900;
  line-height:1;
  letter-spacing:.08em;
  text-transform:uppercase;
  white-space:nowrap;
}

.trendBadgeHot{
  background:linear-gradient(135deg, #ff7a18 0%, #ff3d00 55%, #d00000 100%);
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 12px 26px rgba(208,0,0,.22);
}

.trendBadgeWarm{
  background:linear-gradient(135deg, #fff4e8 0%, #ffe1bf 100%);
  color:#a33d00;
  border:1px solid #ffd3a3;
  box-shadow:0 8px 18px rgba(245,158,11,.12);
}

.heroTrendBadge{
  position:absolute;
  top:18px;
  left:18px;
  z-index:4;
  pointer-events:none;
}

.heroSideTrend{
  margin-bottom:8px;
}

.cardTrendBadge{
  margin-bottom:10px;
}

.inlineTrendRow{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

/* hero principal */
.heroSection{
  background:
    radial-gradient(circle at top right, rgba(15,76,201,.07), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border:1px solid #e6ebf2;
  border-radius:28px;
  box-shadow:var(--shadow-soft);
  padding:18px;
  margin:18px 0 18px;
}

.heroSection .sectionTag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:34px;
  padding:0 13px;
  margin-bottom:12px;
  border-radius:999px;
  background:#fff1f0;
  border:1px solid #ffd7d2;
  color:var(--link);
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  box-shadow:0 4px 14px rgba(196,23,12,.08);
}

.heroGrid{
  display:grid;
  grid-template-columns:minmax(0,1.62fr) minmax(320px,.98fr);
  gap:14px;
  align-items:stretch;
}

.heroMain{
  position:relative;
  min-height:460px;
  height:460px;
  border-radius:24px;
  overflow:hidden;
  background:#dfe5eb;
  box-shadow:0 18px 42px rgba(16,20,24,.10);
  isolation:isolate;
}

.heroMain::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(7,12,18,.02) 0%, rgba(7,12,18,.10) 38%, rgba(7,12,18,.88) 100%);
  z-index:1;
  pointer-events:none;
}

.heroMain::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:4px;
  background:linear-gradient(90deg, var(--link) 0%, #ef4444 55%, #f59e0b 100%);
  z-index:3;
}

.heroMain > a,
.heroMain img,
.heroFallback{
  width:100%;
  height:100%;
}

.heroMain img,
.heroFallback{
  object-fit:cover;
  transform:scale(1.01);
}

.heroFallback{
  background:#d8dee6;
}

.heroOverlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:28px 28px 22px;
  color:#fff;
  z-index:2;
}

.heroOverlay h1{
  margin:0;
  font-size:33px;
  line-height:1.03;
  letter-spacing:-1.2px;
  font-weight:900;
  max-width:92%;
}

.heroOverlay h1 a{
  color:#fff;
}

.heroOverlay h1,
.heroOverlay h1 a,
.heroMeta,
.heroDesc{
  text-shadow:0 3px 16px rgba(0,0,0,.48);
}

.heroDesc{
  margin-top:14px;
  font-size:17px;
  line-height:1.5;
  max-width:88%;
  color:rgba(255,255,255,.96);
}

.heroMeta{
  margin-top:12px;
  font-size:12px;
  color:rgba(255,255,255,.88);
  letter-spacing:.02em;
}

.heroSide{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
}

.heroSideItem{
  display:grid;
  grid-template-columns:112px 1fr;
  gap:12px;
  align-items:start;
  background:linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(16,20,24,.05);
  min-height:110px;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.heroSideItem:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(16,20,24,.08);
  border-color:#dbe4ee;
}

.heroSideThumb{
  width:112px;
  height:110px;
  min-height:110px;
  overflow:hidden;
}

.heroSideThumb img,
.noThumb{
  width:100%;
  height:100%;
  object-fit:cover;
  background:#dce3ea;
}

.heroSideBody{
  padding:12px 12px 12px 0;
  min-width:0;
}

.heroSideBody h3{
  margin:0;
  font-size:16px;
  line-height:1.15;
  letter-spacing:-.25px;
  min-height:54px;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.headlineBar{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
}

.headlineBar a{
  background:linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border:1px solid var(--line);
  border-radius:16px;
  padding:13px 14px;
  box-shadow:0 8px 22px rgba(16,20,24,.04);
  min-height:72px;
  display:flex;
  align-items:flex-start;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.headlineBar a:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(16,20,24,.08);
  border-color:#dbe4ee;
}

.headlineBar span{
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
  font-size:15px;
  line-height:1.22;
  font-weight:700;
  letter-spacing:-.18px;
  min-height:54px;
}

/* home com hero largura total */
.heroSectionFull{
  padding:22px;
}

.heroGridFull{
  grid-template-columns:1fr;
}

.heroMainFull{
  min-height:620px;
  height:620px;
}

.heroBelowNews{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
}

.heroBelowNews .heroSideItem{
  grid-template-columns:1fr;
  min-height:100%;
}

.heroBelowNews .heroSideThumb{
  width:100%;
  height:165px;
  min-height:165px;
}

.heroBelowNews .heroSideBody{
  padding:14px;
}

.heroBelowNews .heroSideBody h3{
  min-height:68px;
  font-size:17px;
}

.homeMovedAds{
  margin-top:18px;
}

.homeMovedAdsSticky{
  position:sticky;
  top:96px;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.homeMovedAdBox{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.homeMovedAdBox .sideAdInner{
  padding:14px;
}

/* segunda dobra */
.editorialSection{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:22px;
  margin-bottom:22px;
}

.editorialGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}

.editorialMain{
  background:#fff;
  border-right:1px solid var(--line);
  padding-right:20px;
}

.editorialMain > a{
  display:block;
  border-radius:18px;
  overflow:hidden;
}

.editorialMain img,
.editorialFallback{
  width:100%;
  height:340px;
  min-height:340px;
  object-fit:cover;
  background:#dce3ea;
}

.editorialMainBody{
  padding-top:16px;
}

.editorialMainBody h2{
  margin:0;
  font-size:34px;
  line-height:1.04;
  letter-spacing:-1px;
  min-height:106px;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.editorialMainBody p{
  margin:12px 0 0;
  color:#34404b;
  font-size:16px;
  line-height:1.5;
  min-height:48px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.editorialSide{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.sideNewsCard{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding-bottom:14px;
  border-bottom:1px solid var(--line);
  min-height:0;
}

.sideNewsCard:last-child{
  border-bottom:0;
  padding-bottom:0;
}

.sideNewsThumb{
  display:block;
  width:120px;
  height:80px;
  min-width:120px;
  min-height:80px;
  flex-shrink:0;
  border-radius:12px;
  overflow:hidden;
  background:#dce3ea;
}

.sideNewsThumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.sideNewsBody{
  flex:1;
  min-width:0;
}

.sideNewsBody h3{
  margin:0 0 6px;
  font-size:16px;
  line-height:1.25;
  letter-spacing:-.2px;
  min-height:0;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.headlineList{
  margin-top:18px;
  border-top:1px solid var(--line);
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:0 18px;
}

.headlineList a{
  display:block;
  padding:16px 0;
  border-bottom:1px solid var(--line);
}

.headlineList strong{
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
  font-size:17px;
  line-height:1.22;
  letter-spacing:-.2px;
  min-height:62px;
}

/* categoria */
.categoryWrap{
  margin-top:18px;
}

.categoryCard{
  background:var(--card, #fff);
  border:1px solid var(--line, #e5e7eb);
  border-radius:var(--radius, 16px);
  box-shadow:var(--shadow, 0 10px 30px rgba(0,0,0,.06));
  overflow:hidden;
}

.categoryCardPad{
  padding:22px;
}

.categoryKicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--link);
}

.categoryHero{
  display:grid;
  grid-template-columns:minmax(0, 1.5fr) minmax(280px, .9fr);
  gap:22px;
  margin-top:14px;
}

.categoryHeroMain{
  min-width:0;
}

.categoryHeroMain > a{
  display:block;
  text-decoration:none;
}

.categoryHeroMain img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
  border-radius:16px;
  background:#eee;
}

.categoryHeroBody{
  padding-top:14px;
}

.categoryHeroTitle{
  margin:0;
  font-size:46px;
  line-height:1.02;
  font-weight:900;
  letter-spacing:-0.03em;
}

.categoryHeroTitle a{
  color:inherit;
  text-decoration:none;
}

.categoryHeroTitle a:hover{
  text-decoration:underline;
}

.categoryHeroDesc{
  margin:12px 0 0;
  font-size:18px;
  line-height:1.55;
  color:#4b5563;
}

.categoryMeta{
  margin-top:12px;
  font-size:13px;
  color:#6b7280;
}

.categoryRail{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.categoryRailItem{
  display:grid;
  grid-template-columns:112px 1fr;
  gap:12px;
  align-items:start;
  text-decoration:none;
  color:inherit;
}

.categoryRailItem img,
.categoryRailFallback{
  width:112px;
  height:84px;
  object-fit:cover;
  display:block;
  border-radius:12px;
  background:#eee;
}

.categoryRailBody h3{
  margin:0;
  font-size:18px;
  line-height:1.2;
  font-weight:800;
}

.categoryRailBody h3 a{
  color:inherit;
  text-decoration:none;
}

.categoryRailBody h3 a:hover{
  text-decoration:underline;
}

.categoryMoreGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:18px;
}

.categoryMoreItem{
  display:block;
  padding:14px;
  border:1px solid var(--line, #e5e7eb);
  border-radius:14px;
  text-decoration:none;
  color:inherit;
  background:#fff;
}

.categoryMoreItem strong{
  display:block;
  font-size:18px;
  line-height:1.28;
}

.categoryPager{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.categoryPagerInfo{
  color:#6b7280;
}

.categoryLatestBox{
  background:var(--card, #fff);
  border:1px solid var(--line, #e5e7eb);
  border-radius:var(--radius, 16px);
  box-shadow:var(--shadow, 0 10px 30px rgba(0,0,0,.06));
  overflow:hidden;
  margin-top:18px;
}

.categoryLatestPad{
  padding:18px;
}

.categoryLatestHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}

.categoryLatestHead h3{
  margin:0;
  font-size:28px;
  line-height:1;
}

.categoryLatestLive{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  background:#fff1f2;
  color:#be123c;
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
}

.categoryLatestList{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.categoryLatestList a{
  display:block;
  text-decoration:none;
  color:inherit;
  padding-bottom:12px;
  border-bottom:1px solid #ececec;
}

.categoryLatestList a:last-child{
  border-bottom:0;
  padding-bottom:0;
}

.categoryLatestList strong{
  display:block;
  font-size:18px;
  line-height:1.3;
}

/* página de notícia */
.postWrap{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:var(--shadow);
  padding:26px;
}

.postHeader{
  margin-bottom:18px;
}

.postKicker{
  display:inline-block;
  color:var(--link);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:11px;
  font-weight:800;
  margin-bottom:12px;
}

.postKicker a{
  color:inherit;
  text-decoration:none;
}

.postTitle{
  margin:0;
  font-size:52px;
  line-height:1.03;
  letter-spacing:-1.4px;
  font-weight:800;
}

.postSubtitle{
  margin:14px 0 0;
  color:#34404b;
  font-size:22px;
  line-height:1.4;
}

.postMeta{
  margin-top:14px;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}

.postCover{
  margin-top:20px;
}

.postCover img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
  border-radius:18px;
}

.postCredit{
  margin-top:8px;
  color:var(--muted);
  font-size:12px;
}

.postVideo{
  margin-top:20px;
}

.postVideo iframe{
  width:100%;
  aspect-ratio:16/9;
  border:0;
  border-radius:18px;
  display:block;
}

.postBody{
  margin-top:24px;
  font-size:20px;
  line-height:1.85;
  color:#18202a;
  word-wrap:break-word;
}

.postBody p{
  margin:0 0 1.35em;
}

.postBody h2,
.postBody h3,
.postBody h4{
  margin:1.4em 0 .7em;
  line-height:1.2;
  color:#0f1419;
}

.postBody h2{font-size:32px;letter-spacing:-.7px}
.postBody h3{font-size:26px;letter-spacing:-.5px}
.postBody h4{font-size:22px;letter-spacing:-.3px}

.postBody ul,
.postBody ol{
  margin:0 0 1.35em 1.4em;
  padding:0;
}

.postBody li{
  margin:0 0 .55em;
}

/* VISUAL NOVO DAS IMAGENS INTERNAS */
.postBody figure{
  width:100%;
  max-width:760px;
  margin:30px auto;
  padding:12px;
  background:linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border:1px solid var(--line);
  border-radius:22px;
  box-shadow:0 16px 34px rgba(16,20,24,.07);
}

.postBody .postGalleryLink{
  display:block;
  border-radius:16px;
  overflow:hidden;
}

.postBody figure img,
.postBody .postGalleryLink img,
.postBody img{
  width:100%;
  max-width:100%;
  height:auto;
  max-height:560px;
  object-fit:contain;
  border-radius:16px;
  display:block;
  margin:0 auto;
  background:#eef2f6;
}

.postBody figure > img{
  width:100%;
  max-width:100%;
  height:auto;
  max-height:560px;
  object-fit:contain;
  border-radius:16px;
  display:block;
  margin:0 auto;
  background:#eef2f6;
}

.postBody figcaption{
  max-width:680px;
  margin:12px auto 2px;
  color:#5f6b77;
  font-size:13px;
  line-height:1.6;
  text-align:center;
}

.postBody iframe,
.postBody video{
  width:100%;
  max-width:100%;
  border:0;
  border-radius:18px;
  display:block;
  margin:22px 0;
}

.postBody blockquote{
  margin:1.5em 0;
  padding:16px 18px;
  border-left:4px solid var(--link);
  background:#faf6f5;
  border-radius:12px;
  color:#2c3844;
}

.postBody a{
  color:var(--link);
  text-decoration:underline;
}

.midArticleRelated{
  margin:28px 0 30px;
  padding:16px 18px;
  border:1px solid var(--line);
  border-left:4px solid var(--link);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow);
}

.midRelatedLabel{
  margin-bottom:10px;
  color:var(--link);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.midRelatedList{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.midRelatedList a{
  display:block;
  text-decoration:none;
}

.midRelatedList strong{
  display:block;
  color:#111827;
  font-size:18px;
  line-height:1.35;
}

.midRelatedList span{
  display:block;
  margin-top:4px;
  color:var(--muted);
  font-size:12px;
}

.midArticleAd{
  margin:28px 0 30px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow);
}

.midArticleAd .adLabel{
  margin-bottom:10px;
  color:var(--muted);
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.endArticleRelated{
  margin-top:34px;
  padding-top:22px;
  border-top:1px solid var(--line);
}

.endArticleRelatedHead{
  margin-bottom:16px;
}

.endArticleRelatedLabel{
  margin-bottom:6px;
  color:var(--link);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.endArticleRelatedHead h3{
  margin:0;
  font-size:28px;
  line-height:1.15;
  letter-spacing:-.6px;
}

.endArticleRelatedGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.endArticleRelatedCard{
  display:block;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  text-decoration:none;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.endArticleRelatedImage img{
  width:100%;
  height:160px;
  object-fit:cover;
  display:block;
}

.endArticleRelatedText{
  padding:16px;
}

.endArticleRelatedText strong{
  display:block;
  color:#111827;
  font-size:18px;
  line-height:1.35;
}

.endArticleRelatedText span{
  display:block;
  margin-top:8px;
  color:var(--muted);
  font-size:12px;
}

.relatedBox{
  width:100%;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow);
  padding:18px;
}

.relatedHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.relatedHead h3{
  margin:0;
  font-size:22px;
  line-height:1.2;
  letter-spacing:-.5px;
}

.relatedPill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:28px;
  padding:0 10px;
  border-radius:999px;
  background:#ffe7e5;
  color:var(--link);
  font-size:12px;
  font-weight:800;
}

.relatedList{
  display:flex;
  flex-direction:column;
}

.relatedList a{
  display:block;
  padding:14px 0;
  border-top:1px solid var(--line);
  text-decoration:none;
}

.relatedList a:first-child{
  border-top:0;
}

.relatedList strong{
  display:block;
  font-size:16px;
  line-height:1.26;
  letter-spacing:-.2px;
}

.relatedDate{
  margin-top:4px;
  color:var(--muted);
  font-size:12px;
}

/* lateral da notícia */
.relatedBox .endArticleRelatedGrid{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.relatedBox .endArticleRelatedCard{
  display:grid;
  grid-template-columns:96px 1fr;
  gap:12px;
  align-items:start;
  border:0;
  border-radius:0;
  box-shadow:none;
  padding:0 0 12px;
  border-bottom:1px solid var(--line);
  overflow:visible;
}

.relatedBox .endArticleRelatedCard:last-child{
  padding-bottom:0;
  border-bottom:0;
}

.relatedBox .endArticleRelatedImage{
  width:96px;
  min-width:96px;
}

.relatedBox .endArticleRelatedImage img{
  width:96px;
  height:74px;
  border-radius:12px;
  object-fit:cover;
}

.relatedBox .endArticleRelatedText{
  padding:0;
}

.relatedBox .endArticleRelatedText strong{
  font-size:16px;
  line-height:1.28;
  letter-spacing:-.2px;
}

.relatedBox .endArticleRelatedText span{
  margin-top:6px;
  font-size:12px;
}

/* anúncio entre blocos */
.betweenAdSection{
  margin:0 0 22px;
}

/* grade de seções */
.sectionsGrid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:20px;
}

.newsShelf{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow);
  padding:18px;
}

.shelfHead{
  margin-bottom:12px;
}

.shelfTitle{
  margin:0;
  font-size:24px;
  line-height:1.05;
  letter-spacing:-.6px;
}

.shelfLead{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-bottom:12px;
}

.shelfLead > a{
  border-radius:16px;
  overflow:hidden;
  display:block;
}

.shelfLead img,
.shelfFallback{
  width:100%;
  height:210px;
  min-height:210px;
  object-fit:cover;
  background:#dce3ea;
}

.shelfLeadBody h4{
  margin:0;
  font-size:22px;
  line-height:1.12;
  letter-spacing:-.45px;
  min-height:74px;
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.shelfList{
  display:flex;
  flex-direction:column;
}

.shelfList a{
  display:block;
  padding:13px 0;
  border-top:1px solid var(--line);
}

.shelfList strong{
  display:-webkit-box;
  -webkit-line-clamp:3;
  -webkit-box-orient:vertical;
  overflow:hidden;
  font-size:16px;
  line-height:1.24;
  letter-spacing:-.15px;
  min-height:60px;
}

/* busca */
.searchHeader{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow);
  padding:22px;
  margin-bottom:18px;
}

.searchHeader h1{
  margin:4px 0 0;
  font-size:34px;
  line-height:1.04;
  letter-spacing:-1px;
}

.searchList{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.searchItem{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:16px;
  align-items:start;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  box-shadow:var(--shadow);
}

.searchThumb{
  display:block;
  border-radius:14px;
  overflow:hidden;
}

.searchThumb img,
.searchThumb .noThumb{
  width:100%;
  height:180px;
  object-fit:cover;
}

.searchBody h2{
  margin:4px 0 8px;
  font-size:28px;
  line-height:1.06;
  letter-spacing:-.8px;
}

.searchBody p{
  margin:10px 0 0;
  color:#34404b;
  font-size:15px;
  line-height:1.5;
}

.pager{
  margin-top:18px;
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.pagerBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:12px;
  background:#fff;
  border:1px solid var(--line);
  font-weight:700;
  box-shadow:var(--shadow);
}

.pagerBtnNext{
  margin-left:auto;
}

.pagerInfo{
  color:var(--muted);
  font-size:14px;
}

/* caixas vazias */
.emptyBox,
.emptyMini{
  color:var(--muted);
}

.emptyBox{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
  box-shadow:var(--shadow);
}

.emptyMini{
  padding:6px 0;
}

/* popup */
.popupOverlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.62);
  display:none;
  align-items:center;
  justify-content:center;
  padding:18px;
  z-index:9999;
}

.popupBox{
  background:#fff;
  border-radius:18px;
  width:800px;
  height:600px;
  max-width:calc(100vw - 36px);
  max-height:calc(100vh - 36px);
  padding:14px;
  position:relative;
  border:1px solid rgba(11,15,19,.10);
  box-shadow:0 20px 60px rgba(0,0,0,.18);
  overflow:hidden;
}

.popupBox .adcenter{
  width:100%;
  height:100%;
}

.popupBox .ad-image-box{
  width:100% !important;
  height:100% !important;
  max-width:none !important;
  aspect-ratio:auto !important;
}

.popupBox .ad-image-box a{
  width:100% !important;
  height:100% !important;
}

.popupBox img{
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  border-radius:10px;
}

.popupClose{
  position:absolute;
  top:10px;
  right:10px;
  border:0;
  background:#111;
  color:#fff;
  border-radius:10px;
  padding:8px 10px;
  cursor:pointer;
  z-index:2;
}

/* próxima notícia - estilo portal grande
   limitado à coluna principal para não afetar a lateral */
.mainCol > .editorialSection:last-of-type{
  margin-top:32px;
  padding:26px;
  border-radius:24px;
  background:
    radial-gradient(circle at top right, rgba(15,76,201,.06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border:1px solid #e4eaf2;
  box-shadow:0 18px 44px rgba(16,20,24,.08);
}

.mainCol > .editorialSection:last-of-type .sectionHead{
  align-items:center;
  margin-bottom:18px;
}

.mainCol > .editorialSection:last-of-type .sectionTag{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  background:#fff1f0;
  border:1px solid #ffd7d2;
  color:var(--link);
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  box-shadow:0 4px 14px rgba(196,23,12,.08);
}

.mainCol > .editorialSection:last-of-type .sectionTitle{
  font-size:34px;
  line-height:1.05;
  letter-spacing:-1px;
}

.mainCol > .editorialSection:last-of-type .sectionMore{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 18px;
  border-radius:12px;
  background:var(--link);
  color:#fff;
  font-size:13px;
  font-weight:800;
  box-shadow:0 10px 24px rgba(196,23,12,.18);
}

.mainCol > .editorialSection:last-of-type .sectionMore:hover{
  background:var(--link-dark);
  color:#fff;
  text-decoration:none;
}

.mainCol > .editorialSection:last-of-type .editorialMain{
  border-right:0 !important;
  padding-right:0 !important;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(16,20,24,.06);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.mainCol > .editorialSection:last-of-type .editorialMain:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 44px rgba(16,20,24,.12);
  border-color:#d9e3ee;
}

.mainCol > .editorialSection:last-of-type .editorialMain > a{
  display:block;
  border-radius:0;
}

.mainCol > .editorialSection:last-of-type .editorialMain img,
.mainCol > .editorialSection:last-of-type .editorialFallback{
  width:100%;
  height:400px;
  min-height:400px;
  object-fit:cover;
  background:#dce3ea;
}

.mainCol > .editorialSection:last-of-type .editorialMainBody{
  padding:20px 22px 22px;
}

.mainCol > .editorialSection:last-of-type .editorialMainBody h2{
  margin:0;
  font-size:34px;
  line-height:1.06;
  letter-spacing:-1px;
  min-height:0;
  display:block;
  overflow:visible;
}

.mainCol > .editorialSection:last-of-type .editorialMainBody h2 a:hover{
  color:var(--link);
}

.mainCol > .editorialSection:last-of-type .editorialMainBody p{
  margin-top:12px;
  font-size:17px;
  line-height:1.6;
  color:#3f4a56;
  min-height:0;
  display:block;
  overflow:visible;
}

.mainCol > .editorialSection:last-of-type .sectionMeta{
  margin-top:14px;
  font-size:13px;
  color:#6b7280;
}

/* footer */
.siteFooter{
  margin-top:34px;
  background:linear-gradient(90deg, #0f4cc9 0%, #2563eb 50%, #38bdf8 100%);
  color:#fff;
  box-shadow:0 -8px 24px rgba(37,99,235,.14);
}

.footerContainer{
  max-width:var(--container);
  margin:0 auto;
  padding:0 18px;
}

.footerGrid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:34px;
  padding:38px 0 26px;
}

.footerCol h3,
.footerCol h4{
  margin:0 0 14px;
  color:#fff;
  font-weight:900;
  letter-spacing:-.3px;
}

.footerCol h3{
  font-size:28px;
}

.footerCol h4{
  font-size:18px;
}

.footerCol p{
  margin:0;
  color:rgba(255,255,255,.92);
  font-size:15px;
  line-height:1.7;
}

.footerCol ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.footerCol li{
  color:rgba(255,255,255,.92);
  font-size:15px;
  line-height:1.6;
}

.footerCol a{
  color:#fff;
  font-weight:700;
}

.footerCol a:hover{
  color:#fff;
  opacity:.9;
  text-decoration:underline;
}

.footerBottom{
  border-top:1px solid rgba(255,255,255,.22);
  padding:16px 0 20px;
}

.footerBottom p{
  margin:0;
  color:rgba(255,255,255,.88);
  font-size:14px;
  line-height:1.5;
  text-align:center;
}

/* responsivo */
@media (max-width:1200px){
  .siteGrid{
    grid-template-columns:minmax(0,1fr) 320px;
  }

  .heroGrid{
    grid-template-columns:minmax(0,1.45fr) minmax(300px,.95fr);
  }

  .heroMain{
    min-height:420px;
    height:420px;
  }

  .heroOverlay h1{
    font-size:30px;
  }

  .editorialMainBody h2{
    font-size:30px;
    min-height:94px;
  }

  .headlineList{
    grid-template-columns:repeat(2, 1fr);
  }

  .mainCol > .editorialSection:last-of-type .editorialMainBody h2{
    font-size:30px;
    min-height:0;
  }
}

@media (max-width:1024px){
  .siteGrid{
    grid-template-columns:1fr;
  }

  .sideCol{
    order:2;
    align-self:start;
  }

  .sidebarSticky{
    position:static;
  }

  .sideAdsSticky{
    position:static;
    top:auto;
  }

  .homeMovedAdsSticky{
    position:static;
    top:auto;
  }

  .sidebarBox.latestBox{
    display:none !important;
  }

  .heroGrid,
  .editorialGrid,
  .sectionsGrid,
  .categoryHero,
  .footerGrid{
    grid-template-columns:1fr;
  }

  .heroMain{
    min-height:460px;
    height:460px;
  }

  .heroSide{
    grid-template-columns:1fr 1fr;
  }

  .editorialMain{
    border-right:0;
    padding-right:0;
    padding-bottom:12px;
    border-bottom:1px solid var(--line);
  }

  .headlineBar{
    grid-template-columns:repeat(2, 1fr);
  }

  .searchItem{
    grid-template-columns:220px 1fr;
  }

  .categoryHeroMain img{
    height:320px;
  }

  .categoryHeroTitle{
    font-size:34px;
  }

  .categoryMoreGrid{
    grid-template-columns:1fr;
  }

  .mainCol > .editorialSection:last-of-type .editorialMain img,
  .mainCol > .editorialSection:last-of-type .editorialFallback{
    height:360px;
    min-height:360px;
  }

  .postBody figure{
    max-width:700px;
  }

  .postBody figure img,
  .postBody .postGalleryLink img,
  .postBody img,
  .postBody figure > img{
    max-height:500px;
  }

  .footerGrid{
    gap:24px;
    padding:30px 0 22px;
  }
}

@media (max-width:820px){
  .siteTopBarInner{
    grid-template-columns:1fr auto;
    grid-template-areas:
      "menu admin"
      "logo logo";
    row-gap:12px;
    min-height:auto;
    padding:14px 0;
  }

  .menuButton{
    grid-area:menu;
  }

  .adminLink{
    grid-area:admin;
  }

  .siteLogo{
    grid-area:logo;
  }

  .siteLogo a{
    font-size:32px;
  }

  .categoryNav{
    justify-content:flex-start;
    gap:18px;
  }

  .categoryNav a{
    padding:14px 0;
    font-size:15px;
  }

  .topBanner{
    padding:16px 0 18px;
  }

  .infoBarInner{
    justify-content:flex-start;
    gap:14px;
  }

  .searchDesk{
    display:none;
  }

  .nav{
    display:none;
  }

  .brand{
    font-size:28px;
  }

  .heroSection{
    padding:16px;
    border-radius:20px;
  }

  .heroMain{
    min-height:380px;
    height:380px;
    border-radius:20px;
  }

  .heroOverlay{
    padding:24px 22px 22px;
  }

  .heroOverlay h1{
    font-size:32px;
  }

  .heroSide{
    grid-template-columns:1fr;
  }

  .headlineList{
    grid-template-columns:1fr;
  }

  .editorialMainBody h2,
  .editorialMainBody p,
  .heroSideBody h3,
  .sideNewsBody h3,
  .headlineList strong,
  .shelfLeadBody h4,
  .shelfList strong,
  .headlineBar span{
    min-height:0;
    display:block;
    overflow:visible;
  }

  .postWrap{padding:18px}
  .postTitle{font-size:34px}
  .postSubtitle{font-size:18px}
  .postBody{font-size:18px;line-height:1.8}
  .postBody h2{font-size:28px}
  .postBody h3{font-size:24px}
  .postCover img{height:340px}
  .midRelatedList strong{font-size:17px}
  .endArticleRelatedHead h3{font-size:24px}
  .endArticleRelatedText strong{font-size:17px}

  .postBody figure{
    max-width:100%;
    margin:24px auto;
    padding:10px;
    border-radius:18px;
  }

  .postBody figure img,
  .postBody .postGalleryLink img,
  .postBody img,
  .postBody figure > img{
    max-height:420px;
    border-radius:14px;
  }

  .mainCol > .editorialSection:last-of-type{
    padding:20px;
  }

  .mainCol > .editorialSection:last-of-type .sectionHead{
    align-items:flex-start;
    flex-direction:column;
  }

  .mainCol > .editorialSection:last-of-type .sectionTitle{
    font-size:28px;
  }

  .mainCol > .editorialSection:last-of-type .sectionMore{
    min-height:42px;
  }

  .mainCol > .editorialSection:last-of-type .editorialMain img,
  .mainCol > .editorialSection:last-of-type .editorialFallback{
    height:300px;
    min-height:300px;
  }

  .mainCol > .editorialSection:last-of-type .editorialMainBody{
    padding:18px;
  }

  .mainCol > .editorialSection:last-of-type .editorialMainBody h2{
    font-size:28px;
  }

  .mainCol > .editorialSection:last-of-type .editorialMainBody p{
    font-size:16px;
  }

  .heroTrendBadge{
    top:14px;
    left:14px;
  }

  .footerCol h3{
    font-size:24px;
  }

  .footerCol h4{
    font-size:17px;
  }
}

@media (max-width:640px){
  .container,
  .siteGrid{
    padding-left:14px;
    padding-right:14px;
  }

  .siteLogo a{
    font-size:26px;
    letter-spacing:-.8px;
  }

  .menuButton{
    height:42px;
    padding:0 12px;
    font-size:15px;
  }

  .adminLink a{
    min-height:42px;
    padding:0 0 0 14px;
    font-size:14px;
  }

  .infoDate,
  .infoClock,
  .infoWeather{
    font-size:14px;
  }

  .topbarIn{
    align-items:flex-start;
    flex-direction:column;
  }

  .headerIn{
    min-height:68px;
  }

  .brand{
    font-size:24px;
    letter-spacing:-.7px;
  }

  .heroSection{
    padding:14px;
    border-radius:18px;
  }

  .heroMain{
    min-height:300px;
    height:300px;
    border-radius:18px;
  }

  .heroOverlay h1{
    font-size:26px;
    letter-spacing:-1px;
  }

  .heroDesc{
    max-width:100%;
    font-size:14px;
  }

  .heroSideItem,
  .sideNewsCard{
    grid-template-columns:98px 1fr;
  }

  .heroSideThumb{
    width:98px;
    height:84px;
    min-height:84px;
  }

  .sideNewsThumb{
    width:98px;
    height:74px;
    min-height:74px;
  }

  .headlineBar{
    grid-template-columns:1fr;
  }

  .editorialSection,
  .newsShelf,
  .searchHeader,
  .searchItem,
  .categoryCardPad{
    padding:16px;
  }

  .topBanner{
    padding:14px 0 16px;
  }

  .editorialMain img,
  .editorialFallback{
    height:240px;
    min-height:240px;
  }

  .shelfLead img,
  .shelfFallback{
    height:190px;
    min-height:190px;
  }

  .sectionTitle,
  .searchHeader h1{
    font-size:28px;
  }

  .searchItem{
    grid-template-columns:1fr;
  }

  .searchThumb img,
  .searchThumb .noThumb{
    height:190px;
  }

  .searchBody h2{
    font-size:24px;
  }

  .pagerBtnNext{
    margin-left:0;
  }

  .categoryHeroMain img{
    height:240px;
    border-radius:12px;
  }

  .categoryHeroTitle{
    font-size:28px;
  }

  .categoryRailItem{
    grid-template-columns:96px 1fr;
  }

  .categoryRailItem img,
  .categoryRailFallback{
    width:96px;
    height:74px;
  }

  .categoryRailBody h3,
  .categoryLatestList strong,
  .categoryMoreItem strong{
    font-size:16px;
  }

  .categoryLatestHead h3{
    font-size:24px;
  }

  .postTitle{font-size:28px}
  .postSubtitle{font-size:17px}
  .postBody{font-size:17px}
  .postCover img{height:260px}
  .midRelatedList strong{font-size:16px}
  .endArticleRelatedGrid{grid-template-columns:1fr}
  .endArticleRelatedHead h3{font-size:22px}
  .endArticleRelatedText strong{font-size:16px}

  .postBody figure{
    margin:22px auto;
    padding:8px;
    border-radius:16px;
  }

  .postBody figure img,
  .postBody .postGalleryLink img,
  .postBody img,
  .postBody figure > img{
    max-height:320px;
    border-radius:12px;
  }

  .postBody figcaption{
    font-size:12px;
    margin-top:10px;
  }

  .relatedBox .endArticleRelatedCard{
    grid-template-columns:88px 1fr;
    gap:10px;
  }

  .relatedBox .endArticleRelatedImage{
    width:88px;
    min-width:88px;
  }

  .relatedBox .endArticleRelatedImage img{
    width:88px;
    height:68px;
  }

  .mainCol > .editorialSection:last-of-type{
    padding:16px;
    border-radius:20px;
  }

  .mainCol > .editorialSection:last-of-type .sectionTitle{
    font-size:24px;
    letter-spacing:-.6px;
  }

  .mainCol > .editorialSection:last-of-type .sectionMore{
    width:100%;
  }

  .mainCol > .editorialSection:last-of-type .editorialMain{
    border-radius:18px;
  }

  .mainCol > .editorialSection:last-of-type .editorialMain img,
  .mainCol > .editorialSection:last-of-type .editorialFallback{
    height:220px;
    min-height:220px;
  }

  .mainCol > .editorialSection:last-of-type .editorialMainBody{
    padding:16px;
  }

  .mainCol > .editorialSection:last-of-type .editorialMainBody h2{
    font-size:24px;
    line-height:1.1;
  }

  .mainCol > .editorialSection:last-of-type .editorialMainBody p{
    font-size:15px;
    line-height:1.55;
  }

  .trendBadge{
    min-height:28px;
    padding:0 10px;
    font-size:10px;
  }

  .heroTrendBadge{
    top:12px;
    left:12px;
  }

  .siteFooter{
    margin-top:26px;
  }

  .footerContainer{
    padding:0 14px;
  }

  .footerGrid{
    gap:20px;
    padding:24px 0 18px;
  }

  .footerCol p,
  .footerCol li{
    font-size:14px;
  }

  .footerBottom{
    padding:14px 0 18px;
  }

  .footerBottom p{
    font-size:13px;
  }
}

/* remove caixa branca do banner do topo */
.topBanner .adwrap{
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  padding:0 !important;
}