/* ============================================================
   assets/css/main.css — Sistema Denúncia Animal · Taboão da Serra
   Identidade Visual: gov.br
   Paleta: #ffffff · #e7e7e7 · #1351b4
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap');

:root {
  --azul:         #1351b4;
  --azul-hover:   #0c3d8a;
  --azul-claro:   #c5d4f5;
  --azul-suave:   #edf2ff;
  --cinza-borda:  #e7e7e7;
  --cinza-fundo:  #f5f5f5;
  --cinza-medio:  #b0b0b0;
  --cinza-texto:  #555555;
  --cinza-escuro: #333333;
  --branco:       #ffffff;
  --preto:        #1b1b1b;
  --verde-ok:     #168821;
  --vermelho:     #cc0000;
  --amarelo:      #ffb100;

  --sombra-sm: 0 1px 4px rgba(0,0,0,.07);
  --sombra-md: 0 3px 14px rgba(0,0,0,.10);

  --radius:    4px;
  --radius-md: 6px;
  --transicao: .18s ease;

  --font-titulo: 'Raleway', 'Trebuchet MS', Arial, sans-serif;
  --font-corpo:  'Source Sans 3', 'Segoe UI', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-corpo);
  background: var(--cinza-fundo);
  color: var(--preto);
  min-height: 100vh;
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: var(--azul); text-decoration: underline; }
a:hover { color: var(--azul-hover); }

/* ============================================================
   BARRA GOV.BR (topo)
   ============================================================ */
.barra-govbr {
  background: var(--azul);
  height: 34px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.barra-govbr .inner {
  max-width: 1200px;
  margin: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.barra-govbr .marca-gov {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-decoration: none;
}
.barra-govbr .marca-gov:hover { color: #fff; text-decoration: none; }
.barra-govbr .links-gov {
  display: flex;
  gap: 18px;
}
.barra-govbr .links-gov a {
  font-size: .68rem;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: var(--transicao);
}
.barra-govbr .links-gov a:hover { color: #fff; }

/* ============================================================
   HEADER INSTITUCIONAL
   ============================================================ */
.site-header {
  background: var(--branco);
  background-color: #e7e7e7;
  border-bottom: 3px solid var(--azul);
  box-shadow: var(--sombra-sm);
  position: sticky;
  top: 0;
  z-index: 200;
}
.site-header .header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Área do logo — 174×50 fixo */
.logo-prefeitura {
  width: 174px;
  height: 50px;
  flex-shrink: 0;
  position: relative;
}
.logo-prefeitura img {
  width: 174px;
  height: 50px;
  object-fit: contain;
}
/* Placeholder visual para o logo */
.logo-prefeitura .logo-ph {
  width: 174px;
  height: 50px;
  border: 1.5px dashed var(--cinza-medio);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--cinza-fundo);
  gap: 2px;
}
.logo-prefeitura .logo-ph span:first-child {
  font-size: .58rem;
  font-weight: 700;
  color: var(--cinza-texto);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.logo-prefeitura .logo-ph span:last-child {
  font-size: .5rem;
  color: var(--cinza-medio);
}

.header-divider {
  width: 1px;
  height: 38px;
  background: var(--cinza-borda);
  flex-shrink: 0;
}

.header-sistema { flex: 1; min-width: 0; }
.header-sistema h1 {
  font-family: var(--font-titulo);
  font-size: .92rem;
  font-weight: 700;
  color: var(--azul);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header-sistema p {
  font-size: .7rem;
  color: var(--cinza-texto);
  margin-top: 2px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  flex-shrink: 0;
}
.header-nav a {
  font-size: .8rem;
  font-weight: 600;
  color: var(--cinza-escuro);
  text-decoration: none;
  padding: 6px 13px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transicao);
}
.header-nav a:hover {
  color: var(--azul);
  background: var(--azul-suave);
  border-color: var(--azul-claro);
}
.header-nav .cta {
  background: var(--azul);
  color: var(--branco) !important;
  border-color: var(--azul) !important;
}
.header-nav .cta:hover { background: var(--azul-hover); border-color: var(--azul-hover) !important; }

/* ============================================================
   BANNER  1416 × 772
   ============================================================ */
.banner-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--azul);
  position: relative;
  max-height: 500px;
}
.banner-wrap img.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  aspect-ratio: 1416 / 772;
  max-height: 500px;
}
/* Overlay texto sobre banner */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,40,100,.82) 0%, rgba(19,81,180,.55) 50%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 6%;
}
.banner-texto {
  max-width: 520px;
  color: var(--branco);
}
.banner-texto .tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: 14px;
  border-bottom: 2px solid rgba(255,255,255,.3);
  padding-bottom: 6px;
}
.banner-texto h2 {
  font-family: var(--font-titulo);
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 14px;
}
.banner-texto p {
  font-size: .92rem;
  color: rgba(255,255,255,.85);
  max-width: 420px;
  line-height: 1.65;
}

