.site-footer {
  background: var(--suporte10);
  padding: 64px 24px 0;
}

.site-footer__top {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__brand {
  flex: 1.2;
  min-width: 0;
}

.site-footer__logo {
  height: 34px;
  width: auto;
  margin-bottom: 16px;
}

.site-footer__tagline {
  color: var(--suporte5);
  max-width: 320px;
  margin-bottom: 20px;
}

.site-footer__social-label {
  color: var(--suporte5);
  margin-bottom: 10px;
}

.site-footer__social {
  display: flex;
  gap: 10px;
}

.site-footer__social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cinza1);
  transition: background-color 0.2s ease;
}

.site-footer__social-btn:hover {
  background: var(--primaria5);
}

.site-footer__social-btn svg {
  width: 16px;
  height: 16px;
}

.site-footer__pages {
  flex: 1.4;
  min-width: 0;
}

.site-footer__contacts {
  flex: 1.2;
  min-width: 0;
}

.site-footer__heading {
  color: var(--cinza1);
  font-weight: 700;
  margin-bottom: 18px;
}

.site-footer__pages-grid {
  display: flex;
  gap: 32px;
}

.site-footer__pages-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer__link {
  color: var(--suporte5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.site-footer__link:hover {
  color: var(--cinza1);
}

.site-footer__link--active {
  color: var(--primaria5);
  font-weight: 700;
}

.site-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--suporte5);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 16px;
}

.site-footer__contact-item:last-child {
  margin-bottom: 0;
  align-items: flex-start;
}

a.site-footer__contact-item:hover {
  color: var(--cinza1);
}

.site-footer__contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primaria5);
  color: var(--cinza1);
  flex-shrink: 0;
}

.site-footer__contact-icon svg {
  width: 13px;
  height: 13px;
}

.site-footer__bottom {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  color: var(--suporte6);
  font-size: 13px;
}

.site-footer__powered a,
.site-footer__privacy {
  color: var(--suporte6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__powered a:hover,
.site-footer__privacy:hover {
  color: var(--cinza1);
}

.site-footer__powered a.site-footer__powered-link {
  color: var(--primaria5);
  font-weight: 700;
}

.site-footer__powered a.site-footer__powered-link:hover {
  color: var(--primaria6);
}

@media (max-width: 900px) {
  .site-footer__top {
    flex-direction: column;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 48px 20px 0;
  }

  .site-footer__pages-grid {
    flex-wrap: wrap;
    gap: 24px;
  }

  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
