.whatsapp-float {
    width: auto;
    height: 56px;
    min-width: 56px;
    padding: 0 20px 0 15px;
    gap: 10px;
    border-radius: 999px;
    background: #128c4a;
    color: #fff;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .28);
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover {
    background: #0d753d;
    transform: translateY(-2px);
    box-shadow: 0 13px 32px rgba(0, 0, 0, .34);
}

.whatsapp-float-icon {
    display: grid;
    width: 27px;
    height: 27px;
    place-items: center;
}

.whatsapp-float-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 600px) {
    .whatsapp-float {
        width: 56px;
        padding: 0;
    }

    .whatsapp-float-label {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float {
        transition: none;
    }
}
