/* Botão flutuante WhatsApp — painel do cliente */

.h-wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9990;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #128c7e, #25d366);
  color: #fff;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .35);
  transition: transform .15s ease, box-shadow .15s ease;
}

.h-wa-float:hover,
.h-wa-float:focus {
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, .42);
}

.h-wa-float__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  font-size: 18px;
  line-height: 1;
}

.h-wa-float__text {
  white-space: nowrap;
  padding-right: 2px;
}

@media (max-width: 480px) {
  .h-wa-float {
    right: 12px;
    bottom: 12px;
    padding: 8px 12px 8px 8px;
    font-size: 12px;
  }

  .h-wa-float__badge {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .h-wa-float__text {
    display: none;
  }
}
