/* ===== BOTÕES FLOAT PREMIUM ===== */

.cta-whatsapp,
.cta-topo{
  position:fixed;
  z-index:99999;
  opacity:0;
  transform:translateY(20px);
  pointer-events:none;
  transition:all .35s ease;
}

/* WhatsApp */
.cta-whatsapp{
  bottom:20px;
  right:20px;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:24px;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
}

/* Topo */
.cta-topo{
  bottom:20px;
  left:20px;
  width:50px;
  height:50px;
  border-radius:50%;
  background:#e11d48;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
  box-shadow:0 10px 25px rgba(0,0,0,.2);
}

/* estado visível */
.cta-show{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

/* hover premium */
.cta-whatsapp:hover,
.cta-topo:hover{
  transform:scale(1.1);
}