/* =========================================================
   O SETELAGOANO — Central de Notícias
   Design system / stylesheet
   ========================================================= */

:root{
  /* brand */
  --brand-cyan: #2FBFF2;
  --brand-blue: #1C7FCB;
  --brand-blue-dark: #123A63;
  --brand-navy: #0A1930;
  --brand-navy-2: #0F2745;
  --brand-navy-3: #142F52;

  /* neutrals */
  --bg: #eef1f5;
  --surface: #ffffff;
  --border: #e2e6ed;
  --text: #14202e;
  --text-soft: #55636f;
  --text-faint: #8993a1;

  /* semantic */
  --urgent: #e11c2e;
  --urgent-dark: #a5121f;
  --live: #17a54a;

  /* categories */
  --cat-cidade: #1C7FCB;
  --cat-brasil: #1c8a4b;
  --cat-mundo: #7a2ea6;
  --cat-policia: #b3141f;
  --cat-esportes: #e2711d;
  --cat-economia: #0c7d74;
  --cat-politica: #47566b;
  --cat-cultura: #c21e6d;

  /* type */
  --f-head: 'Archivo', 'Segoe UI', Arial, sans-serif;
  --f-body: 'Inter', 'Segoe UI', Arial, sans-serif;

  /* layout */
  --maxw: 1280px;
  --radius: 10px;
  --shadow-sm: 0 1px 3px rgba(10,25,48,.08);
  --shadow-md: 0 8px 24px rgba(10,25,48,.12);
  --shadow-lg: 0 20px 48px rgba(10,25,48,.18);
  --transition: .28s cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--f-body);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4,h5{ font-family: var(--f-head); margin:0; line-height:1.15; }
p{ margin:0 0 1em; }
button{ font-family: inherit; cursor:pointer; }
.container{ max-width: var(--maxw); margin:0 auto; padding:0 20px; }
.skip-link{ position:absolute; left:-999px; top:0; background:#fff; padding:10px 16px; z-index:999; }
.skip-link:focus{ left:10px; top:10px; }

/* ---------- reveal-on-scroll ---------- */
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform: translateY(0); }
.reveal-stagger > *{ transition-delay: calc(var(--i,0) * 70ms); }

