.footer-items.container {
  display: grid;
  grid-template-columns: repeat(3, 4fr);
  justify-items: center;
  justify-content: space-between;
  align-items: start;
  padding-bottom: 50px;
  gap: 1rem;
}

footer#footer {
  background: #16ADE0;
  padding-top: 2.5rem;
}

footer#footer h2 {
  font-size: 24px;
  color: #FAFAFA;
  margin-bottom: 20px;
}

footer p,
footer a {
  color: #FAFAFA;
  font-size: 16px;
  transition: 0.4s ease-in-out;
  text-align: justify;
}
.footer-column ul {
    padding-left: 20px;
}
.footer-column ul li {
  margin: 10px 0;
  list-style: square;
  color: #fff;
}

.footer-column ul li::before {
  line-height: 0;
  padding-right: 10px;
  color: #fff;
}

footer a:hover {
  color: var(--primary);
  transition: 0.4s ease-in-out;
}

footer a:hover .footer-column ul li::before {
  padding-right: 5px;
}

.footer-copy-validators.container {
  display: flex;
  padding: 15px 0;
  text-align: center;
  border-top: solid 1px #fff;
  justify-content: space-between;
  align-items: center;
}

.footer-contato {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-contato-content p {
  margin: 0;
  font-size: 18px;
  text-transform: uppercase;
}

.footer-contato-content p.none-case {
  font-size: 16px;
  text-transform: none;
}

.footer-copy p {
    margin: 0;
}

@media only screen and (max-width: 1100px) {
  .footer-items.container {
    display: flex;
    flex-wrap: wrap;
  }
}
