/* ═══════════════ CONTATO FINAL + FOOTER ═══════════════ */
.contato-final {
  text-align: center;
  background: var(--bg-elev);
}
.contato-final h2 { margin-bottom: 16px; }
.contato-final p { max-width: 520px; margin-inline: auto; margin-bottom: 36px; font-size: 1.1rem; }

.footer { padding-block: 40px; border-top: 1px solid var(--border-soft); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo img { height: 24px; width: auto; }
.footer-links { display: flex; align-items: center; gap: 26px; }
.footer-links a { font-size: 0.9rem; color: var(--text-dim); }
.footer-links a:hover { color: var(--green); }

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  transition: border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.footer-social svg { width: 17px; height: 17px; }
.footer-social:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

.footer-info { text-align: right; }
.footer-copy { font-size: 0.82rem; color: var(--text-mute); }
.footer-cnpj { font-size: 0.78rem; color: var(--text-mute); margin-top: 2px; }

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-info { text-align: center; }
}

/* ─── Botão flutuante do WhatsApp ─── */
.wpp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wpp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-wpp);
  transition: transform .25s var(--ease);
}
.wpp-float:hover { transform: scale(1.08); }
.wpp-float svg { width: 28px; height: 28px; color: #fff; }
