:root {
  --c-orange: #FF6B00;
  --c-orange-dark: #E65C00;
  --c-blue: #0056A6;
  --c-text: #1f2a37;
  --c-muted: #5c6b7a;
  --c-bg: #f6f8fb;
  --c-card: #ffffff;
  --c-line: #e6ebf1;
  --radius: 12px;
  --wrap: 1100px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.55;
}
a { color: var(--c-blue); }
img { max-width: 100%; height: auto; }
.wrap { width: min(var(--wrap), calc(100% - 32px)); margin: 0 auto; }

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--c-line);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.logo {
  font-weight: 800;
  color: var(--c-blue);
  text-decoration: none;
  font-size: 1.15rem;
}
.logo span { color: var(--c-orange); }
.nav { display: flex; gap: 16px; flex-wrap: wrap; }
.nav a {
  color: var(--c-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a:hover, .nav a.is-active { color: var(--c-orange); }

.hero {
  background: var(--c-blue);
  color: #fff;
  padding: 48px 0 56px;
}
.hero h1 { margin: 0 0 10px; font-size: clamp(1.7rem, 4vw, 2.4rem); line-height: 1.2; }
.hero p { margin: 0 0 22px; color: rgba(255,255,255,.9); max-width: 640px; }

.search-box {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  background: #fff;
  padding: 14px;
  border-radius: var(--radius);
}
.search-field { flex: 1; min-width: 180px; position: relative; }
.search-field label {
  display: block;
  color: var(--c-muted);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 4px;
}
.search-field input {
  width: 100%;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: 12px;
  font-size: 15px;
}
.lista-autocomplete {
  position: absolute;
  left: 0; right: 0;
  background: #fff;
  z-index: 20;
  max-height: 220px;
  overflow: auto;
  border: 1px solid var(--c-line);
  border-radius: 8px;
}
.item-sugestao { padding: 8px 10px; cursor: pointer; color: var(--c-text); }
.item-sugestao:hover { background: #fff4ed; }
.btn-buscar, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-orange);
  color: #fff !important;
  text-decoration: none;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
}
.btn-buscar:hover, .btn:hover { background: var(--c-orange-dark); }
.btn-ghost {
  background: transparent;
  color: var(--c-blue) !important;
  border: 1px solid var(--c-line);
}

.section { padding: 40px 0; }
.section h2 { margin: 0 0 8px; }
.section .lead { color: var(--c-muted); margin: 0 0 20px; }

.grid { display: grid; gap: 12px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card, .cidade-box {
  background: var(--c-card);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 16px;
  text-decoration: none;
  color: inherit;
}
.card:hover { border-color: var(--c-orange); }
.card strong { display: block; margin-bottom: 4px; }
.muted { color: var(--c-muted); font-size: 0.92rem; }

.site-footer {
  background: #102033;
  color: #d7e0ea;
  padding: 36px 0 20px;
  margin-top: 40px;
}
.site-footer a { color: #fff; text-decoration: none; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 20px; }
.site-footer h3 { margin: 0 0 10px; font-size: 0.95rem; color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0 0 8px; }
.copy { border-top: 1px solid rgba(255,255,255,.12); margin-top: 24px; padding-top: 14px; font-size: 0.85rem; color: #9fb0c2; }

.prose { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 28px; }
.prose h1 { margin-top: 0; }
.crumbs { font-size: 0.9rem; margin: 16px 0; }
.crumbs a { text-decoration: none; }

.parceiro-cta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin: 10px 0;
}
.logos { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.logos img { height: 28px; width: auto; }

@media (max-width: 800px) {
  .grid-2, .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .site-header-inner { flex-direction: column; align-items: flex-start; }
}
