footer {
  background-color: #663d9c;
  color: #fff;
  padding: 20px;
  text-align: center;
  position: relative;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-mg {
  margin-left: .5rem !important;
  margin-right: .5rem !important;
}

.footer-top {
  display: flex !important;
  flex-basis: auto;
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column-reverse;
}

.footer-top-r {
  margin-bottom: 15px;
}

.footer-bottom {
  align-items: center;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.footer-bottom-l,
.footer-bottom-middle,
.footer-bottom-r {
  flex: 1 1 100%;
  text-align: center;
  padding: 10px 0;
}

.footer-bottom-middle {
  padding: 0 10px;
}

.footer-bottom-r {
  order: -1;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}

hr {
  border: 0;
  border-top: 1px solid #ffffff50;
  margin: 20px 0;
}

.footer-logo img {
  width: 100px;
  margin: 20px 0;
}

.footer-legal {
  margin: 20px 0;
}

.footer-legal p {
  font-size: 12px;
  margin: 0;
}

.footer-legal a {
  color: #fff;
  text-decoration: none;
}

.legal-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  justify-content: center;
}

.footer-ratings {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.footer-ratings img {
  width: 30px;
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.footer-social a {
  color: #fff;
  gap: 2rem;
}

.footer-social-item {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  /* Fundo meio transparente */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px;
  /* Espaçamento entre os itens */
  border-radius: 5px;
  /* Bordas arredondadas */
  transition: background-color 0.3s;
  /* Transição suave para o hover */
}

.footer-social-item a {
  color: #fff;
  font-size: 20px;
  /* Tamanho da fonte dos ícones */
  text-decoration: none;
}

.footer-social-item:hover {
  background-color: rgba(255, 255, 255, 0.5);
  /* Fundo mais claro ao passar o mouse */
}

.footer-language {
  display: block;
}

footer select {
  background-color: #333;
  color: #fff;
  border: none;
  padding: 5px 10px;
  font-size: 14px;
}

@media (min-width: 680px) {
  .footer-top {
    flex-direction: row;
  }

  .footer-top-r {
    margin-left: auto !important;
    margin-bottom: 0;
  }

  .footer-bottom {
    align-items: normal;
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-bottom-l,
  .footer-bottom-middle,
  .footer-bottom-r {
    order: 0;
    /* Resetando a ordem para o padrão */
    flex: 0 0 auto;
    text-align: left;
    padding: 0;
  }

  .footer-bottom-middle {
    flex: 1 1 auto;
    padding: 0 30px;
  }
  .legal-links {
    justify-content: unset;
  }
}