:root{
  --bg:#07090c;
  --panel:#0c1118;
  --panel2:#0a0f15;
  --text:#e9eef7;
  --muted:#9bb0c7;
  --line:rgba(255,255,255,.10);
  --accent:#d10000;
  --accent2:#ff3b3b;
  --ok:#2dd4bf;
  --warn:#f59e0b;
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:radial-gradient(1200px 700px at 15% 10%, rgba(209,0,0,.18), transparent 55%),
             radial-gradient(900px 600px at 85% 15%, rgba(45,212,191,.10), transparent 55%),
             var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}

.container{width:min(1240px, calc(100% - 40px)); margin:0 auto;}

.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(7,9,12,.75);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header-row{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0;}
.brand{display:flex; align-items:center; gap:10px; min-width:220px;}
.logo{width:34px; height:34px;}
.brand-name{font-weight:900; letter-spacing:.3px}
.brand-accent{color:var(--accent2)}
.brand-sub{font-size:12px; color:var(--muted)}

.nav{display:flex; gap:16px; align-items:center;}
.nav a{font-weight:600; color:rgba(233,238,247,.88)}
.nav a:hover{color:#fff}
.nav-cta{padding:10px 12px; border:1px solid rgba(209,0,0,.55); border-radius:999px; background:rgba(209,0,0,.12)}
.nav-toggle{display:none; border:1px solid var(--line); background:rgba(255,255,255,.05); color:var(--text); padding:10px 12px; border-radius:12px; font-weight:800;}

.mobile-nav{display:none; border-top:1px solid var(--line); padding:10px 16px 14px;}
.mobile-nav a{display:block; padding:10px 8px; border-radius:12px; color:rgba(233,238,247,.9); font-weight:700}
.mobile-nav a:hover{background:rgba(255,255,255,.06)}

.hero{padding:34px 0 10px;}
.hero-grid{display:grid; grid-template-columns: 1.15fr .85fr; gap:24px; align-items:center;}
.hero h1{font-size: clamp(34px, 4vw, 50px); line-height:1.05; margin:14px 0 10px; letter-spacing:-.8px;}
.lead{color:rgba(233,238,247,.86); font-size:16px; line-height:1.6; max-width:58ch}
.hero-actions{display:flex; gap:12px; margin:18px 0 10px; flex-wrap:wrap}

.ticker{
  display:inline-flex; gap:10px; align-items:center;
  padding:10px 12px; border:1px solid rgba(209,0,0,.35);
  border-radius:999px; background:rgba(209,0,0,.12);
  color:#fff;
}
.ticker-dot{width:9px; height:9px; border-radius:999px; background:var(--accent2); box-shadow:0 0 16px rgba(255,59,59,.9)}

.hero-art{border:1px solid var(--line); border-radius:var(--radius); background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)); padding:18px;}
.hero-art img{width:100%; height:auto; display:block; opacity:.95}

.stats{
  margin-top:12px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
}
.stat{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:16px;
  padding:12px;
}
.stat-num{font-size:26px; font-weight:900; letter-spacing:-.5px}
.stat-label{font-size:12px; color:var(--muted); margin-top:2px}
.stat-note{grid-column:1/-1; font-size:12px; color:rgba(155,176,199,.85)}

.section{padding:34px 0;}
.section.alt{background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)); border-top:1px solid rgba(255,255,255,.04); border-bottom:1px solid rgba(255,255,255,.04);}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:14px; margin-bottom:14px;}
.section-head h2{margin:0; font-size:22px; letter-spacing:-.2px}
.section-head p{margin:0; color:var(--muted); max-width:70ch}

.grid{display:grid; gap:12px;}
.cards{grid-template-columns: repeat(3, minmax(0, 1fr));}

.card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  border-radius:var(--radius);
  padding:14px;
  overflow:hidden;
  position:relative;
}
.card h3{margin:8px 0 6px; font-size:16px; letter-spacing:-.2px}
.card p{margin:0; color:rgba(233,238,247,.82); line-height:1.55; font-size:13px}

.pill{display:inline-flex; align-items:center; gap:8px; font-size:12px; font-weight:800; padding:6px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.06)}
.pill-danger{border-color:rgba(255,59,59,.35); background:rgba(255,59,59,.10)}
.pill-warn{border-color:rgba(245,158,11,.35); background:rgba(245,158,11,.12)}
.pill-ok{border-color:rgba(45,212,191,.35); background:rgba(45,212,191,.10)}

.time{font-size:12px; color:rgba(155,176,199,.95)}

.btn{display:inline-flex; align-items:center; justify-content:center; gap:10px; border-radius:14px; padding:12px 14px; font-weight:900; border:1px solid transparent; cursor:pointer;}
.btn-primary{background:linear-gradient(180deg, rgba(255,59,59,.95), rgba(209,0,0,.92)); border-color:rgba(255,59,59,.40)}
.btn-primary:hover{filter:brightness(1.05)}
.btn-ghost{background:rgba(255,255,255,.05); border-color:rgba(255,255,255,.12)}
.btn-ghost:hover{background:rgba(255,255,255,.08)}
.btn-small{padding:10px 12px; border-radius:12px; font-weight:800; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12)}

.cta-strip{margin-top:14px; display:flex; gap:14px; align-items:center; justify-content:space-between; padding:14px; border-radius:var(--radius); border:1px solid rgba(209,0,0,.25); background:linear-gradient(90deg, rgba(209,0,0,.18), rgba(255,255,255,.03));}
.cta-strip h3{margin:0 0 4px; letter-spacing:-.2px}
.cta-strip p{margin:0; color:rgba(233,238,247,.84)}

.two-col{display:grid; grid-template-columns: 1.2fr .8fr; gap:14px; align-items:start;}

.panel{border:1px solid var(--line); background:rgba(255,255,255,.04); border-radius:var(--radius); padding:14px;}
.panel-head{display:flex; justify-content:space-between; align-items:center; gap:10px; margin-bottom:10px}
.panel-head h3{margin:0}
.muted{color:var(--muted); font-size:12px}

