/*watsap fijo en la web*/

.float{
  position:fixed;
  width:60px;
  height:60px;
  bottom:40px;
  right:40px;
  background-color:#25d366;
  color:#FFFFFF;
  border-radius:50px;
  text-align:center;
  font-size:30px;
  box-shadow: 2px 2px 3px #999;
  cursor: pointer;
  border: none;
  transition: transform 0.3s ease;
  z-index: 999;
}

.float:hover{
  transform: scale(1.2);
}

.my-float{
  margin-top:16px;
}

@media screen and (max-width:800px){
  .float{
    bottom: 15px;
    right: 15px;
  }
}