  @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
            }
        }

        .whatsapp-container {
            position: fixed;
            bottom: 40px;
            right: 25px;
            text-align: center;
            z-index: 1000;
        }

        .whatsapp-label {
            background-color: #ffffff;
            color: #128C7E;
            padding: 4px 8px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 6px;
            display: inline-block;
            box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
        }

        .label-mobile {
            display: none;
        }

        .label-desktop {
            display: inline;
        }

        @media (max-width: 600px) {
            .label-desktop {
                display: none;
            }

            .label-mobile {
                display: inline;
            }
        }

        .whatsapp-float {
            background-color: #25D366;
            color: #fff;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            text-align: center;
            box-shadow: 2px 2px 3px #999;
            cursor: pointer;
            transition: background-color 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            animation: pulse 2s infinite;
        }

        .whatsapp-float i {
            font-size: 28px;
        }

        .whatsapp-float:hover {
            background-color: #128C7E;
        }