.top3{display:grid; gap:10px}
.top3 .row{display:flex; gap:12px; align-items:center; padding:10px 12px; border:1px solid rgba(255,255,255,.10); border-radius:16px; background:rgba(0,0,0,.12)}
.badge{width:36px; height:36px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-weight:900; border:1px solid rgba(255,255,255,.10)}
.badge.g{background:rgba(255,215,0,.12)}
.badge.s{background:rgba(192,192,192,.12)}
.badge.b{background:rgba(205,127,50,.12)}

.rank .row{display:flex; justify-content:space-between; gap:10px; padding:10px 12px; border-bottom:1px solid rgba(255,255,255,.06)}
.rank .row:last-child{border-bottom:none}
.rank .k{display:flex; gap:10px; align-items:center}
.rank .dot{width:10px; height:10px; border-radius:999px; background:rgba(255,255,255,.20)}

.aside{border:1px solid rgba(255,255,255,.08); border-radius:var(--radius); background:rgba(255,255,255,.02); padding:14px; position:sticky; top:86px;}
.aside h3{margin:0 0 10px}
.check{margin:0; padding-left:18px; color:rgba(233,238,247,.86)}
.check li{margin:8px 0}
.aside-box{margin-top:12px; padding:12px; border-radius:16px; border:1px solid rgba(255,255,255,.08); background:rgba(0,0,0,.12)}
.aside-box h4{margin:0 0 8px}
.aside-box ol{margin:0; padding-left:18px; color:rgba(233,238,247,.86)}

.news-controls{display:flex; gap:10px; align-items:center; flex-wrap:wrap; margin-bottom:12px}
.chip{border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.05); color:rgba(233,238,247,.92); padding:10px 12px; border-radius:999px; font-weight:900; cursor:pointer}
.chip.is-active{border-color:rgba(255,59,59,.45); background:rgba(255,59,59,.12)}
.news-meta{margin-left:auto; display:flex; gap:12px; align-items:center; font-size:12px; color:rgba(233,238,247,.86)}

.news{grid-template-columns: repeat(3, minmax(0, 1fr));}
.news-card{
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  overflow:hidden;
  position:relative;
  background: rgba(255,255,255,.04);
  padding: 0;
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.news-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.40);
}
.news-card .inner{
  position:relative;
  padding:14px;
  height:100%;
  display:flex;
  flex-direction:column;
  gap:8px;
  backdrop-filter: blur(6px);
}

.news-card .top{display:flex; justify-content:space-between; gap:10px; align-items:center}
.news-card h3{margin:0; font-size:15px; line-height:1.25; text-shadow:0 2px 12px rgba(0,0,0,.70)}
.news-card p{margin:0; color:rgba(255,255,255,.88); font-size:12.5px; line-height:1.45; text-shadow:0 2px 10px rgba(0,0,0,.65)}
.news-card .meta{margin-top:auto; display:flex; justify-content:space-between; gap:10px; align-items:center; color:rgba(255,255,255,.82); font-size:12px}

.link{color:#fff; font-weight:900; text-decoration:underline; text-underline-offset:3px}

.steps{display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:12px}
.step{border:1px solid var(--line); border-radius:var(--radius); background:rgba(255,255,255,.04); padding:14px}
.step-icon{width:34px; height:34px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-weight:900; border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.05)}
.step h3{margin:10px 0 6px}
.step p{margin:0; color:rgba(233,238,247,.84); line-height:1.55}

.form-box{border:1px solid rgba(255,255,255,.10); border-radius:var(--radius); background:rgba(255,255,255,.04); padding:14px; margin-bottom:12px}
.form-box h3{margin:0 0 8px}
.form-row{display:grid; gap:6px; margin:10px 0}
label{font-size:12px; color:rgba(233,238,247,.86); font-weight:700}
select{width:100%; padding:12px 12px; border-radius:14px; border:1px solid rgba(255,255,255,.14); background:rgba(0,0,0,.24); color:var(--text)}

.btn-row{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}

.checkbox{display:flex; gap:10px; align-items:flex-start; font-size:13px; color:rgba(233,238,247,.86)}
.checkbox input{margin-top:3px}
.consent{padding:10px 12px; border-radius:16px; border:1px solid rgba(255,255,255,.10); background:rgba(0,0,0,.14)}

.tiny{font-size:12px; color:rgba(155,176,199,.92)}

.faq{border:1px solid rgba(255,255,255,.10); border-radius:16px; background:rgba(255,255,255,.03); padding:12px; margin:10px 0}
.faq summary{cursor:pointer; font-weight:900}
.faq p{margin:10px 0 0; color:rgba(233,238,247,.84); line-height:1.6}

.note{margin-top:12px; padding:12px; border-radius:16px; border:1px solid rgba(255,255,255,.10); background:rgba(0,0,0,.12); color:rgba(233,238,247,.86); line-height:1.6}