/* ============================================================
   STEPPER (indicador de passo)
   ============================================================ */
.stepper-bar {
  background: var(--azul);
  border-top: 1px solid rgba(255,255,255,.12);
}
.stepper-bar .inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 40px;
  gap: 4px;
}
.step {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  padding-right: 16px;
}
.step.ativo  { color: var(--branco); font-weight: 600; }
.step.feito  { color: rgba(255,255,255,.7); }
.step .n {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700;
  flex-shrink: 0;
}
.step.ativo .n  { border-color: #fff; background: #fff; color: var(--azul); }
.step.feito .n  { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.15); }
.step-seta { color: rgba(255,255,255,.25); font-size: .65rem; padding: 0 2px; }

/* ============================================================
   LAYOUT PRINCIPAL
   ============================================================ */
.main-content {
  max-width: 880px;
  margin: 0 auto;
  padding: 36px 20px 80px;
}
.main-content.wide { max-width: 1160px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .76rem;
  color: var(--cinza-texto);
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--azul); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--cinza-medio); }

/* ============================================================
   CARD
   ============================================================ */
.card {
  background: var(--branco);
  border: 1px solid var(--cinza-borda);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-bottom: 18px;
  box-shadow: var(--sombra-sm);
}
.card-sm { padding: 18px 22px; }
@media (max-width:600px) { .card { padding: 18px 16px; } }

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
.page-title {
  font-family: var(--font-titulo);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--azul);
  line-height: 1.2;
  margin-bottom: 6px;
}
.page-subtitle {
  font-size: .875rem;
  color: var(--cinza-texto);
  margin-bottom: 24px;
  line-height: 1.5;
}
.section-heading {
  font-size: .75rem;
  font-weight: 700;
  color: var(--azul);
  text-transform: uppercase;
  letter-spacing: .08em;
  border-bottom: 2px solid var(--azul);
  padding-bottom: 8px;
  margin: 26px 0 16px;
}

/* ============================================================
   BOTÕES — estilo govbr refinado
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 22px;
  font-family: var(--font-corpo);
  font-size: .875rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transicao), border-color var(--transicao), color var(--transicao);
  text-decoration: none !important;
  line-height: 1.4;
  white-space: nowrap;
  letter-spacing: .01em;
}
/* Primário */
.btn-primary {
  background: var(--azul);
  color: var(--branco);
  border-color: var(--azul);
}
.btn-primary:hover  { background: var(--azul-hover); border-color: var(--azul-hover); color: var(--branco); }
.btn-primary:active { transform: scale(.98); }

/* Secundário */
.btn-secondary {
  background: var(--branco);
  color: var(--azul);
  border-color: var(--azul);
}
.btn-secondary:hover { background: var(--azul-suave); }

/* Fantasma */
.btn-ghost {
  background: transparent;
  color: var(--cinza-escuro);
  border-color: var(--cinza-borda);
}
.btn-ghost:hover { background: var(--cinza-fundo); border-color: var(--cinza-medio); }

/* Perigo */
.btn-danger { background: var(--vermelho); color: var(--branco); border-color: var(--vermelho); }
.btn-danger:hover { background: #a80000; border-color: #a80000; }

/* Tamanhos */
.btn-sm  { padding: 5px 14px; font-size: .78rem; }
.btn-lg  { padding: 12px 34px; font-size: .95rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .45; cursor: not-allowed; pointer-events: none; }

/* ============================================================
   SELEÇÃO DE TIPO DE DENÚNCIA
   ============================================================ */
.tipo-lista {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--cinza-borda);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--branco);
}
.tipo-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  cursor: pointer;
  border-bottom: 1px solid var(--cinza-borda);
  transition: background var(--transicao), border-left-color var(--transicao);
  border-left: 4px solid transparent;
  width: 100%;
  font-family: var(--font-corpo);
  background: var(--branco);
  text-align: left;
}
.tipo-item:last-child { border-bottom: none; }
.tipo-item:hover     { background: var(--azul-suave); }
.tipo-item.selecionado {
  background: var(--azul-suave);
  border-left-color: var(--azul);
}
/* Radio visual */
.tipo-radio {
  width: 18px;
  height: 18px;
  border: 2px solid var(--cinza-medio);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
  transition: border-color var(--transicao);
}
.tipo-item.selecionado .tipo-radio { border-color: var(--azul); }
.tipo-item.selecionado .tipo-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--azul);
  border-radius: 50%;
}
/* Texto */
.tipo-conteudo { flex: 1; }
.tipo-conteudo h3 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--cinza-escuro);
  margin-bottom: 3px;
  line-height: 1.3;
}
.tipo-item.selecionado .tipo-conteudo h3 { color: var(--azul); }
.tipo-conteudo p {
  font-size: .8rem;
  color: var(--cinza-texto);
  line-height: 1.5;
}
/* Rótulo direito */
.tipo-rotulo {
  flex-shrink: 0;
  align-self: center;
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.rotulo-completo  { background: var(--cinza-fundo); color: var(--cinza-texto); border: 1px solid var(--cinza-borda); }
.rotulo-sigiloso  { background: #fff8e1; color: #6b4700; border: 1px solid #ffe082; }
.rotulo-anonimo   { background: #fce4e4; color: #7a0000; border: 1px solid #f5c6c6; }

/* ============================================================
   FORMULÁRIOS
   ============================================================ */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--cinza-escuro);
  margin-bottom: 5px;
  letter-spacing: .01em;
}
.form-group label .req { color: var(--vermelho); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px 11px;
  border: 1px solid var(--cinza-medio);
  border-radius: var(--radius);
  font-family: var(--font-corpo);
  font-size: .875rem;
  color: var(--preto);
  background: var(--branco);
  transition: border-color var(--transicao), box-shadow var(--transicao);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--azul);
  box-shadow: 0 0 0 3px rgba(19,81,180,.12);
}
.form-group input:disabled,
.form-group select:disabled { background: var(--cinza-fundo); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group .hint { font-size: .74rem; color: var(--cinza-texto); margin-top: 4px; line-height: 1.4; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(175px,1fr)); gap: 14px; }

