/* ============================================================================
   shared/cf-wa-link.css — Botão WhatsApp padronizado (M9)
============================================================================ */
.cf-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: #25D366;
  color: #fff;
  border: 0;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background .12s, transform .08s;
  font-family: inherit;
  line-height: 1;
}
.cf-wa-btn:hover { background: #1EA952; transform: translateY(-1px); }
.cf-wa-btn:active { transform: translateY(0); }
.cf-wa-btn:disabled,
.cf-wa-btn[disabled] {
  background: #E5E7EB;
  color: #94A3B8;
  cursor: not-allowed;
  transform: none;
}
.cf-wa-btn i { flex-shrink: 0; }

/* Variante outline (pra contextos onde verde sólido é demais) */
.cf-wa-btn-outline {
  background: transparent;
  color: #1EA952;
  border: 1px solid #25D366;
}
.cf-wa-btn-outline:hover {
  background: #25D36615;
  color: #15803D;
}
