.whatsapp-float{
  position:fixed;
  right:28px;
  bottom:28px;
  z-index:9999;
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 14px 12px 20px;
  border-radius:60px;
  background:rgba(14,167,82,.95);
  color:white;
  box-shadow:0 18px 45px rgba(14,167,82,.35);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(14px);
  font-weight:900;
  transition:.35s;
}

.whatsapp-float:hover{
  transform:translateY(-5px) scale(1.02);
  box-shadow:0 25px 65px rgba(14,167,82,.48);
}

.whatsapp-icon{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:white;
  color:#0ea752;
  font-size:24px;
}

.whatsapp-text{
  font-size:15px;
}

@media(max-width:600px){
  .whatsapp-float{
    right:18px;
    bottom:18px;
    padding:10px;
  }

  .whatsapp-text{
    display:none;
  }

  .whatsapp-icon{
    width:54px;
    height:54px;
    font-size:26px;
  }
}
.community-mobile-float{
  display:none;
}

@media(max-width:700px){

  .community-mobile-float{
    display:block;
    position:fixed;
    left:18px;
    bottom:22px;
    z-index:9998;
    background:#f4b400;
    color:#061426;
    padding:15px 20px;
    border-radius:999px;
    font-weight:900;
    text-decoration:none;
    box-shadow:0 18px 45px rgba(244,180,0,.35);
  }

}