/* Ajustes visuais do sistema de patrimônio */

.card-categoria {
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  border: 0;
}
.card-categoria:hover {
  transform: translateY(-4px);
  box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
}
.card-categoria .icone {
  font-size: 2.8rem;
  line-height: 1;
}

.card-bem img.capa {
  height: 160px;
  object-fit: cover;
  width: 100%;
}
.card-bem .sem-foto {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #adb5bd;
  background: #e9ecef;
}

.mapa-picker, #mapaGeral { height: 420px; border-radius: .5rem; }
.mapa-detalhe { height: 300px; border-radius: .5rem; }

.foto-miniatura {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: .5rem;
  cursor: pointer;
}

/* Rodapé fixo na parte de baixo da janela */
.rodape-fixo {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  background: #fff;
  border-top: 1px solid #dee2e6;
  padding: .45rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: .5rem;
  text-align: center;
}
.rodape-fixo .separador { color: #adb5bd; }

/* Espaço para o conteúdo não ficar escondido atrás do rodapé */
main { padding-bottom: 4.5rem !important; }

/* Os toasts sobem para não cobrir o rodapé */
#areaToasts { bottom: 3rem !important; }

@media print {
  nav, .nao-imprimir { display: none !important; }
  main { padding: 0 !important; }
  body { background: #fff !important; }
}
