header {
  width: 100%;
  height: 60px;
  background-color: #f1f1f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 4px 2px -2px gray;
}

.title h1 {
  margin: 0;
  font-size: 24px;
}

.logo img {
  height: 60px; /* ajuste o tamanho conforme necessário */
}   

footer {
  background-color: #f1f1f1;
  text-align: center;
  padding: 10px 0;
  position: relative;
  bottom: 0;
  width: 100%;
  margin-top: auto;
  box-shadow: 0 -4px 2px -2px gray;
}

footer p {
  margin: 0;
  font-size: 12px;
  color: #555;
}