.footer{padding:26px 0; border-top:1px solid rgba(255,255,255,.08); background:rgba(0,0,0,.18)}
.footer-grid{display:grid; grid-template-columns: 1fr auto; gap:14px; align-items:center}
.footer-brand{display:flex; gap:10px; align-items:center}
.footer-logo{width:28px; height:28px; opacity:.95}
.footer-links{display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end}
.footer-links a{color:rgba(233,238,247,.84); font-weight:800}
.footer-links a:hover{color:#fff}
.footer-note{color:rgba(155,176,199,.90); font-size:12px}

.toast{position:fixed; right:16px; bottom:16px; z-index:70; padding:12px 14px; border-radius:16px; border:1px solid rgba(255,255,255,.14); background:rgba(0,0,0,.55); backdrop-filter: blur(10px); color:#fff; font-weight:900}

@media (max-width: 900px){
  .stats{grid-template-columns: 1fr;}
  .btn{width:100%; justify-content:center;}

  .hero-grid{grid-template-columns: 1fr;}
  .cards{grid-template-columns: 1fr;}
  .news{grid-template-columns: 1fr;}
  .two-col{grid-template-columns: 1fr;}
  .aside{position:relative; top:auto;}
  .steps{grid-template-columns: 1fr;}
  .nav{display:none}
  .nav-toggle{display:inline-flex}
  .mobile-nav{display:block}
}


@media (max-width: 600px){
  .container{width:calc(100% - 24px);}
  .header-row{padding:10px 0;}
  .brand{min-width:0;}
  .logo{width:30px; height:30px;}
  .brand-sub{display:none;}
  .nav-toggle{padding:9px 11px; border-radius:12px;}
  .hero{padding:22px 0 8px;}
  .lead{font-size:15px;}
  .stats{grid-template-columns: 1fr;}
  .stat-num{font-size:24px;}
  .section{padding:24px 0;}
  .section-title{font-size:22px;}
  .card{padding:14px;}
  .btn{width:100%; justify-content:center;}
  .hero-actions{gap:10px;}
  .mobile-nav{padding:10px 12px 14px;}
}


.footer-contact{
  margin-top: 10px;
  font-size: 14px;
  opacity: .92;
}
.footer-contact a{ text-decoration: underline; }


/* --- Notícias: abas sem JavaScript (CSS Tabs) --- */
.tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.tabs input[type="radio"]{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.tabs .chip{
  cursor:pointer;
  user-select:none;
}
.tabs .tab-panels{
  width:100%;
  margin-top: 12px;
}
.tabs .panel{ display:none; width:100%; }
#tab-golpes:checked ~ label[for="tab-golpes"],
#tab-vagas:checked ~ label[for="tab-vagas"],
#tab-concursos:checked ~ label[for="tab-concursos"]{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
}
#tab-golpes:checked ~ .tab-panels #panel-golpes{ display:block; }
#tab-vagas:checked ~ .tab-panels #panel-vagas{ display:block; }
#tab-concursos:checked ~ .tab-panels #panel-concursos{ display:block; }

/* --- v29: Notícias estilo portal (imagem no topo + texto abaixo) --- */
.grid.news{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}
.news-card{
  display:flex;
  flex-direction:column;
  gap: 10px;
}
.news-thumb{
  width:100%;
  aspect-ratio: 16 / 9;
  height:auto;
  border-radius:14px;
  overflow:hidden;
}
.news-thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  object-position:center;
}
.news-body h3{ font-size:17px; line-height:1.25; }
.news-body p{ font-size:14px; line-height:1.35; }
@media (max-width:600px){
  .grid.news{ grid-template-columns: 1fr; }
}

.note-fallback{ margin-top: 12px; }



/* --- v33: Reset seguro (somente seção Notícias) --- */
#noticias .tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
#noticias .tabs input[type="radio"]{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
#noticias .tabs .chip{ cursor:pointer; user-select:none; }
#noticias .tabs .tab-panels{ width:100%; margin-top:12px; }
#noticias .tabs .panel{ display:none; width:100%; }
#tab-golpes:checked ~ label[for="tab-golpes"],
#tab-vagas:checked ~ label[for="tab-vagas"],
#tab-concursos:checked ~ label[for="tab-concursos"]{
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
}
#tab-golpes:checked ~ .tab-panels #panel-golpes{ display:block; }
#tab-vagas:checked ~ .tab-panels #panel-vagas{ display:block; }
#tab-concursos:checked ~ .tab-panels #panel-concursos{ display:block; }

#noticias .grid.news{
  display:grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap:14px !important;
}
#noticias .news-card{
  display:flex !important;
  flex-direction:column !important;
  gap:10px !important;
}
#noticias .news-thumb{
  width:100% !important;
  aspect-ratio:16/9 !important;
  border-radius:14px !important;
  overflow:hidden !important;
}
#noticias .news-thumb img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center !important;
  display:block !important;
}
#noticias .news-body h3{ font-size:17px !important; line-height:1.25 !important; margin:0 0 6px !important; }
#noticias .news-body p{ font-size:14px !important; line-height:1.35 !important; margin:0 0 10px !important; opacity:.92 !important; }
#noticias .news-meta-row{ display:flex !important; gap:8px !important; flex-wrap:wrap !important; }

@media (max-width:600px){
  #noticias .grid.news{ grid-template-columns:1fr !important; }
}



/* --- v34: Notícias (cards padrão portal, sem fundo gigante) --- */
#noticias .news-card{
  background: rgba(255,255,255,.06) !important;
  background-image: none !important;
  position: relative !important;
  min-height: auto !important;
  overflow: hidden !important;
}


/* --- v35: Garantia de thumb visível --- */
#noticias .news-thumb{ aspect-ratio:16/9 !important; height:auto !important; }
#noticias .news-card.card{ padding:0 !important; }
#noticias .news-body{ padding: 12px 14px 14px !important; }


/* --- v36: reduzir thumbs das notícias (evitar imagens gigantes) --- */
#noticias .news-thumb{
  height: 170px !important;
  aspect-ratio: auto !important;
}
@media (max-width: 600px){
  #noticias .news-thumb{ height: 190px !important; }
}


/* --- v37: Badge nas thumbnails --- */
#noticias .news-thumb{ position: relative; }
#noticias .news-badge{
  position:absolute;
  left:12px;
  bottom:12px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.04em;
  background: rgba(196,0,0,.92);
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
  text-transform: uppercase;
}


/* --- v38: badges nas thumbnails (fix real) --- */
#noticias .news-thumb{ position:relative !important; }
#noticias .news-badge{
  position:absolute;
  left:12px;
  bottom:12px;
  z-index:2;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.04em;
  line-height:1;
  background: rgba(196,0,0,.95);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0,0,0,.28);
}


/* --- v39: forçar badge nas thumbnails (visível) --- */
#noticias .news-thumb{
  position: relative !important;
  overflow: hidden !important;
}
#noticias .news-thumb::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.40), rgba(0,0,0,0) 55%);
  z-index: 1;
  pointer-events:none;
}
#noticias .news-badge{
  position: absolute !important;
  left: 12px !important;
  bottom: 12px !important;
  z-index: 3 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 7px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  background: #b80000 !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  box-shadow: 0 6px 16px rgba(0,0,0,.35) !important;
}


/* --- v40: link da fonte nas notícias --- */
#noticias .news-source-link{
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: .95;
}
#noticias .news-source-link:hover{
  opacity: 1;
}



/* =========================
   v41 PENTE FINO - Notícias
   ========================= */
#noticias{ scroll-margin-top:80px; }

#noticias .section-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
#noticias .section-head p{
  margin:0;
  opacity:.9;
  max-width:560px;
}

