.landing-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.landing-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .75rem 1.25rem;
}

.landing-fiscal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 2rem;
  margin: 2rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid rgb(255 255 255 / 14%);
  font-style: normal;
}

.landing-fiscal div {
  min-width: 0;
}

.landing-fiscal span,
.landing-fiscal b {
  display: block;
}

.landing-fiscal span {
  margin-bottom: .2rem;
  color: rgb(255 255 255 / 55%);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.landing-fiscal b {
  color: rgb(255 255 255 / 86%);
  font-size: .82rem;
  overflow-wrap: anywhere;
}

@media (max-width: 767.98px) {
  .landing-footer__top {
    flex-direction: column;
  }

  .landing-footer__links {
    justify-content: flex-start;
  }

  .landing-fiscal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .landing-fiscal {
    grid-template-columns: 1fr;
  }
}
