.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