/* ---------- skeleton shimmer ---------- */
.skeleton{ position:relative; overflow:hidden; background:#e7ebf1; }
.skeleton::after{
  content:''; position:absolute; inset:0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);
  transform: translateX(-100%);
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer{ 100%{ transform: translateX(100%); } }

/* =========================================================
   TOPBAR
   ========================================================= */
.topbar{
  background: var(--brand-navy);
  color: #b9c4d3;
  font-size: 12.5px;
}
.topbar .container{ display:flex; align-items:center; justify-content:space-between; height:36px; }
.topbar-left{ display:flex; align-items:center; gap:16px; }
.topbar-date{ text-transform: capitalize; }
.topbar-weather{ display:flex; align-items:center; gap:6px; color:#8fd1ff; }
.topbar-right{ display:flex; align-items:center; gap:14px; }
.topbar-social{ display:flex; gap:10px; }
.topbar-social a{ color:#b9c4d3; transition: color var(--transition); }
.topbar-social a:hover{ color: var(--brand-cyan); }
.topbar-social svg{ width:15px; height:15px; }
.topbar-link{ color:#b9c4d3; transition: color var(--transition); }
.topbar-link:hover{ color:#fff; }

@media (max-width: 767px){
  .topbar-date{ display:none; }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position: sticky; top:0; z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled{ box-shadow: var(--shadow-md); }
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 20px; transition: padding var(--transition);
  gap: 24px;
}
.site-header.scrolled .header-inner{ padding: 10px 20px; }
.logo img{ height:56px; transition: height var(--transition); width:auto; }
.site-header.scrolled .logo img{ height:40px; }

.header-actions{ display:flex; align-items:center; gap:18px; }
.icon-btn{
  width:40px; height:40px; border-radius:50%; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; background:#fff;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.icon-btn:hover{ background: var(--brand-blue); border-color: var(--brand-blue); color:#fff; transform: translateY(-2px); }
.icon-btn svg{ width:18px; height:18px; }

.search-box{ position:relative; display:flex; align-items:center; }
.search-box input{
  width:0; opacity:0; padding:0; border:none; outline:none;
  background: var(--bg); border-radius: 20px; height:40px; font-size:14px;
  transition: width var(--transition), opacity var(--transition), padding var(--transition);
}
.search-box.open input{ width:220px; opacity:1; padding:0 16px; margin-right:8px; }

.osl-search-form input{
  width:100%; height:48px; border-radius:24px; border:1px solid var(--border);
  background:#fff; padding:0 20px; font-size:14px; outline:none;
}
.osl-search-form input:focus{ border-color: var(--brand-blue); }

.hamburger{ display:none; flex-direction:column; gap:5px; width:40px; height:40px; align-items:center; justify-content:center; border:1px solid var(--border); border-radius:8px; background:#fff; }
.hamburger span{ width:20px; height:2px; background: var(--text); transition: var(--transition); }
.hamburger.active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity:0; }
.hamburger.active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Primary nav */
.primary-nav{ background: var(--brand-navy); }
.primary-nav .container{ display:flex; }
.primary-nav ul{ display:flex; align-items:stretch; flex-wrap:wrap; }
.primary-nav a{
  display:block; padding: 14px 18px; color:#dbe4ef; font-weight:600; font-size:14px;
  letter-spacing:.3px; text-transform:uppercase; position:relative; white-space:nowrap;
  transition: color var(--transition), background var(--transition);
}
.primary-nav a::after{
  content:''; position:absolute; left:18px; right:18px; bottom:0; height:3px;
  background: var(--brand-cyan); transform: scaleX(0); transform-origin:left;
  transition: transform var(--transition);
}
.primary-nav li.active a, .primary-nav li.current-menu-item a, .primary-nav li.current-menu-parent a, .primary-nav a:hover{ color:#fff; background: rgba(255,255,255,.05); }
.primary-nav li.active a::after, .primary-nav li.current-menu-item a::after, .primary-nav li.current-menu-parent a::after, .primary-nav a:hover::after{ transform: scaleX(1); }
.primary-nav li.destaque a{ color: var(--brand-cyan); }

@media (max-width: 991px){
  .hamburger{ display:flex; }
  .primary-nav{ position:fixed; inset:0 0 0 auto; width:min(320px,85vw); height:100vh;
    transform: translateX(100%); transition: transform var(--transition); overflow-y:auto; z-index:250; }
  .primary-nav.open{ transform: translateX(0); box-shadow: var(--shadow-lg); }
  .primary-nav .container{ padding:80px 0 40px; }
  .primary-nav ul{ flex-direction:column; }
  .primary-nav a{ padding:16px 24px; font-size:16px; }
  .nav-backdrop{ position:fixed; inset:0; background:rgba(6,14,28,.55); opacity:0; pointer-events:none; transition: opacity var(--transition); z-index:240; }
  .nav-backdrop.open{ opacity:1; pointer-events:auto; }
  .nav-close{ display:flex !important; position:absolute; top:20px; right:20px; }
}
.nav-close{ display:none; color:#fff; background:transparent; border-color: rgba(255,255,255,.35); font-size:16px; }
.nav-close:hover{ background: rgba(255,255,255,.12); }

/* =========================================================
   BREAKING TICKER
   ========================================================= */
.ticker{ background: var(--urgent); display:flex; align-items:stretch; overflow:hidden; }
.ticker-label{
  background: var(--urgent-dark); color:#fff; font-weight:800; text-transform:uppercase;
  font-size:12.5px; letter-spacing:.5px; padding:10px 18px; display:flex; align-items:center; gap:8px;
  flex-shrink:0;
}
.ticker-label .dot{ width:8px; height:8px; border-radius:50%; background:#fff; animation: pulse 1.4s infinite; }
@keyframes pulse{ 0%,100%{ opacity:1; } 50%{ opacity:.25; } }
.ticker-track-wrap{ overflow:hidden; flex:1; position:relative; }
.ticker-track{ display:flex; gap:60px; white-space:nowrap; padding:10px 0; animation: scrollTicker 32s linear infinite; width:max-content; }
.ticker-track a{ color:#fff; font-size:13.5px; font-weight:600; }
.ticker:hover .ticker-track{ animation-play-state: paused; }
@keyframes scrollTicker{ 0%{ transform: translateX(0);} 100%{ transform: translateX(-50%);} }

/* =========================================================
   LAYOUT / GRID
   ========================================================= */
.page-grid{ display:grid; grid-template-columns: 1fr 340px; gap:34px; padding: 34px 0 60px; }
@media (max-width: 991px){ .page-grid{ grid-template-columns: 1fr; } }

.section-head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; }
.section-head h2{
  font-size:22px; font-weight:900; text-transform:uppercase; letter-spacing:.3px;
  padding-left:14px; border-left:6px solid var(--brand-blue); color:var(--text);
}
.section-head.cidade h2{ border-color: var(--cat-cidade); }
.section-head.brasil h2{ border-color: var(--cat-brasil); }
.section-head.mundo h2{ border-color: var(--cat-mundo); }
.section-head.policia h2{ border-color: var(--cat-policia); }
.section-head.esportes h2{ border-color: var(--cat-esportes); }
.section-head.economia h2{ border-color: var(--cat-economia); }
.section-head a.ver-mais{
  font-size:13px; font-weight:700; text-transform:uppercase; color: var(--text-soft);
  display:flex; align-items:center; gap:6px; transition: color var(--transition), gap var(--transition);
}
.section-head a.ver-mais:hover{ color: var(--brand-blue); gap:10px; }

section.editoria{ margin-bottom:46px; }

/* =========================================================
   HERO
   ========================================================= */
.hero{ display:grid; grid-template-columns: 1.5fr 1fr; gap:20px; margin: 28px 0 44px; }
.hero-main{
  position:relative; border-radius: var(--radius); overflow:hidden; min-height:460px;
  display:block; box-shadow: var(--shadow-md);
}
.hero-main img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.hero-main:hover img{ transform: scale(1.06); }
.hero-main::before{
  content:''; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(6,14,28,0) 30%, rgba(6,14,28,.92) 100%);
}
.hero-main-content{ position:absolute; left:0; right:0; bottom:0; z-index:2; padding:32px; color:#fff; max-height:100%; overflow:hidden; box-sizing:border-box; }
.hero-main .tag{ margin-bottom:14px; }
.hero-main h1{ font-size:34px; font-weight:800; margin-bottom:10px; }
.hero-main p.dek{ color:#dbe4ef; font-size:15px; max-width:80%; }
.hero-meta{ display:flex; gap:16px; margin-top:14px; font-size:12.5px; color:#c3cede; }

.hero-side{ display:flex; flex-direction:column; gap:16px; }
.hero-side-item{ display:flex; gap:14px; position:relative; }
.hero-side-item .thumb{ width:130px; height:90px; border-radius:8px; overflow:hidden; flex-shrink:0; box-shadow: var(--shadow-sm); }
.hero-side-item .thumb img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.hero-side-item:hover .thumb img{ transform: scale(1.1); }
.hero-side-item h3{ font-size:15px; font-weight:700; line-height:1.35; }
.hero-side-item h3 a{ background-image: linear-gradient(var(--brand-blue), var(--brand-blue)); background-size:0 2px; background-repeat:no-repeat; background-position:left bottom; transition: background-size var(--transition); }
.hero-side-item:hover h3 a{ background-size:100% 2px; }
.hero-side-item .cat-label{ font-size:11px; font-weight:800; text-transform:uppercase; margin-bottom:4px; display:block; }

@media (max-width: 991px){
  .hero{ grid-template-columns:1fr; }
  .hero-main{ min-height:400px; }
  .hero-main p.dek{ max-width:100%; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
}
@media (max-width: 480px){
  .hero-side-item .thumb{ width:100px; height:76px; }
  .hero-main{ min-height:420px; }
  .hero-main-content{ padding:22px; }
  .hero-main h1{ font-size:22px; }
  .hero-main p.dek{ font-size:13.5px; -webkit-line-clamp:2; }
  .hero-meta{ flex-wrap:wrap; row-gap:4px; }
}

/* =========================================================
   TAGS / CATEGORY LABELS
   ========================================================= */
.tag{
  display:inline-block; font-size:11px; font-weight:800; text-transform:uppercase;
  letter-spacing:.4px; color:#fff; padding:4px 10px; border-radius:4px;
}
.tag.cidade{ background: var(--cat-cidade); }
.tag.brasil{ background: var(--cat-brasil); }
.tag.mundo{ background: var(--cat-mundo); }
.tag.policia{ background: var(--cat-policia); }
.tag.esportes{ background: var(--cat-esportes); }
.tag.economia{ background: var(--cat-economia); }
.tag.politica{ background: var(--cat-politica); }
.tag.cultura{ background: var(--cat-cultura); }
.tag.ao-vivo{ background: var(--urgent); }

/* =========================================================
   NEWS CARDS / GRID
   ========================================================= */
.news-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:22px; }
.news-grid.cols-4{ grid-template-columns: repeat(4,1fr); }
@media (max-width: 991px){ .news-grid, .news-grid.cols-4{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .news-grid, .news-grid.cols-4{ grid-template-columns: 1fr; } }

.card{
  background: var(--surface); border-radius: var(--radius); overflow:hidden;
  box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition);
  display:flex; flex-direction:column;
}
.card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card .thumb{ position:relative; aspect-ratio: 16/10; overflow:hidden; }
.card .thumb img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.card:hover .thumb img{ transform: scale(1.08); }
.card .thumb .tag{ position:absolute; left:12px; top:12px; }
.card-body{ padding:16px; display:flex; flex-direction:column; gap:8px; flex:1; }
.card-body h3{ font-size:16.5px; font-weight:700; line-height:1.35; }
.card-body h3 a:hover{ color: var(--brand-blue); }
.card-body p{ font-size:13.5px; color: var(--text-soft); margin:0; }
.card-meta{ margin-top:auto; display:flex; gap:10px; font-size:11.5px; color: var(--text-faint); padding-top:8px; border-top:1px dashed var(--border); }

.card.horizontal{ flex-direction:row; }
.card.horizontal .thumb{ width:42%; aspect-ratio:auto; }
.card.horizontal .card-body{ width:58%; }

.card.compact{ flex-direction:row; align-items:center; box-shadow:none; background:transparent; border-bottom:1px solid var(--border); border-radius:0; padding-bottom:14px; margin-bottom:14px; }
.card.compact:hover{ transform:none; }
.card.compact .thumb{ width:96px; height:72px; border-radius:8px; flex-shrink:0; }
.card.compact .card-body{ padding:0 0 0 14px; gap:4px; }
.card.compact h3{ font-size:14px; }

/* =========================================================
   MAIS LIDAS (ranked list)
   ========================================================= */
.widget{ background:#fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding:20px; margin-bottom:24px; }
.widget-title{
  font-size:15px; font-weight:900; text-transform:uppercase; letter-spacing:.3px;
  margin-bottom:16px; padding-bottom:12px; border-bottom:2px solid var(--brand-navy);
  display:flex; align-items:center; gap:8px;
}
.ranked-list li{ display:flex; gap:14px; padding:12px 0; border-bottom:1px solid var(--border); }
.ranked-list li:last-child{ border:none; padding-bottom:0; }
.ranked-list .num{
  font-family: var(--f-head); font-size:26px; font-weight:900; color: var(--border);
  -webkit-text-stroke: 1px var(--brand-blue); width:32px; flex-shrink:0; line-height:1;
}
.ranked-list li:nth-child(1) .num, .ranked-list li:nth-child(2) .num, .ranked-list li:nth-child(3) .num{
  color: var(--brand-blue); -webkit-text-stroke:0;
}
.ranked-list h4{ font-size:13.5px; font-weight:700; line-height:1.35; }
.ranked-list h4 a:hover{ color: var(--brand-blue); }

/* Newsletter widget */
.widget.newsletter{ background: linear-gradient(135deg, var(--brand-navy), var(--brand-blue-dark)); color:#fff; }
.widget.newsletter .widget-title{ border-color: rgba(255,255,255,.25); color:#fff; }
.widget.newsletter p{ font-size:13px; color:#c3cede; }
.newsletter-form{ display:flex; gap:8px; margin-top:10px; }
.newsletter-form input{ flex:1; border:none; border-radius:6px; padding:11px 12px; font-size:13px; outline:none; }
.newsletter-form button{
  background: var(--brand-cyan); color:#04202f; border:none; border-radius:6px; padding:0 16px;
  font-weight:800; font-size:13px; transition: filter var(--transition);
}
.newsletter-form button:hover{ filter: brightness(1.1); }

/* Ad placeholder */
.ad-slot{
  background: repeating-linear-gradient(45deg,#f1f3f7,#f1f3f7 10px,#e9ecf1 10px,#e9ecf1 20px);
  border:1px dashed var(--border); border-radius: var(--radius); display:flex; align-items:center;
  justify-content:center; color: var(--text-faint); font-size:12px; text-transform:uppercase;
  letter-spacing:.5px; height:250px; margin-bottom:24px;
}

/* =========================================================
   INSTAGRAM WIDGET (fallback / preview of plugin area)
   ========================================================= */
.widget.instagram .widget-title svg{ width:18px; height:18px; }
.insta-handle{ display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.insta-handle .avatar{
  width:44px; height:44px; border-radius:50%; padding:2px;
  background: linear-gradient(135deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5);
}
.insta-handle .avatar img{ border-radius:50%; border:2px solid #fff; }
.insta-handle strong{ font-size:13.5px; display:block; }
.insta-handle span{ font-size:12px; color: var(--text-soft); }
.insta-follow{ margin-left:auto; font-size:12px; font-weight:700; color: var(--brand-blue); border:1px solid var(--brand-blue); padding:6px 12px; border-radius:20px; transition: var(--transition); }
.insta-follow:hover{ background: var(--brand-blue); color:#fff; }
.insta-grid{ display:grid; grid-template-columns: repeat(3,1fr); gap:6px; }
.insta-grid a{ position:relative; aspect-ratio:1/1; overflow:hidden; border-radius:6px; display:block; }
.insta-grid img{ width:100%; height:100%; object-fit:cover; transition: transform var(--transition); }
.insta-grid a:hover img{ transform: scale(1.12); }
.insta-grid a::after{
  content:''; position:absolute; inset:0; background: rgba(10,25,48,0); transition: background var(--transition);
}
.insta-grid a:hover::after{ background: rgba(10,25,48,.25); }
.insta-grid .ic{
  position:absolute; top:6px; right:6px; color:#fff; filter: drop-shadow(0 1px 2px rgba(0,0,0,.5)); width:16px; height:16px;
}
.insta-note{ font-size:11px; color: var(--text-faint); margin-top:12px; text-align:center; }

/* =========================================================
   INSTAGRAM — FAIXA EM DESTAQUE (home)
   ========================================================= */
.insta-feature{
  position:relative; margin: 8px 0 46px; padding:28px 28px 30px; border-radius: 16px;
  background: var(--brand-navy);
  overflow:hidden;
}
.insta-feature::before{
  content:''; position:absolute; inset:0; opacity:.9;
  background: linear-gradient(120deg,#4f5bd5 0%,#962fbf 28%,#d62976 52%,#fa7e1e 76%,#feda75 100%);
}
.insta-feature::after{
  content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(6,14,28,.55), rgba(6,14,28,.86));
}
.insta-feature-inner{ position:relative; z-index:2; }
.insta-feature-head{ display:flex; align-items:center; gap:20px; flex-wrap:wrap; margin-bottom:22px; }
.insta-feature-account{ display:flex; align-items:center; gap:16px; }
.insta-feature-account .avatar-lg{
  width:72px; height:72px; border-radius:50%; padding:3px; flex-shrink:0;
  background: linear-gradient(135deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5);
}
.insta-feature-account .avatar-lg img{ width:100%; height:100%; border-radius:50%; border:3px solid #0A1930; object-fit:cover; }
.insta-feature-account strong{ display:block; color:#fff; font-size:20px; font-family:var(--f-head); font-weight:800; }
.insta-feature-account span{ display:block; color:#e4e9f2; font-size:13.5px; margin-top:2px; }
.insta-feature-follow{
  margin-left:auto; background:#fff; color:#0A1930; font-weight:800; font-size:14px;
  padding:12px 26px; border-radius:26px; display:flex; align-items:center; gap:8px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
.insta-feature-follow:hover{ transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 24px rgba(0,0,0,.32); }
.insta-feature-follow svg{ width:18px; height:18px; }
.insta-feature-grid{ display:grid; grid-template-columns: repeat(6,1fr); gap:14px; }
.insta-feature-grid a{
  position:relative; aspect-ratio:1/1; overflow:hidden; border-radius:12px; display:block;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}
.insta-feature-grid img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.insta-feature-grid a:hover img{ transform: scale(1.12); }
.insta-feature-grid a::after{ content:''; position:absolute; inset:0; background: rgba(6,14,28,0); transition: background var(--transition); }
.insta-feature-grid a:hover::after{ background: rgba(6,14,28,.2); }
.insta-feature-grid .ic{ position:absolute; top:10px; right:10px; width:20px; height:20px; color:#fff; filter: drop-shadow(0 1px 3px rgba(0,0,0,.6)); }
.insta-feature-grid .play{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.insta-feature-grid .play svg{ width:38px; height:38px; color:#fff; filter: drop-shadow(0 2px 6px rgba(0,0,0,.5)); }

@media (max-width: 991px){
  .insta-feature-grid{ grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 640px){
  .insta-feature{ padding:22px 18px 24px; }
  .insta-feature-grid{ grid-template-columns: repeat(3,1fr); gap:8px; }
  .insta-feature-follow{ margin-left:0; width:100%; justify-content:center; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: var(--brand-navy); color:#aab6c6; margin-top:20px; }
.footer-top{ padding:50px 0 30px; display:grid; grid-template-columns: 1.4fr repeat(3,1fr); gap:30px; }
.footer-brand img{ height:70px; margin-bottom:14px; }
.footer-brand p{ font-size:13.5px; line-height:1.6; color:#93a1b3; }
.footer-social{ display:flex; gap:10px; margin-top:16px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%; border:1px solid #24344d; display:flex; align-items:center;
  justify-content:center; transition: var(--transition);
}
.footer-social a:hover{ background: var(--brand-cyan); border-color:var(--brand-cyan); color:#04202f; transform: translateY(-3px); }
.footer-social svg{ width:16px; height:16px; }
.footer-col h5{ color:#fff; font-size:14px; text-transform:uppercase; letter-spacing:.4px; margin-bottom:16px; }
.footer-col ul li{ margin-bottom:10px; }
.footer-col a{ font-size:13.5px; transition: color var(--transition), padding var(--transition); }
.footer-col a:hover{ color:#fff; padding-left:4px; }
.footer-bottom{
  border-top:1px solid #1c2c45; padding:18px 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:12px; color:#7788a0;
}
.footer-bottom a:hover{ color:#fff; }
@media (max-width: 900px){ .footer-top{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-top{ grid-template-columns: 1fr; } }

/* Back to top */
.back-to-top{
  position:fixed; right:22px; bottom:22px; width:46px; height:46px; border-radius:50%;
  background: var(--brand-blue); color:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-md); opacity:0; pointer-events:none; transform: translateY(10px);
  transition: var(--transition); z-index:150; border:none;
}
.back-to-top.show{ opacity:1; pointer-events:auto; transform:none; }
.back-to-top:hover{ background: var(--brand-navy); }

/* =========================================================
   BREADCRUMB
   ========================================================= */
.breadcrumb{ font-size:13px; color: var(--text-soft); padding:16px 0; display:flex; gap:8px; flex-wrap:wrap; }
.breadcrumb a:hover{ color: var(--brand-blue); }

/* =========================================================
   ARTICLE PAGE
   ========================================================= */
.article-head{ max-width:820px; margin:0 auto 24px; text-align:left; }
.article-head h1{ font-size:36px; font-weight:800; margin: 14px 0 16px; line-height:1.2; }
.article-dek{ font-size:18px; color: var(--text-soft); margin-bottom:18px; }
.article-meta{ display:flex; align-items:center; gap:16px; flex-wrap:wrap; padding:16px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); font-size:13px; color: var(--text-soft); }
.article-meta .author{ display:flex; align-items:center; gap:10px; }
.article-meta .author img{ width:38px; height:38px; border-radius:50%; }
.article-meta .author strong{ display:block; color:var(--text); font-size:13.5px; }
.share-buttons{ display:flex; gap:8px; margin-left:auto; }
.share-buttons a{
  width:34px; height:34px; border-radius:50%; border:1px solid var(--border); display:flex;
  align-items:center; justify-content:center; transition: var(--transition);
}
.share-buttons a:hover{ background: var(--brand-blue); border-color: var(--brand-blue); color:#fff; }
.share-buttons svg{ width:15px; height:15px; }

.article-cover{ max-width:960px; margin: 24px auto; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow-md); }
.article-cover figcaption{ font-size:12.5px; color: var(--text-faint); padding:10px 4px 0; }

.article-body{ max-width:760px; margin:0 auto; font-size:17.5px; line-height:1.85; color:#28313d; }
.article-body p{ margin-bottom:1.3em; }
.article-body h2{ font-size:24px; margin:1.6em 0 .6em; font-weight:800; }
.article-body blockquote{
  margin: 2em 0; padding: 4px 0 4px 24px; border-left:4px solid var(--brand-blue);
  font-size:20px; font-style:italic; color: var(--brand-navy); font-family: var(--f-head); font-weight:600;
}
.article-body img{ border-radius:8px; margin: 1.5em 0; }
.article-tags{ max-width:760px; margin: 30px auto; display:flex; gap:10px; flex-wrap:wrap; }
.article-tags a{ background:#fff; border:1px solid var(--border); padding:7px 14px; border-radius:20px; font-size:12.5px; font-weight:600; transition: var(--transition); }
.article-tags a:hover{ background: var(--brand-navy); color:#fff; border-color: var(--brand-navy); }

.related-block{ max-width:960px; margin: 40px auto 0; }

@media (max-width: 767px){
  .article-head h1{ font-size:26px; }
  .article-body{ font-size:16.5px; }
  .article-meta{ gap:10px; }
  .share-buttons{ width:100%; margin-left:0; justify-content:flex-start; }
}

/* =========================================================
   PAGINATION
   ========================================================= */
.pagination{ display:flex; justify-content:center; gap:8px; margin-top:30px; }
.pagination a, .pagination span{
  width:40px; height:40px; border-radius:8px; display:flex; align-items:center; justify-content:center;
  background:#fff; border:1px solid var(--border); font-weight:700; font-size:13.5px; transition: var(--transition);
}
.pagination a:hover{ background: var(--brand-blue); color:#fff; border-color: var(--brand-blue); }
.pagination .current{ background: var(--brand-navy); color:#fff; border-color: var(--brand-navy); }

/* =========================================================
   PAGE HEADER (category page)
   ========================================================= */
.page-header{ padding: 10px 0 20px; border-bottom:4px solid var(--brand-navy); margin-bottom:26px; }
.page-header h1{ font-size:30px; font-weight:900; text-transform:uppercase; }
.page-header p{ color: var(--text-soft); margin-top:6px; }
.page-header.cidade{ border-color: var(--cat-cidade); }
.page-header.esportes{ border-color: var(--cat-esportes); }
.page-header.policia{ border-color: var(--cat-policia); }

/* Utility */
.mt-0{ margin-top:0; }
.text-center{ text-align:center; }

/* =========================================================
   COMENTÁRIOS
   ========================================================= */
.comments-area{ max-width:760px; margin: 40px auto 0; }
.comments-title{ font-size:20px; font-weight:800; margin-bottom:20px; text-transform:uppercase; }
.comment-list{ margin:0 0 30px; }
.comment-list, .comment-list .children{ list-style:none; }
.comment-list .children{ margin-left:40px; padding-left:20px; border-left:2px solid var(--border); }
.comment-list > li{ background:#fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding:18px; margin-bottom:14px; }
.comment-author .avatar{ border-radius:50%; margin-right:10px; vertical-align:middle; }
.comment-metadata{ font-size:12px; color: var(--text-faint); }
.comment-content p{ font-size:14.5px; color:#28313d; }
.comment-reply-link{ font-size:12.5px; font-weight:700; color: var(--brand-blue); }
.comment-respond input[type="text"], .comment-respond input[type="email"], .comment-respond input[type="url"], .comment-respond textarea{
  width:100%; border:1px solid var(--border); border-radius:8px; padding:11px 14px; font-size:14px; font-family:var(--f-body); margin-bottom:14px; outline:none;
}
.comment-respond textarea{ min-height:120px; }
.comment-respond input:focus, .comment-respond textarea:focus{ border-color: var(--brand-blue); }
.comment-respond .form-submit input{
  width:auto; background: var(--brand-blue); color:#fff; border:none; padding:12px 26px; border-radius:8px;
  font-weight:700; cursor:pointer; transition: var(--transition);
}
.comment-respond .form-submit input:hover{ background: var(--brand-navy); }
.comment-reply-title{ font-size:20px; font-weight:800; margin-bottom:14px; }
