footer {
  height: fit-content;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-grafiti);
  padding: 80px 0;
  color: white;

  @media (max-width: 720px) {
    padding: 60px 0;
  }
}

.footer-main {
  width: 100%;
  max-width: var(--safezone-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  @media (max-width: 720px) {
    flex-direction: column;
    gap: 60px;
  }
}

.logoposrodape {
  height: 120px;
  width: 120px;
}

.logofagrodape {
  width: 240px;
}

.logofagrodape,
.logoposrodape {
  &:hover {
    filter: brightness(1.2);
    cursor: pointer;
  }

  transition: 200ms;
}

.rodape-text {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 14px;

  @media (max-width: 640px) {
    text-align: center;
    align-items: center;
  }

}

.rodape-text p {
  font-size: 12px;
}