#noticias .tabs{
  display:flex !important;
  flex-wrap:wrap !important;
  gap:10px !important;
  align-items:center !important;
}
#noticias .tabs input[type="radio"]{
  position:absolute !important;
  opacity:0 !important;
  pointer-events:none !important;
}
#noticias .tabs .chip{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-height:40px;
  padding:0 14px !important;
  border-radius:999px !important;
  font-weight:700 !important;
  cursor:pointer !important;
  white-space:nowrap;
  transition:.18s ease;
}
#noticias .tabs .chip:hover{ transform:translateY(-1px); }

#noticias .tabs .tab-panels{
  width:100% !important;
  margin-top:12px !important;
}
#noticias .tabs .panel{
  display:none !important;
  width:100% !important;
}
#tab-golpes:checked ~ .tab-panels #panel-golpes{ display:block !important; }
#tab-vagas:checked ~ .tab-panels #panel-vagas{ display:block !important; }
#tab-concursos:checked ~ .tab-panels #panel-concursos{ display:block !important; }

#noticias .grid.news[id^="newsGrid-"]{
  display:grid !important;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap:14px !important;
  margin-top:6px;
}

#noticias .news-card{
  display:flex !important;
  flex-direction:column !important;
  gap:10px !important;
  background:rgba(255,255,255,.04) !important;
  background-image:none !important;
  border:1px solid rgba(255,255,255,.10) !important;
  border-radius:16px !important;
  overflow:hidden !important;
  min-height:auto !important;
}
#noticias .news-thumb{
  position:relative !important;
  width:100% !important;
  height:170px !important;
  aspect-ratio:auto !important;
  border-radius:0 !important;
  overflow:hidden !important;
  background:rgba(255,255,255,.03);
}
#noticias .news-thumb img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  object-position:center !important;
  display:block !important;
}
#noticias .news-thumb::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.35), rgba(0,0,0,0) 60%);
  z-index:1;
  pointer-events:none;
}

#noticias .news-badge{
  position:absolute !important;
  left:12px !important;
  bottom:12px !important;
  z-index:3 !important;
  display:inline-flex !important;
  align-items:center;
  justify-content:center;
  padding:7px 12px !important;
  border-radius:999px !important;
  font-size:12px !important;
  font-weight:800 !important;
  line-height:1 !important;
  letter-spacing:.05em !important;
  text-transform:uppercase !important;
  color:#fff !important;
  background:#b80000 !important;
  border:1px solid rgba(255,255,255,.16) !important;
  box-shadow:0 6px 16px rgba(0,0,0,.35) !important;
}

#noticias .news-body{
  padding:0 14px 14px 14px !important;
}
#noticias .news-body h3{
  margin:0 0 8px !important;
  font-size:17px !important;
  line-height:1.2 !important;
}
#noticias .news-body p{
  margin:0 0 10px !important;
  font-size:14px !important;
  line-height:1.35 !important;
  opacity:.92 !important;
}
#noticias .news-meta-row{
  display:flex !important;
  gap:8px !important;
  flex-wrap:wrap !important;
  align-items:center;
}
#noticias .news-meta-row .muted{
  font-size:13px;
  opacity:.85;
}
#noticias .news-source-link{
  color:inherit !important;
  text-decoration:underline !important;
  text-underline-offset:2px;
}

#noticias .note-fallback-global{
  margin-top:12px !important;
  margin-bottom:6px !important;
  border:1px dashed rgba(255,255,255,.20) !important;
  border-radius:14px !important;
  padding:12px 14px !important;
  background:rgba(255,255,255,.03) !important;
}
#noticias .note-fallback-global .link{ font-weight:700; }

#noticias .news-meta{
  margin-top:8px !important;
  display:flex !important;
  gap:10px !important;
  flex-wrap:wrap !important;
  align-items:center;
}
#noticias .news-meta strong{ white-space:nowrap; }

@media (max-width: 900px){
  #noticias .section-head p{ max-width:100%; }
}
@media (max-width: 600px){
  #noticias .grid.news[id^="newsGrid-"]{ grid-template-columns:1fr !important; }
  #noticias .news-thumb{ height:190px !important; }
  #noticias .tabs .chip{
    min-height:38px;
    padding:0 12px !important;
    font-size:14px;
  }
}


/* =========================================
   v42 PENTE FINO GERAL (site todo)
   ========================================= */
html{scroll-behavior:smooth;}
body{overflow-x:hidden;}
.container{width:min(1280px, calc(100% - 32px)) !important;}
@media (max-width:600px){ .container{width:calc(100% - 20px) !important;} }

.site-header{backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);}
.header-row{gap:12px !important;}
.brand{min-width:0;}
.nav{gap:8px !important;flex-wrap:wrap;}
.nav a{white-space:nowrap;border-radius:999px;padding:8px 12px;}
.nav a:hover{background:rgba(255,255,255,.05);}

.hero,.section{scroll-margin-top:90px;}
.hero-actions{display:flex;flex-wrap:wrap;gap:10px;}
.section{padding-top:28px !important;padding-bottom:28px !important;}
.section + .section{padding-top:10px !important;}

.card{
  border-radius:16px !important;
  border:1px solid rgba(255,255,255,.10) !important;
  background:rgba(255,255,255,.04) !important;
  box-shadow:0 8px 24px rgba(0,0,0,.14);
}
.card:hover{transform:translateY(-1px);transition:.15s ease;}

.btn, button, .chip{touch-action:manipulation;}
.btn{
  min-height:42px;border-radius:12px !important;padding-inline:14px !important;
  font-weight:700;line-height:1;
}
.btn:focus-visible,.chip:focus-visible,button:focus-visible,a:focus-visible{
  outline:2px solid rgba(255,255,255,.35);outline-offset:2px;
}

#ranking,.ranking,.rank-list{overflow:visible;}
.rank-list li,.ranking-item{border-radius:12px;}
.rank-list{gap:8px;}

footer .footer-contact{
  margin-top:12px !important;padding-top:8px;
  border-top:1px dashed rgba(255,255,255,.12);font-size:14px;
}
footer .footer-contact a{text-decoration:underline;text-underline-offset:2px;}

#noticias .news-controls{display:block;}
#noticias .news-meta{margin-top:10px !important;}
#noticias .note-fallback-global{margin-top:10px !important;}

@media (max-width:900px){
  .nav{display:none !important;}
  .section{padding-top:24px !important;padding-bottom:24px !important;}
  .btn{min-height:44px;}
}
@media (max-width:600px){
  .brand-sub{display:none !important;}
  .card{border-radius:14px !important;}
  .btn{width:100%;justify-content:center;}
  .hero-actions .btn{width:100%;}
}



