.whatsapp-float {
    position: fixed;
    z-index: 28;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 16px 10px 10px;
    border-radius: 999px;
    background: #25d366;
    color: #062e18;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .25);
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, .3);
}

.whatsapp-float > b {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 2px solid currentColor;
    border-radius: 50%;
    font-size: 10px;
}

.whatsapp-float > span {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.1;
}

.whatsapp-float small {
    display: block;
    margin-bottom: 3px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.floating-inquiry {
    bottom: 84px;
}

@media (max-width: 560px) {
    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding-right: 10px;
    }

    .whatsapp-float > span {
        display: none;
    }

    .whatsapp-float > b {
        width: 38px;
        height: 38px;
    }

    .floating-inquiry {
        right: 14px;
        bottom: 76px;
    }
}
