/* =====================================================
   WHATSAPP FLUTUANTE
===================================================== */

.whatsapp-flutuante {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 62px;
    height: 62px;

    background: #25D366;

    border-radius: 50%;

    display: flex;

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

    text-decoration: none;

    z-index: 9999;

    box-shadow: 0 6px 18px rgba(0,0,0,0.20);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


/* =====================================================
   ÍCONE
===================================================== */

.whatsapp-flutuante img {
    display: block;

    width: 42px;
    height: 42px;

    object-fit: contain;
}


/* =====================================================
   HOVER
===================================================== */

.whatsapp-flutuante:hover {
    background: #20ba5a;

    transform: scale(1.08);

    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}


/* =====================================================
   CELULAR
===================================================== */

@media screen and (max-width: 600px) {

    .whatsapp-flutuante {
        right: 18px;
        bottom: 18px;

        width: 58px;
        height: 58px;
    }


    .whatsapp-flutuante img {
        width: 32px;
        height: 32px;
    }

}