/*
  Footer — extraído do Figma:
    desktop  132:5 (1920x500)
    mobile   300:1520 (430x826)

  Breakpoint real do Figma: 1920 e ~430. Ponto de troca pra layout empilhado usa o breakpoint
  fixo "tablet" (1024px) do projeto, interpolado (rules/responsive.md seção 2/3) — sem frame
  próprio nessa faixa.
*/

.site-footer {
  background-color: var(--color-navy);
  width: 100%;
  color: #ffffff;
}

.site-footer__inner {
  max-width: 1520px;
  margin-inline: auto;
  padding: 118px 20px;
}

.site-footer__cols {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer__col--about {
  max-width: 232px;
}

.site-footer__tagline {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 14px;
  line-height: 22.75px;
}

.site-footer__heading {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #ffffff;
}

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

.site-footer__list a,
.site-footer__list li {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer__link-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-footer__link-icon img {
  display: block;
  flex: 0 0 auto;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
}

.site-footer__copyright,
.site-footer__domain {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
  text-decoration: none;
}

/* ---- mobile (empilhado, interpolado a partir do breakpoint tablet fixo) ---- */

@media (max-width: 1024px) {
  .site-footer__cols {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: left;
  }

  .site-footer__col--about {
    max-width: 232px;
    text-align: center;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    margin-top: 32px;
  }
}

/* ---- mobile real (frame 300:1520, ~430px) ---- */

@media (max-width: 767px) {
  .site-footer__inner {
    padding: 50px 24px;
  }
}