/* =========================================
   v43 ACABAMENTO PREMIUM (visual portal)
   ========================================= */
body.theme-premium-v43{
  background:
    radial-gradient(1000px 500px at 110% -10%, rgba(196,0,0,.10), transparent 60%),
    radial-gradient(700px 400px at -10% 15%, rgba(255,255,255,.04), transparent 60%);
}

/* Header premium */
.site-header{
  background: rgba(10,12,16,.72) !important;
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 24px rgba(0,0,0,.14);
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.brand img{
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.25));
}
.brand-title{
  font-weight: 800 !important;
  letter-spacing: .02em;
}
.premium-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:24px;
  padding:0 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  color:#fff;
  background: linear-gradient(180deg, #d30000, #9f0000);
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 6px 16px rgba(179,0,0,.28);
}

/* Navegação com cara de portal */
.nav a{
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
}
.nav a:hover{
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.12);
}

/* Hero premium */
.hero{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
    rgba(255,255,255,.02);
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(500px 180px at 10% 0%, rgba(255,255,255,.06), transparent 60%),
    radial-gradient(600px 220px at 90% 0%, rgba(196,0,0,.12), transparent 60%);
}
.hero > *{ position:relative; z-index:1; }

.hero h1, .hero .title{
  line-height:1.02 !important;
  letter-spacing: -.02em;
}
.hero p{
  opacity:.9;
  max-width: 60ch;
}

/* CTA buttons */
.hero .btn, .hero-actions .btn{
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}
.btn-primary, .btn--primary{
  background: linear-gradient(180deg, #d60000, #a60000) !important;
  border-color: rgba(255,255,255,.14) !important;
}
.btn-primary:hover, .btn--primary:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* Sections and titles */
.section{
  position: relative;
}
.section-title{
  font-weight: 800 !important;
  letter-spacing: -.01em;
}
.section-head{
  margin-bottom: 12px;
}
.section-head .chip, .section-head .tag{
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

/* Universal cards */
.card{
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.card h3{
  letter-spacing: -.01em;
}

/* Stats / ranking premium */
.stat, .kpi, .metric-card, .ranking-item{
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)) !important;
}
.stat-num, .kpi-value{
  font-weight:800 !important;
}
.rank-list li, .ranking-item{
  border:1px solid rgba(255,255,255,.08);
}
.rank-list li:hover, .ranking-item:hover{
  background: rgba(255,255,255,.06);
}

/* Notícias premium */
#noticias .news-card{
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
  transition: transform .15s ease, box-shadow .15s ease;
}
#noticias .news-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0,0,0,.18);
}
#noticias .news-thumb{
  border-bottom: 1px solid rgba(255,255,255,.08);
}
#noticias .tabs .chip{
  background: rgba(255,255,255,.03) !important;
  border:1px solid rgba(255,255,255,.08) !important;
}
#noticias .tabs .chip:hover{
  background: rgba(255,255,255,.08) !important;
}
#tab-golpes:checked ~ label[for="tab-golpes"],
#tab-vagas:checked ~ label[for="tab-vagas"],
#tab-concursos:checked ~ label[for="tab-concursos"]{
  background: linear-gradient(180deg, rgba(214,0,0,.22), rgba(214,0,0,.14)) !important;
  border-color: rgba(214,0,0,.35) !important;
  box-shadow: 0 8px 18px rgba(150,0,0,.16);
}

/* Rodapé premium */
footer{
  border-top: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}
footer a{
  opacity:.92;
}
footer a:hover{
  opacity:1;
}

/* Mobile refinements */
@media (max-width: 900px){
  .hero{
    border-radius: 18px;
  }
}
@media (max-width: 600px){
  .premium-badge{
    height:22px;
    font-size:10px;
    padding:0 8px;
  }
  .hero{
    border-radius: 16px;
  }
  .section-title{
    letter-spacing: 0;
  }
}


/* =========================================
   v44 FIX: remover tema branco + notícias profissionais
   ========================================= */

/* Neutraliza qualquer fundo premium global */
body{
  background: #0b0f14 !important;
  color: #eef2f7 !important;
}
body::before, body::after{ display:none !important; }

/* Header seguro (sem ficar branco) */
.site-header{
  background: rgba(11,15,20,.88) !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.18) !important;
}
.nav a{
  color: inherit !important;
}

/* ===== Notícias mais profissional ===== */
#noticias{
  position: relative;
}
#noticias .section-head{
  margin-bottom: 14px !important;
}
#noticias .news-controls{
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 12px;
  margin-bottom: 10px;
}

/* Tabs estilo portal */
#noticias .tabs{
  gap: 8px !important;
}
#noticias .tabs .chip{
  min-height: 38px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  background: rgba(255,255,255,.03) !important;
  color: #eef2f7 !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}
#noticias .tabs .chip:hover{
  background: rgba(255,255,255,.08) !important;
  border-color: rgba(255,255,255,.16) !important;
}
#tab-golpes:checked ~ label[for="tab-golpes"],
#tab-vagas:checked ~ label[for="tab-vagas"],
#tab-concursos:checked ~ label[for="tab-concursos"]{
  background: linear-gradient(180deg, rgba(212,0,0,.22), rgba(212,0,0,.12)) !important;
  border-color: rgba(212,0,0,.35) !important;
  color: #fff !important;
}

/* Meta de atualização arrumada */
#noticias .news-meta{
  margin-top: 10px !important;
  padding-top: 8px;
  border-top: 1px dashed rgba(255,255,255,.10);
  font-size: 13px;
  opacity: .95;
}

/* Grid dos cards */
#noticias .grid.news[id^="newsGrid-"]{
  margin-top: 8px !important;
  gap: 16px !important;
}

/* Card notícia premium/profissional */
#noticias .news-card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.025)) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.18) !important;
  transition: transform .15s ease, box-shadow .15s ease;
}
#noticias .news-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.22) !important;
}

