/* BOTON WHATSAPP */

.btn-whatsapp{
    display:inline-block;
    margin-top:2rem;
    padding:1rem 2rem;
    background:#25D366;
    color:white;
    text-decoration:none;
    border-radius:10px;
    transition:.4s;
}

.btn-whatsapp:hover{
    transform:translateY(-5px);
}

/* ================================================= */ 
/* ================BOTON WHATSAPP=================== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.3s ease;
}
.whatsapp-float img {
  width: 35px;
  height: 35px;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}