/* Toggle PF/PJ */
.toggle-tipo {
  display: flex;
  border: 1px solid var(--cinza-borda);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
  margin-bottom: 22px;
}
.toggle-tipo button {
  padding: 7px 18px;
  font-family: var(--font-corpo);
  font-size: .8rem;
  font-weight: 600;
  background: var(--branco);
  border: none;
  border-right: 1px solid var(--cinza-borda);
  cursor: pointer;
  color: var(--cinza-texto);
  transition: var(--transicao);
}
.toggle-tipo button:last-child { border-right: none; }
.toggle-tipo button.active { background: var(--azul); color: var(--branco); }
.toggle-tipo button:hover:not(.active) { background: var(--cinza-fundo); color: var(--preto); }

/* File upload */
.file-drop {
  border: 2px dashed var(--cinza-medio);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transicao);
  background: var(--cinza-fundo);
}
.file-drop:hover, .file-drop.drag-over {
  border-color: var(--azul);
  background: var(--azul-suave);
}
.file-drop p { font-size: .82rem; color: var(--cinza-texto); line-height: 1.5; }
.file-drop p strong { color: var(--azul); }
.file-list { margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  background: var(--azul-suave);
  border: 1px solid var(--azul-claro);
  border-radius: var(--radius);
  font-size: .78rem;
  color: var(--azul);
}
.file-item .remove {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--vermelho);
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
  line-height: 1;
}

/* Captcha */
.captcha-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--cinza-fundo);
  border: 1px solid var(--cinza-borda);
  border-radius: var(--radius);
  padding: 12px 16px;
}
.captcha-question {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--azul);
  letter-spacing: .06em;
  min-width: 72px;
}
.captcha-box input { width: 72px !important; text-align: center; font-weight: 700; }

/* Rich editor */
.rich-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  padding: 5px 7px;
  background: var(--cinza-fundo);
  border: 1px solid var(--cinza-medio);
  border-bottom: none;
  border-radius: var(--radius) var(--radius) 0 0;
}
.rich-toolbar button {
  width: 26px; height: 26px;
  border: none; background: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .8rem;
  color: var(--cinza-escuro);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transicao);
}
.rich-toolbar button:hover { background: var(--cinza-borda); }
.rich-editor {
  width: 100%;
  min-height: 140px;
  border: 1px solid var(--cinza-medio);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 11px 12px;
  font-family: var(--font-corpo);
  font-size: .875rem;
  line-height: 1.6;
  outline: none;
  overflow-y: auto;
}
.rich-editor:focus { border-color: var(--azul); box-shadow: 0 0 0 3px rgba(19,81,180,.12); }

/* Mapa */
#mapa-denuncia {
  height: 320px;
  border-radius: var(--radius);
  border: 1px solid var(--cinza-borda);
  margin-top: 10px;
  display: none;
}
#mapa-denuncia.visible { display: block; }

/* ============================================================
   ALERTAS
   ============================================================ */
