/* =============================================================
   Site Footer — Central do Timão
   ============================================================= */

.site-footer {
  background-color: #000000;
  border-top: 1px solid #1a1a1a;
  padding: 48px 24px 32px;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ── Top: logo + menu ─────────────────────────────────────── */

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.site-footer__logo:hover {
  opacity: 1;
}

.site-footer__logo img {
  height: 40px;
  width: auto;
  display: block;
}

.site-footer__nav {
  display: flex;
  align-items: center;
}

.site-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.site-footer__menu a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #aaaaaa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__menu a:hover {
  color: #ffffff;
}

/* ── Bottom: descrição + redes ────────────────────────────── */

.site-footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #1a1a1a;
}

.site-footer__descricao {
  font-family: 'Inter', sans-serif;
  font-size: 0.825rem;
  color: #666666;
  margin: 0;
  line-height: 1.6;
  max-width: 480px;
}

.site-footer__redes {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  align-items: center;
}

.site-footer__rede {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__rede:hover {
  color: #F14629;
}

/* ── Copyright ────────────────────────────────────────────── */

.site-footer__copyright {
  padding-top: 20px;
  border-top: 1px solid #1a1a1a;
  text-align: center;
}

.site-footer__copyright span {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: #444444;
}

/* ── Mobile ───────────────────────────────────────────────── */

@media (max-width: 768px) {
  .site-footer {
    padding: 36px 20px 24px;
  }

  .site-footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 20px;
  }

  .site-footer__redes {
    gap: 16px;
  }
}
