.site-footer {
  border-top: 1px solid var(--border);
  background: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1fr;
  gap: 42px;
  padding: 64px 0;
}

.footer-brand-logo .brand-mark {
  transform: scale(0.82);
  transform-origin: left center;
}

.footer-brand-logo .brand-text {
  font-size: 1.9rem;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.9rem;
}

.footer-brand ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand svg {
  width: 18px;
  height: 18px;
  color: #1c2f50;
}

.footer-links h4 {
  margin: 0 0 16px;
  color: var(--foreground);
  font-size: 0.92rem;
}

.footer-links a {
  display: block;
  margin: 10px 0;
  color: var(--muted);
  font-size: 0.9rem;
  transition: 0.2s;
}

.footer-links a:hover {
  color: var(--logo-blue);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding: 24px 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.brand-company {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  background: linear-gradient(
    90deg,
    #1C2F50,
    #2F6FB3,
    #6AAAF0
  );

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Links legais do rodapé */
.footer-bottom {
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom-links span {
  color: var(--muted);
}

.footer-bottom-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--logo-blue);
}

@media (max-width: 720px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-links {
    justify-content: flex-start;
    gap: 10px 14px;
  }
}