.alert {
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: .862rem;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  border-left: 4px solid transparent;
  line-height: 1.5;
}
.alert-success { background: #e3f5e5; color: #0c4e14; border-left-color: var(--verde-ok); }
.alert-error   { background: #fce8e8; color: #7a0000; border-left-color: var(--vermelho); }
.alert-warning { background: #fff8e1; color: #6b4700; border-left-color: var(--amarelo); }
.alert-info    { background: var(--azul-suave); color: var(--azul); border-left-color: var(--azul); }

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 2px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.badge-recebida       { background: var(--azul-claro); color: var(--azul-hover); }
.badge-em_analise     { background: #fff0b3; color: #6b4700; }
.badge-em_atendimento { background: #ffe0b2; color: #5a3200; }
.badge-concluida      { background: #c8e6c9; color: #1b5e20; }
.badge-arquivada      { background: var(--cinza-borda); color: var(--cinza-texto); }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transicao);
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--branco);
  border-radius: var(--radius-md);
  border-top: 4px solid var(--azul);
  padding: 28px 32px;
  max-width: 460px;
  width: calc(100% - 36px);
  box-shadow: 0 8px 36px rgba(0,0,0,.18);
  transform: translateY(-10px);
  transition: transform var(--transicao);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal h2 { font-family: var(--font-titulo); font-size: 1.1rem; font-weight: 700; color: var(--azul); margin-bottom: 10px; }
.modal p  { font-size: .862rem; color: var(--cinza-escuro); line-height: 1.6; margin-bottom: 22px; }
.modal-actions { display: flex; gap: 10px; justify-content: flex-end; }

/* ============================================================
   PROTOCOLO
   ============================================================ */
.protocolo-box {
  background: var(--azul-suave);
  border: 1px solid var(--azul-claro);
  border-left: 4px solid var(--azul);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}
.protocolo-num {
  font-family: monospace;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--azul);
  letter-spacing: .08em;
  background: var(--branco);
  padding: 10px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--azul-claro);
  display: inline-block;
  margin: 12px 0;
}

/* ============================================================
   RODAPÉ COMPLETO
   ============================================================ */
.site-footer {
  background: var(--azul);
  color: rgba(255,255,255,.82);
  margin-top: 60px;
}
.footer-corpo {
  max-width: 1200px;
  margin: auto;
  padding: 48px 24px 36px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 44px;
}
.footer-col h4 {
  font-family: var(--font-titulo);
  font-size: .72rem;
  font-weight: 700;
  color: var(--branco);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.footer-col .nome-pref {
  font-family: var(--font-titulo);
  font-size: .98rem;
  font-weight: 700;
  color: var(--branco);
  line-height: 1.25;
  margin-bottom: 3px;
}
.footer-col .nome-sec {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 14px;
}
.footer-col p {
  font-size: .78rem;
  line-height: 1.75;
  color: rgba(255,255,255,.68);
}
.footer-col address {
  font-style: normal;
}
.footer-col address .rotulo {
  display: block;
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-top: 10px;
  margin-bottom: 2px;
}
.footer-col address .valor {
  font-size: .8rem;
  color: rgba(255,255,255,.82);
}
.footer-col address a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: .8rem;
}
.footer-col address a:hover { color: var(--branco); text-decoration: underline; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a {
  font-size: .78rem;
  color: rgba(255,255,255,.68);
  text-decoration: none;
  transition: var(--transicao);
}
.footer-col ul li a:hover { color: var(--branco); text-decoration: underline; }

/* Grade de horários */
.horario-grade { display: flex; flex-direction: column; gap: 0; }
.horario-linha {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .76rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.65);
}
.horario-linha:last-child { border-bottom: none; }
.horario-linha .hora { color: rgba(255,255,255,.88); font-weight: 600; }

/* Linha inferior */
.footer-base {
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-base .inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-base p { font-size: .7rem; color: rgba(255,255,255,.45); }
.footer-base .links-base { display: flex; gap: 18px; }
.footer-base .links-base a {
  font-size: .7rem;
  color: rgba(255,255,255,.45);
  text-decoration: none;
}
.footer-base .links-base a:hover { color: rgba(255,255,255,.75); }
.footer-govbr {
  background: rgba(0,0,0,.2);
  text-align: center;
  padding: 9px 20px;
  font-size: .65rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-muted  { color: var(--cinza-texto); }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mb-4  { margin-bottom: 16px; }
.w-full { width: 100%; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 960px) {
  .footer-corpo { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .header-divider, .header-sistema { display: none; }
  .barra-govbr .links-gov { display: none; }
  .banner-wrap { max-height: 280px; }
  .banner-texto h2 { font-size: 1.4rem; }
  .stepper-bar { display: none; }
}
@media (max-width: 600px) {
  .footer-corpo { grid-template-columns: 1fr; gap: 24px; }
  .footer-base .inner { flex-direction: column; text-align: center; }
  .tipo-rotulo { display: none; }
  .form-row { grid-template-columns: 1fr; }
}