/* Thumbnail */
#noticias .news-thumb{
  height: 170px !important;
  border-bottom: 1px solid rgba(255,255,255,.08) !important;
  background: #10151d !important;
}
#noticias .news-thumb img{
  filter: saturate(1.02) contrast(1.02);
}
#noticias .news-thumb::before{
  background: linear-gradient(to top, rgba(0,0,0,.42), rgba(0,0,0,0) 58%) !important;
}

/* Badge */
#noticias .news-badge{
  background: linear-gradient(180deg, #d40000, #990000) !important;
  border-color: rgba(255,255,255,.18) !important;
  letter-spacing: .06em !important;
}

/* Conteúdo */
#noticias .news-body{
  padding: 12px 14px 14px 14px !important;
}
#noticias .news-body h3{
  color: #f5f7fb !important;
  font-size: 16px !important;
  line-height: 1.22 !important;
  margin: 0 0 8px !important;
}
#noticias .news-body p{
  color: rgba(235,240,247,.88) !important;
  font-size: 13.5px !important;
  line-height: 1.38 !important;
}
#noticias .news-meta-row{
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255,255,255,.08);
}
#noticias .news-meta-row .muted{
  color: rgba(219,226,236,.82) !important;
  font-size: 12.5px !important;
}
#noticias .news-source-link{
  color: #dbe7ff !important;
  font-weight: 600;
  text-decoration-color: rgba(219,231,255,.55);
}
#noticias .news-source-link:hover{
  color: #ffffff !important;
  text-decoration-color: rgba(255,255,255,.9);
}

/* Fallback link organizado */
#noticias .note-fallback-global{
  background: rgba(255,255,255,.025) !important;
  border: 1px dashed rgba(255,255,255,.16) !important;
  border-radius: 14px !important;
  color: rgba(234,239,247,.92) !important;
}
#noticias .note-fallback-global .link{
  color: #fff !important;
  font-weight: 700 !important;
}

/* Mobile refinado */
@media (max-width: 600px){
  #noticias .news-controls{
    padding: 10px;
    border-radius: 14px;
  }
  #noticias .tabs .chip{
    min-height: 36px !important;
    font-size: 13px !important;
    padding: 0 11px !important;
  }
  #noticias .news-thumb{
    height: 185px !important;
  }
  #noticias .news-body h3{
    font-size: 15px !important;
  }
}


/* =========================================
   v45 Destaque botão Denunciar (menu superior)
   ========================================= */
.site-header .nav-cta-denunciar,
.nav .nav-cta-denunciar{
  background: linear-gradient(180deg, #e10000, #9f0000) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  border-radius: 999px !important;
  font-weight: 800 !important;
  padding: 10px 14px !important;
  box-shadow: 0 8px 18px rgba(170, 0, 0, .28) !important;
  position: relative;
}
.site-header .nav-cta-denunciar:hover,
.nav .nav-cta-denunciar:hover{
  background: linear-gradient(180deg, #ff1a1a, #b00000) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(170, 0, 0, .34) !important;
}
.site-header .nav-cta-denunciar::after,
.nav .nav-cta-denunciar::after{
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 11px;
  font-weight: 900;
  vertical-align: middle;
}
@media (max-width: 900px){
  .nav .nav-cta-denunciar{
    width: 100%;
    justify-content: center;
  }
}


/* =========================================
   v46 CTA fixo mobile - Denunciar agora
   ========================================= */
.mobile-cta-denunciar{
  display: none;
}
.mobile-cta-spacer{
  display: none;
}

@media (max-width: 900px){
  .mobile-cta-denunciar{
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    height: 52px;
    border-radius: 14px;
    z-index: 9999;
    background: linear-gradient(180deg, #e10000, #980000);
    color: #fff !important;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: .01em;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.20);
    box-shadow: 0 14px 28px rgba(170,0,0,.35), 0 6px 12px rgba(0,0,0,.24);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .mobile-cta-denunciar:hover{
    color:#fff !important;
    filter: brightness(1.04);
  }
  .mobile-cta-denunciar:active{
    transform: translateY(1px);
  }
  .mobile-cta-denunciar::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.20);
    pointer-events:none;
  }
  .mobile-cta-spacer{
    display:block !important;
    height: 78px;
  }
}

/* Evita conflito com botões flutuantes existentes */
@media (max-width: 900px){
  .whatsapp-float, .fab, .floating-btn{
    bottom: 78px !important;
  }
}


/* =========================================
   v47 MODO CONVERSÃO (home)
   ========================================= */

/* Bloco de CTA no meio da home */
.conversion-cta-block{
  margin-top: 14px !important;
  margin-bottom: 14px !important;
  padding: 0 !important;
  overflow: hidden;
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  background:
    radial-gradient(420px 180px at 90% 0%, rgba(196,0,0,.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)) !important;
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
}
.conversion-cta-inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  padding: 16px;
}
.conversion-copy{
  min-width:0;
}
.conversion-kicker{
  display:inline-flex;
  align-items:center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  background: rgba(225,0,0,.16);
  border: 1px solid rgba(225,0,0,.28);
  color: #fff;
  margin-bottom: 10px;
}
.conversion-title{
  margin: 0 0 8px !important;
  font-size: 24px !important;
  line-height: 1.08 !important;
  letter-spacing: -.02em;
}
.conversion-text{
  margin: 0 0 12px !important;
  opacity: .92;
  line-height: 1.35;
  max-width: 60ch;
}
.conversion-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.conversion-main-btn{
  background: linear-gradient(180deg,#e10000,#980000) !important;
  border:1px solid rgba(255,255,255,.18) !important;
  box-shadow: 0 10px 20px rgba(160,0,0,.25);
  font-weight: 800 !important;
}
.conversion-main-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.04);
}
.conversion-secondary-btn{
  border: 1px solid rgba(255,255,255,.12) !important;
  background: rgba(255,255,255,.03) !important;
}

/* Prova social */
.conversion-proof{
  display:grid;
  gap: 12px;
}
.proof-card{
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  padding: 12px;
}
.proof-label{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .07em;
  opacity: .9;
  font-weight: 700;
  margin-bottom: 8px;
}
.proof-list{
  margin: 0;
  padding-left: 18px;
  display:grid;
  gap: 6px;
}
.proof-list li{
  line-height: 1.25;
  font-size: 14px;
}
.proof-big{
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 6px;
}
.proof-note{
  font-size: 12px;
  opacity: .75;
}

