/*
 * footer.css — Rodapé navy do tema (global, todas as páginas) + WhatsApp flutuante.
 * Carregado sem condição via ai_theme_enqueue_assets().
 * Tokens de cor/tipografia ficam no :root de style.css.
 */

.ft-footer,
.wa-float { font-family: var(--tf-font); }

.ft-footer a { text-decoration: none; }
.ft-footer a:hover { text-decoration: none; }

/* ===== FOOTER ===== */
.ft-footer { background: var(--tf-navy); color: #fff; }
.ft-inner { max-width: var(--tf-container); margin: 0 auto; padding: 64px 32px 30px; }
.ft-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px; }
.ft-logo { height: 42px; width: auto; display: block; }
.ft-desc { font-size: 13.5px; line-height: 1.65; color: #b7bef0; margin: 18px 0 0; max-width: 280px; }
.ft-social { display: flex; gap: 10px; margin-top: 20px; }
.ft-social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.ft-col-title { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--tf-yellow); margin-bottom: 16px; }
.ft-links { display: flex; flex-direction: column; gap: 11px; }
.ft-links a, .ft-links span { font-size: 14px; color: #c3c8ee; }
/* Reset do <ul> gerado pelo wp_nav_menu nas colunas do rodapé */
.ft-menu-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.ft-menu-list li { margin: 0; }
.ft-menu-list a { font-size: 14px; color: #c3c8ee; }
.ft-menu-list a:hover { color: #fff; }
.ft-phone { color: #fff !important; font-weight: 600; }
.ft-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.ft-copy { font-size: 12.5px; color: #9aa1d8; }
.ft-copy a { color: #fff; font-weight: 600; }
.ft-legal { display: flex; gap: 22px; }
.ft-legal a { font-size: 12.5px; color: #9aa1d8; }

/* ===== WHATSAPP FLUTUANTE ===== */
.wa-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.6);
}
.wa-float:hover { color: #fff; }

/* ===== RESPONSIVO ===== */
@media (max-width: 640px) {
  .ft-inner { padding-left: 20px; padding-right: 20px; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; }
  .wa-float-label { display: none; }
}
