.wa-float {
  position: fixed;
  z-index: 2147483000;
  right: 14px;
  bottom: 14px;
  max-width: min(260px, calc(100vw - 28px));
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  animation: wa-float-sway 6s ease-in-out infinite alternate;
}

/* Funil /solicitar: canto superior direito (não cobre o botão Continuar) */
.wa-float.wa-float--top {
  top: calc(14px + env(safe-area-inset-top, 0px));
  bottom: auto;
}

@keyframes wa-float-sway {
  from {
    transform: translateX(-1.5px);
  }
  to {
    transform: translateX(1.5px);
  }
}

.wa-float__chip {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 9px 11px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.12);
  font-size: 11.5px;
  line-height: 1.35;
  color: #0f172a;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.wa-float__chip:hover {
  border-color: #86efac;
  box-shadow: 0 8px 26px rgba(5, 150, 105, 0.15);
}

.wa-float__chip:active {
  transform: scale(0.99);
}

.wa-float__chip-text {
  flex: 1;
  min-width: 0;
}

.wa-float__chip-text strong {
  color: #059669;
  font-weight: 700;
}

.wa-float__icon {
  flex-shrink: 0;
  color: #25d366;
  opacity: 0.95;
}

@media (max-width: 480px) {
  .wa-float {
    right: 10px;
    bottom: 10px;
    max-width: min(240px, calc(100vw - 20px));
  }

  .wa-float.wa-float--top {
    top: calc(10px + env(safe-area-inset-top, 0px));
    bottom: auto;
  }

  .wa-float__chip {
    font-size: 11px;
    padding: 8px 10px;
    gap: 6px;
  }

  .wa-float__icon {
    width: 16px;
    height: 16px;
  }
}
