.whatsapp-float-btn-7c6ffd33 {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: whatsapp-pulse-7c6ffd33 2s infinite;
}

.whatsapp-float-btn-7c6ffd33:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float-icon-7c6ffd33 {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.whatsapp-float-tooltip-7c6ffd33 {
    position: absolute;
    right: 72px;
    background-color: #333;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.whatsapp-float-tooltip-7c6ffd33::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.whatsapp-float-btn-7c6ffd33:hover .whatsapp-float-tooltip-7c6ffd33 {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsapp-pulse-7c6ffd33 {
    0% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.7);
    }
    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 480px) {
    .whatsapp-float-btn-7c6ffd33 {
        width: 52px;
        height: 52px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-float-icon-7c6ffd33 {
        width: 24px;
        height: 24px;
    }

    .whatsapp-float-tooltip-7c6ffd33 {
        display: none;
    }
}