/* Destaque visual nos links/formulários de denúncia */
.form-cta-highlight{
  position: relative;
}
a.form-cta-highlight[href*="forms"],
a.form-cta-highlight[href*="google.com/forms"],
a.form-cta-highlight[href*="forms/d/e/"]{
  border-radius: 12px !important;
}
.form-cta-highlight[href*="forms"]:hover{
  filter: brightness(1.03);
}

/* Atalho fixo desktop (discreto) */
.desktop-cta-denunciar{
  display:none;
}
@media (min-width: 901px){
  .desktop-cta-denunciar{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 9998;
    height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff !important;
    font-weight: 800;
    background: linear-gradient(180deg,#d60000,#940000);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 10px 22px rgba(140,0,0,.28), 0 6px 12px rgba(0,0,0,.18);
    opacity: .94;
  }
  .desktop-cta-denunciar:hover{
    opacity:1;
    transform: translateY(-1px);
  }
}

/* Ajustes mobile */
@media (max-width: 900px){
  .conversion-cta-inner{
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }
  .conversion-title{
    font-size: 20px !important;
  }
  .conversion-actions .btn{
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 600px){
  .conversion-cta-block{
    border-radius: 16px !important;
  }
  .conversion-title{
    font-size: 18px !important;
  }
  .proof-big{
    font-size: 30px;
  }
}


/* =========================================
   v48 Finalíssima de publicação
   ========================================= */
:root { color-scheme: dark; }
img { max-width: 100%; height: auto; }
a { -webkit-tap-highlight-color: rgba(255,255,255,.08); }

/* evita quebrar layout com textos/links longos */
.card, .news-card, .proof-card, .note, footer, .container {
  overflow-wrap: anywhere;
}

/* micro-ajuste de legibilidade geral */
p { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; }


/* =========================================
   v49 Estados & Cidades (mais relatos)
   ========================================= */
#estados-cidades{
  scroll-margin-top: 90px;
}
#estados-cidades .section-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
#estados-cidades .section-head .muted{
  max-width: 760px;
  margin: 4px 0 0;
  opacity: .9;
  line-height: 1.35;
}
#estados-cidades .ec-chips{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
#estados-cidades .ec-chips .chip{
  min-height:36px;
  padding: 0 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: inherit;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}
#estados-cidades .ec-chips .chip.active{
  background: linear-gradient(180deg, rgba(212,0,0,.22), rgba(212,0,0,.12));
  border-color: rgba(212,0,0,.35);
  color:#fff;
}

#estados-cidades .ec-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top: 12px;
}
#estados-cidades .ec-card{
  padding: 14px;
  border-radius: 16px !important;
}
#estados-cidades .ec-card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin-bottom: 10px;
}
#estados-cidades .ec-card-head h3{
  margin:0;
  font-size: 17px;
  line-height: 1.15;
}
#estados-cidades .ec-tag{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  border-radius:999px;
  padding: 5px 9px;
  white-space: nowrap;
}

#estados-cidades .ec-rank-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:8px;
}
#estados-cidades .ec-rank-list li{
  display:grid;
  grid-template-columns: 28px 1fr auto;
  align-items:center;
  gap:10px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  border-radius: 12px;
  padding: 9px 10px;
}
#estados-cidades .ec-place{
  width: 28px;
  height: 28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  font-weight: 800;
  background: rgba(225,0,0,.16);
  border: 1px solid rgba(225,0,0,.24);
  color: #fff;
}
#estados-cidades .ec-name{
  line-height:1.2;
}
#estados-cidades .ec-count{
  min-width: 34px;
  text-align:center;
  font-weight: 800;
  border-radius: 10px;
  padding: 6px 8px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

#estados-cidades .ec-categorias{
  display:flex;
  flex-direction:column;
  gap:10px;
}
#estados-cidades .ec-category-group h4{
  margin:0 0 6px;
  font-size: 14px;
  opacity:.95;
}
#estados-cidades .ec-badges{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}
#estados-cidades .ec-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

#estados-cidades .ec-note-card{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px !important;
  font-size: 13px;
  line-height: 1.35;
  border:1px dashed rgba(255,255,255,.16) !important;
  background: rgba(255,255,255,.025) !important;
}

@media (max-width: 1000px){
  #estados-cidades .ec-grid{
    grid-template-columns: 1fr 1fr;
  }
  #estados-cidades .ec-categorias{
    grid-column: 1 / -1;
  }
}
@media (max-width: 600px){
  #estados-cidades .ec-grid{
    grid-template-columns: 1fr;
    gap:12px;
  }
  #estados-cidades .ec-card{
    padding: 12px;
  }
  #estados-cidades .ec-card-head{
    align-items:flex-start;
    flex-direction:column;
  }
  #estados-cidades .ec-card-head h3{
    font-size: 16px;
  }
  #estados-cidades .ec-rank-list li{
    grid-template-columns: 26px 1fr auto;
    gap:8px;
    padding: 8px 9px;
  }
  #estados-cidades .ec-place{
    width:26px;
    height:26px;
    font-size: 13px;
  }
}


/* =========================================
   v50 filtros Estados & Cidades + botão Denunciar após menu
   ========================================= */
#estados-cidades .ec-filtros-categorias{
  margin-top: 10px;
  padding: 12px;
  border-radius: 14px !important;
  background: rgba(255,255,255,.025) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
}
#estados-cidades .ec-filtros-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 8px;
}
#estados-cidades .ec-filtros-head .muted{
  font-size: 12px;
  opacity: .8;
}
#estados-cidades .ec-filtros-botoes{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
#estados-cidades .ec-cat-btn,
#estados-cidades .ec-period-btn{
  cursor:pointer;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: inherit;
  border-radius: 999px;
  min-height: 36px;
  padding: 0 12px;
  font-weight: 700;
}
#estados-cidades .ec-cat-btn:hover,
#estados-cidades .ec-period-btn:hover{
  background: rgba(255,255,255,.07);
}
#estados-cidades .ec-cat-btn.active,
#estados-cidades .ec-period-btn.active{
  background: linear-gradient(180deg, rgba(212,0,0,.22), rgba(212,0,0,.12));
  border-color: rgba(212,0,0,.35);
  color:#fff;
}

