.whatsapp-btn-7f8b974f {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
}

.whatsapp-btn-7f8b974f:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    background-color: #1ebe5d;
    color: #ffffff;
}

.whatsapp-btn-7f8b974f:active {
    transform: scale(0.97);
}

.whatsapp-icon-7f8b974f {
    flex-shrink: 0;
}

.whatsapp-text-7f8b974f {
    white-space: nowrap;
}

@media (max-width: 480px) {
    .whatsapp-btn-7f8b974f {
        padding: 14px;
        border-radius: 50%;
    }

    .whatsapp-text-7f8b974f {
        display: none;
    }

    .whatsapp-icon-7f8b974f {
        width: 26px;
        height: 26px;
    }
}