#whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;

    width: 230px;
    height: 40px;

    background: #5AC83C;
    color: #fff;
    border-radius: 999px;

    padding: 12px 20px 12px 52px;
    gap: 14px;

    cursor: pointer;
    z-index: 9999;
    overflow: visible;

    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;

    text-align: center;
}

#whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.45);
}

/* ÍCONE */
.whatsapp-icon {
    position: absolute;
    left: 1%;     /* joga para fora */

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
}

/* SVG / IMG */
.whatsapp-icon img {
    width: 140px;
    height: 100px;
}

/* TEXTO */
.whatsapp-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    width: 300px;
}

.whatsapp-text strong {
    font-size: 14px;
    font-weight: 800;
    width: 128px;
    margin: auto;
}

.whatsapp-text span {
    font-size: 13px;
    font-weight: 400;
}

/* MOBILE */
@media (max-width: 768px) {
    #whatsapp-float {
        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-icon {
        position: relative;
        left: 0;
        top: 0;
        box-shadow: none;
    }
}
