#footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--azul);
  color: white;
  padding: 10px;
}

.footer-content-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-content-logo img {
  width: 15rem; /* Ajuste o valor conforme o tamanho desejado */
  height: auto; /* Mantém a proporção da imagem */
  padding:1rem;
}

.footer-content {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
}
.footer-content-1 {
  width: 40%;
}
.footer-content-2 {
  width: 30%;
}
.footer-content-3 {
  width: 30%;
}

.footer-content-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-content-div strong {
  margin: 10px 0;
}

.footer-brand {
  height: 100px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media (max-width: 768px) {
  .footer-content {
      flex-direction: column;
  }

  .footer-content-1, .footer-content-2, .footer-content-3 {
      width: 100%;
      text-align: center;
  }

  .footer-content-logo img {
      width: 10rem;
  }
}