#estados-cidades .ec-mapa-regioes{
  margin-top: 12px;
  padding: 14px;
  border-radius: 16px !important;
}
#estados-cidades .ec-regioes-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
#estados-cidades .ec-regiao{
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  border-radius: 12px;
  padding: 10px;
}
#estados-cidades .ec-regiao-nome{
  font-weight: 800;
  margin-bottom: 4px;
}
#estados-cidades .ec-regiao-info{
  font-size: 12px;
  line-height: 1.3;
  opacity: .86;
  margin-bottom: 8px;
}
#estados-cidades .ec-regiao-bar{
  width:100%;
  height: 8px;
  background: rgba(255,255,255,.05);
  border-radius: 999px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.06);
}
#estados-cidades .ec-regiao-bar span{
  display:block;
  height:100%;
  background: linear-gradient(90deg, #c70000, #ff4141);
  border-radius: 999px;
}

@media (max-width: 700px){
  #estados-cidades .ec-regioes-grid{
    grid-template-columns: 1fr;
  }
  #estados-cidades .ec-filtros-categorias{
    padding: 10px;
  }
}


/* =========================================
   v51 Fontes web para contextualizar números (Estados & Cidades)
   ========================================= */
#estados-cidades .ec-fontes-web{
  margin-top: 10px;
  padding: 12px;
  border-radius: 14px !important;
  background: rgba(255,255,255,.025) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
}
#estados-cidades .ec-fontes-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom: 10px;
}
#estados-cidades .ec-fontes-head .muted{
  font-size: 12px;
  opacity: .82;
}
#estados-cidades .ec-fontes-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
#estados-cidades .ec-fonte{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  border-radius: 12px;
  padding: 10px;
}
#estados-cidades .ec-fonte-title{
  font-weight: 800;
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 6px;
}
#estados-cidades .ec-fonte-link{
  display:inline-flex;
  font-size: 13px;
  font-weight: 700;
  color: #dbe7ff !important;
  text-decoration-color: rgba(219,231,255,.55);
}
#estados-cidades .ec-fonte-link:hover{
  color:#fff !important;
  text-decoration-color: rgba(255,255,255,.90);
}
#estados-cidades .ec-fontes-note{
  margin-top: 10px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255,255,255,.12);
}
#estados-cidades .ec-fontes-note .muted{
  font-size: 12px;
  opacity: .8;
}

@media (max-width: 1000px){
  #estados-cidades .ec-fontes-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px){
  #estados-cidades .ec-fontes-grid{ grid-template-columns: 1fr; }
}


/* =========================================
   v52 Estados & Cidades - acabamento profissional (publicação)
   ========================================= */
#estados-cidades .section-head{padding:2px 0 0;}
#estados-cidades .section-title{letter-spacing:-.01em;}
#estados-cidades .section-head .muted{
  color: rgba(230,236,244,.88) !important;
  max-width: 860px;
}
#estados-cidades .ec-chips .chip,
#estados-cidades .ec-cat-btn,
#estados-cidades .ec-period-btn{
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
#estados-cidades .ec-chips .chip:hover,
#estados-cidades .ec-cat-btn:hover,
#estados-cidades .ec-period-btn:hover{transform:translateY(-1px);}

#estados-cidades .ec-card{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.025)) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
}
#estados-cidades .ec-card-head{
  padding-bottom:8px;
  border-bottom:1px dashed rgba(255,255,255,.10);
}
#estados-cidades .ec-card-head h3{font-weight:800;}
#estados-cidades .ec-rank-list li{
  transition: background .15s ease, border-color .15s ease;
}
#estados-cidades .ec-rank-list li:hover{
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.12);
}
#estados-cidades .ec-count{background: rgba(255,255,255,.05);}

#estados-cidades .ec-mapa-regioes{
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02)) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
}
#estados-cidades .ec-regiao{box-shadow: inset 0 0 0 1px rgba(255,255,255,.015);}
#estados-cidades .ec-regiao:hover{background: rgba(255,255,255,.04);}

#estados-cidades .ec-fontes-web{
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02)) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}
#estados-cidades .ec-fontes-head{
  align-items:center;
  padding-bottom:8px;
  border-bottom:1px dashed rgba(255,255,255,.10);
}
#estados-cidades .ec-fontes-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:24px;
  padding:0 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
  color:#fff;
  background: linear-gradient(180deg, #c70000, #930000);
  border: 1px solid rgba(255,255,255,.18);
  margin-right:6px;
}
#estados-cidades .ec-fontes-grid{gap:12px !important;}
#estados-cidades .ec-fonte{
  background: rgba(255,255,255,.025) !important;
  border: 1px solid rgba(255,255,255,.09) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.01);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
#estados-cidades .ec-fonte:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.04) !important;
  border-color: rgba(255,255,255,.14) !important;
}
#estados-cidades .ec-fonte-title{
  font-size: 13.5px !important;
  line-height: 1.24 !important;
}
#estados-cidades .ec-source-badge-wrap{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin:0 0 8px;
}
#estados-cidades .ec-source-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:22px;
  padding:0 8px;
  border-radius:999px;
  font-size:10px;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color:#fff;
}
#estados-cidades .ec-source-badge.oficial{
  background: linear-gradient(180deg, rgba(19,143,88,.30), rgba(19,143,88,.18));
  border-color: rgba(64,200,130,.30);
}
#estados-cidades .ec-source-badge.imprensa{
  background: linear-gradient(180deg, rgba(31,103,204,.30), rgba(31,103,204,.18));
  border-color: rgba(91,154,246,.30);
}
#estados-cidades .ec-source-badge.data{
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.14);
  color: rgba(241,245,250,.95);
}
#estados-cidades .ec-fonte-link{
  word-break: break-word;
  font-weight: 700 !important;
}
#estados-cidades .ec-fontes-publicacao-note{
  margin-top:10px;
  padding-top:8px;
  border-top:1px dashed rgba(255,255,255,.12);
  font-size:12px;
  opacity:.85;
}
#estados-cidades .ec-note-card{
  border-color: rgba(255,255,255,.18) !important;
  background: rgba(255,255,255,.03) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.01);
}
#estados-cidades .ec-note-card strong{color:#fff;}

@media (max-width:600px){
  #estados-cidades .ec-fontes-head{align-items:flex-start;}
  #estados-cidades .ec-fontes-kicker{margin-bottom:4px;}
}
