/* ============================================================
   BOTÃO FLUTUANTE DO WHATSAPP — Color Printi
   ============================================================ */

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s ease, background 0.15s ease;
}

.whatsapp-float:hover {
  background: #1DA851;
  transform: scale(1.06);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

@media (max-width: 480px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg {
    width: 27px;
    height: 27px;
  }
}
