.wg-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--azul);
  padding: 40px 40px;
  z-index: var(--z-footer);
}

.footer-wrapper {
  width: 100%;
  max-width: 1110px;
  display: flex;
  justify-content: space-between;
}

.wg-footer__left {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.wg-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-right: 45px;
  color: var(--text-on-primary);
}

.wg-footer__links-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}

.wg-footer__links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  display: block;
  margin-bottom: 6px;
  transition: color var(--transition-fast);
}

.wg-footer__links a:hover {
  color: var(--text-on-primary);
  text-decoration: none;
}

.wg-footer__right {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
}

.wg-footer__right .footer-logo {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
}

@media screen and (max-width: 992px) {
  .wg-footer {
    padding: 40px 30px;
  }
}

@media screen and (max-width: 650px) {
  .wg-footer {
    padding: 32px 20px;
    align-items: flex-start;
  }

  .footer-wrapper {
    flex-direction: column;
    gap: 24px;
  }

  .wg-footer__left {
    width: 100%;
    justify-content: flex-start;
    gap: 0;
  }

  .wg-footer__links {
    margin-right: 24px;
    margin-bottom: 16px;
  }

  .wg-footer__links a {
    font-size: 13px;
  }

  .wg-footer__right {
    padding: 0;
  }

  .wg-footer__right .footer-logo {
    width: 48px;
    height: 48px;
  }
}

@media screen and (max-width: 400px) {
  .wg-footer {
    padding: 24px 16px;
  }

  .wg-footer__links {
    margin-right: 16px;
  }

  .wg-footer__links-title {
    font-size: 14px;
  }

  .wg-footer__links a {
    font-size: 12px;
  }
}
