.imgWhats {
    transition: transform .5s;
    /* Animation */
    transform: scale(0.7);
}

.imgWhats:hover {
    transform: scale(1.2);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.scaleZoom {
    transition: transform 1.0s;
    /* Animation */
    transform: scale(1.0);
}

.scaleZoom:hover {
    transform: scale(1.2);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 1px 1px 2px #888;
    z-index: 1000;
}
.fa-whatsapp:hover, .whatsapp:hover,
.fa-whatsapp:active, .whatsapp:active{
    color: #FFF;
}

.pin:hover{
    transform: scale(1.2);
}