/* ============================================================
   descartegratis.org — Estilos globais
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #f7f9f4; color: #1a2e1a; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* NAV */
nav { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid rgba(26,46,26,0.1); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo { width: 32px; height: 32px; background: #1a5c0a; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #c8f060; font-weight: 900; font-size: 16px; flex-shrink: 0; }
.nav-name { font-weight: 900; font-size: 17px; color: #1a2e1a; letter-spacing: -0.02em; }
.nav-name span { color: #2d8a0f; }
.nav-sub { font-size: 11px; color: rgba(26,46,26,0.4); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { font-size: 13px; color: rgba(26,46,26,0.6); font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #2d8a0f; }
@media (max-width: 600px) { .nav-links { display: none; } }

/* HERO */
.hero { background: #fff; border-bottom: 1px solid rgba(26,46,26,0.08); padding: 64px 24px 48px; }
.hero-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: #e8f5d0; border: 1px solid #b8e07a; border-radius: 100px; padding: 5px 14px; font-size: 12px; color: #2d6b0a; font-weight: 700; margin-bottom: 20px; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #4caf1a; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
h1 { font-size: clamp(30px, 4.5vw, 48px); font-weight: 900; line-height: 1.1; margin-bottom: 14px; letter-spacing: -0.02em; color: #1a2e1a; }
h1 span { color: #2d8a0f; }
.hero-sub { font-size: 16px; color: rgba(26,46,26,0.55); margin-bottom: 32px; line-height: 1.7; }

/* SEARCH */
.search-box { background: #f7f9f4; border: 1px solid rgba(26,46,26,0.12); border-radius: 16px; padding: 16px; max-width: 600px; margin: 0 auto 28px; position: relative; }
.search-row { display: flex; gap: 10px; }
.search-input { flex: 1; background: #fff; border: 1px solid rgba(26,46,26,0.15); border-radius: 10px; padding: 12px 16px; color: #1a2e1a; font-size: 15px; font-family: inherit; outline: none; transition: border-color 0.2s; }
.search-input::placeholder { color: rgba(26,46,26,0.35); }
.search-input:focus { border-color: #2d8a0f; }
.btn-search { background: #1a5c0a; color: #fff; font-weight: 800; font-size: 14px; padding: 12px 22px; border-radius: 10px; border: none; cursor: pointer; font-family: inherit; transition: background 0.2s; white-space: nowrap; }
.btn-search:hover { background: #134508; }
.search-suggestions { position: absolute; top: 100%; left: 16px; right: 16px; background: #fff; border: 1px solid rgba(26,46,26,0.12); border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 50; display: none; }
.suggestion-item { padding: 12px 16px; font-size: 14px; cursor: pointer; border-bottom: 1px solid rgba(26,46,26,0.06); transition: background 0.15s; }
.suggestion-item:last-child { border-bottom: none; }
.suggestion-item:hover { background: #f7f9f4; }
.suggestion-estado { font-size: 11px; color: rgba(26,46,26,0.4); margin-left: 6px; }

.hero-stats { display: flex; gap: 32px; justify-content: center; }
.stat-num { font-size: 22px; font-weight: 900; color: #2d8a0f; }
.stat-label { font-size: 11px; color: rgba(26,46,26,0.45); font-weight: 500; }

/* RESULTADO DA BUSCA */
.resultado-section { padding: 40px 24px; background: #f7f9f4; }
.container { max-width: 1100px; margin: 0 auto; }

/* FICHA DO SERVIÇO */
.ficha { background: #fff; border: 1px solid rgba(26,46,26,0.1); border-radius: 20px; padding: 32px; margin-bottom: 0; }
.ficha-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.ficha-cidade-label { font-size: 11px; font-weight: 800; color: rgba(26,46,26,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.ficha-nome { font-size: 22px; font-weight: 900; color: #1a2e1a; margin-bottom: 4px; }
.ficha-orgao { font-size: 13px; color: rgba(26,46,26,0.5); }
.ficha-status { display: inline-flex; align-items: center; gap: 6px; background: #e8f5d0; border: 1px solid #b8e07a; border-radius: 100px; padding: 5px 14px; font-size: 12px; color: #2d6b0a; font-weight: 700; white-space: nowrap; }
.ficha-status-dot { width: 6px; height: 6px; border-radius: 50%; background: #4caf1a; }
.ficha-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 24px; }
@media (max-width: 700px) { .ficha-grid { grid-template-columns: 1fr 1fr; } }
.ficha-item { background: #f7f9f4; border-radius: 12px; padding: 14px; }
.ficha-item-label { font-size: 10px; font-weight: 700; color: rgba(26,46,26,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.ficha-item-value { font-size: 13px; font-weight: 700; color: #1a2e1a; line-height: 1.4; }
.ficha-section { margin-bottom: 20px; }
.ficha-section-title { font-size: 12px; font-weight: 800; color: #1a2e1a; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; border-bottom: 1px solid rgba(26,46,26,0.08); padding-bottom: 6px; }
.aceita-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
@media (max-width: 500px) { .aceita-grid { grid-template-columns: 1fr; } }
.aceita-item { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: rgba(26,46,26,0.7); line-height: 1.4; }
.aceita-item.sim::before { content: "✓"; color: #2d8a0f; font-weight: 900; font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.aceita-item.nao { color: rgba(26,46,26,0.35); }
.aceita-item.nao::before { content: "✗"; color: #e05a5a; font-weight: 900; font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.ficha-steps { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ficha-steps li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: rgba(26,46,26,0.7); line-height: 1.5; }
.step-num { width: 22px; height: 22px; border-radius: 50%; background: #2d8a0f; color: #fff; font-size: 11px; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.ficha-link { display: inline-flex; align-items: center; gap: 6px; background: #1a5c0a; color: #fff; font-weight: 700; font-size: 13px; padding: 10px 20px; border-radius: 10px; transition: background 0.2s; margin-top: 4px; }
.ficha-link:hover { background: #134508; }
.ficha-note { font-size: 11px; color: rgba(26,46,26,0.4); margin-top: 10px; font-style: italic; }
.ficha-note-text { font-size: 13px; color: rgba(26,46,26,0.65); font-style: normal; line-height: 1.6; }
.resultado-feedback { text-align: center; }
.pontos-lista { display: grid; gap: 10px; }
.ponto-lista-item {
  width: 100%;
  border: 1px solid rgba(26,46,26,0.1);
  background: #f7f9f4;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
  color: #1a2e1a;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.ponto-lista-item:hover { border-color: #2d8a0f; background: #fff; }
.ponto-lista-item strong { display: block; font-size: 14px; line-height: 1.35; }
.ponto-lista-item small { display: block; margin-top: 3px; font-size: 12px; color: rgba(26,46,26,0.5); }
.ponto-lista-item > span:last-child { flex-shrink: 0; font-size: 12px; font-weight: 800; color: #2d8a0f; }
@media (max-width: 520px) {
  .ponto-lista-item { align-items: flex-start; flex-direction: column; }
}

/* CARD ME LEVA — aparece logo após a ficha do cata-treco */
.meleva-cta-card {
  background: linear-gradient(135deg, #1a2e1a 0%, #2d5c1a 100%);
  border-radius: 20px;
  padding: 28px 32px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.meleva-cta-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(200,240,96,0.08);
}
.meleva-cta-tag {
  font-size: 10px;
  font-weight: 800;
  color: #c8f060;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.meleva-cta-title {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}
.meleva-cta-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  max-width: 480px;
}
.meleva-cta-pills {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.meleva-cta-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
.meleva-cta-pill::before { content: "✓"; color: #c8f060; font-weight: 900; }
.btn-meleva {
  background: #c8f060;
  color: #1a2e1a;
  font-weight: 900;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 12px;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
  display: inline-block;
}
.btn-meleva:hover { background: #b0d840; }

/* NOTÍCIAS DA CIDADE */
.noticias-cidade { margin-top: 32px; }
.noticias-cidade-titulo { font-size: 16px; font-weight: 800; color: #1a2e1a; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(26,46,26,0.08); }
.noticia-mini { background: #fff; border: 1px solid rgba(26,46,26,0.08); border-radius: 12px; padding: 16px; margin-bottom: 10px; }
.noticia-mini-titulo { font-weight: 700; font-size: 14px; color: #1a2e1a; margin-bottom: 4px; }
.noticia-mini-resumo { font-size: 13px; color: rgba(26,46,26,0.55); line-height: 1.5; }
.noticia-mini-data { font-size: 11px; color: rgba(26,46,26,0.35); margin-top: 6px; }

/* SEÇÕES */
.section { padding: 72px 24px; }
.section-white { background: #fff; }
.section-tag { font-size: 11px; font-weight: 800; color: #2d8a0f; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.section-title { font-size: clamp(22px, 3.5vw, 34px); font-weight: 900; color: #1a2e1a; margin-bottom: 8px; }
.section-sub { font-size: 15px; color: rgba(26,46,26,0.5); margin-bottom: 40px; }

/* PONTOS GRID */
.pontos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .pontos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .pontos-grid { grid-template-columns: 1fr; } }
.ponto-card { background: #fff; border: 1px solid rgba(26,46,26,0.1); border-radius: 14px; padding: 18px; transition: all 0.2s; cursor: pointer; }
.ponto-card:hover { border-color: #2d8a0f; box-shadow: 0 4px 16px rgba(45,138,15,0.1); }
.ponto-card.em-breve { opacity: 0.5; cursor: default; }
.ponto-card.em-breve:hover { border-color: rgba(26,46,26,0.1); box-shadow: none; }
.ponto-nome { font-weight: 800; font-size: 15px; color: #1a2e1a; margin-bottom: 3px; }
.ponto-tipo { font-size: 12px; color: #2d8a0f; font-weight: 600; margin-bottom: 6px; }
.ponto-info { font-size: 12px; color: rgba(26,46,26,0.5); line-height: 1.5; margin-bottom: 10px; }
.ponto-link { font-size: 12px; font-weight: 700; color: #2d8a0f; }

/* NOTÍCIAS */
.noticias-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 800px) { .noticias-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .noticias-grid { grid-template-columns: 1fr; } }
.noticia-card { background: #fff; border: 1px solid rgba(26,46,26,0.08); border-radius: 14px; padding: 20px; }
.noticia-cidade { font-size: 10px; font-weight: 800; color: #2d8a0f; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.noticia-titulo { font-weight: 800; font-size: 15px; color: #1a2e1a; margin-bottom: 8px; line-height: 1.4; }
.noticia-resumo { font-size: 13px; color: rgba(26,46,26,0.55); line-height: 1.5; margin-bottom: 10px; }
.noticia-data { font-size: 11px; color: rgba(26,46,26,0.35); }

/* BLOG SORO */
.soro-blog-section { background: #fff; border-top: 1px solid rgba(26,46,26,0.08); }
.soro-blog-inner { margin-top: 8px; }
#soro-blog { width: 100%; min-height: 180px; }
#soro-blog iframe { display: block; width: 100%; max-width: 100%; border: 0; border-radius: 14px; background: #f7f9f4; }

/* REDE */
.rede-section { background: #1a2e1a; color: #fff; padding: 56px 24px; }
.rede-title { font-size: clamp(20px, 3vw, 28px); font-weight: 900; margin-bottom: 6px; }
.rede-sub { color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 32px; }
.rede-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 700px) { .rede-grid { grid-template-columns: 1fr; } }
.rede-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 18px; transition: border-color 0.2s; }
.rede-card:hover { border-color: rgba(200,240,96,0.4); }
.rede-card.rede-atual { border-color: rgba(200,240,96,0.3); }
.rede-name { font-weight: 900; font-size: 14px; color: #c8f060; margin-bottom: 4px; }
.rede-desc { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.rede-link { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.rede-link:hover { color: #c8f060; }

/* PATROCINADO */
.patrocinado-bar { background: #f7f9f4; border-top: 1px solid rgba(26,46,26,0.08); padding: 20px 24px; }
.patrocinado-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.patrocinado-label { font-size: 10px; font-weight: 800; color: rgba(26,46,26,0.3); text-transform: uppercase; letter-spacing: 0.1em; white-space: nowrap; }
.patrocinado-text { font-size: 14px; color: rgba(26,46,26,0.7); flex: 1; }
.btn-patrocinado { background: #1a5c0a; color: #fff; font-weight: 700; font-size: 13px; padding: 9px 20px; border-radius: 10px; white-space: nowrap; transition: background 0.2s; }
.btn-patrocinado:hover { background: #134508; }

/* FOOTER */
footer { padding: 36px 24px; background: #fff; border-top: 1px solid rgba(26,46,26,0.08); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo { width: 28px; height: 28px; background: #1a5c0a; border-radius: 7px; display: flex; align-items: center; justify-content: center; color: #c8f060; font-size: 14px; font-weight: 900; }
.footer-name { font-weight: 900; color: #1a2e1a; font-size: 14px; }
.footer-copy { font-size: 12px; color: rgba(26,46,26,0.35); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: rgba(26,46,26,0.45); transition: color 0.2s; }
.footer-links a:hover { color: #2d8a0f; }
