/* Complemento do botão flutuante de WhatsApp */
.whatsapp-float {
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: visible !important;
}

.whatsapp-float__label {
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%);
    width: max-content;
    padding: 10px 15px;
    border-radius: 12px;
    background: #ffffff;
    color: #241c54;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(25, 20, 55, 0.18);
    pointer-events: none;
}

.whatsapp-float__label::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -7px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    transform: translateY(-50%) rotate(45deg);
}

.whatsapp-float svg {
    position: relative;
    z-index: 1;
}

@media (max-width: 560px) {
    .whatsapp-float__label {
        right: calc(100% + 10px);
        padding: 9px 12px;
        font-size: 12px;
    }
}
