/* ===============================
   WHATSAPP FLOAT PREMIUM
================================ */

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;

  display: inline-flex;
  align-items: center;
  gap: 12px;

  padding: 14px 20px;

  background: #ffffff;
  color: var(--text-strong);

  border: 1px solid var(--border);
  border-radius: 999px;

  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);

  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  z-index: 9999;
}

/* Ícone */
.wa-icon {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #25D366;
  color: white;

  border-radius: 50%;
  transition: transform 0.3s ease;
}

.wa-icon svg {
  width: 18px;
  height: 18px;
}

/* Hover */
.wa-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
}

.wa-float:hover .wa-icon {
  transform: scale(1.1);
}
