.site-footer {
  background-color: #fff;
  color: #334155;
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: start;
}

@media (min-width: 640px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.5rem;
  }
}

.site-footer__heading {
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
}

.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #64748b;
  transition: color 0.15s ease;
}

.site-footer__link::before {
  content: '';
  flex-shrink: 0;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 9999px;
  background-color: #2563eb;
}

.site-footer__link:hover {
  color: #1e293b;
}

.site-footer__link--contact::before {
  display: none;
}

.site-footer__link-icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: #2563eb;
}

.site-footer__bottom {
  border-top: 1px solid #e2e8f0;
}

.site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    text-align: left;
  }
}

.site-footer__brand img {
  height: 2.5rem;
  width: auto;
}

.site-footer__copy {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
}

.site-footer__copy strong {
  font-weight: 600;
  color: #2563eb;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.375rem;
  color: #475569;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.site-footer__social-link:hover {
  color: #2563eb;
  background-color: #eff6ff;
}

.site-footer__social-link svg {
  width: 1.125rem;
  height: 1.125rem;
}

.site-footer__social-link--whatsapp svg {
  width: 1rem;
  height: 1rem;
}
