﻿.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    padding: 5px;
    text-align: center;
    line-height: 1.2;
}

    .whatsapp-float .icon-text {
        font-size: 10px;
        font-weight: 500;
        margin-bottom: 2px;
        display: block;
    }

    .whatsapp-float svg {
        width: 20px;
        height: 20px;
    }

    .whatsapp-float:hover {
        background-color: #128C7E;
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
