/* ===== FOOTER ===== */
.site-footer{
  background: var(--bg);
  color: var(--text);
  padding: 64px 0 0;
}

.footer__grid{
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* Coluna 1 */
.footer__logo img{
  height: 54px;
  width: auto;
  display: block;
}

.footer__text{
  margin: 18px 0 18px;
  color: rgba(254,249,245,.85);
  line-height: 1.6;
  max-width: 420px;
}

/* Botão claro (igual print) */
.btn.btn--light{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fef9f5;
  color: #191919;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid rgba(0,0,0,.08);
  transition: transform .18s ease, opacity .18s ease;
}

.btn.btn--light:hover{
  transform: translateY(-2px);
  opacity: .95;
}

/* Colunas */
.footer__title{
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 16px;
  color: var(--text);
}

.footer__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer__link{
  color: rgba(254,249,245,.85);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer__link:hover{
  color: var(--text);
}

/* Ícones (simples, sem lib) */
.footer__icon{
  width: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: .85;
}

/* Endereço */
.footer__addr{
  color: rgba(254,249,245,.85);
  font-weight: 700;
  line-height: 1.55;
  display: grid;
  grid-template-columns: 22px 1fr;
  column-gap: 10px;
}

/* Barra inferior */
.footer__bottom{
  margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 18px 0;
}

.footer__bottom-inner{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(254,249,245,.75);
}

/* Responsivo */
@media (max-width: 980px){
  .footer__grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer__bottom-inner{
    flex-direction: column;
  }
}
