footer { width: 100% }

.rodape {
  background-image: url(backgroundrodape.jpg);
  background-position: center top;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  font-family: "Outfit";
  gap: 60px;
  padding: 60px 0;
  margin-top: 80px;
}

.rodape .botoes {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.rodape .logos {
  display: flex;
  flex-direction: row;
  gap: 72px;
  align-items: center;
}

.rodape .logos a:nth-child(1) img {
  height: 156px;
}

.rodape .logos a:nth-child(2) img {
  height: 54px;
}

.rodape .mensagem {
  display: block;
  width: 100%;
  max-width: 900px;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
  color: var(--verde-background);
}

.rodape p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

@media (max-width: 600px) {
  .rodape .botoes {
    flex-direction: column;
  }
  .rodape .logos {
    flex-direction: column;
    gap: 60px;
  }
  .rodape .mensagem {
    font-size: 24px; 
  }

  .rodape .mensagem, .rodape p { max-width: calc(100dvw - 80px); }

  .rodape .logos a:nth-child(1) img {
    height: 100px;
  }

  .rodape .logos a:nth-child(2) img {
    height: 35px;
  }
}
