            .whatsapp-container {
                position: fixed;
                right: 15px;
                bottom: 15px;
                display: flex;
                flex-direction: column;
                gap: 5px;
                z-index: 9999;
            }

            .whatsapp-button {
                display: flex;
                align-items: center;
                background-color: #111B21;
                border-radius: 50px;
                cursor: pointer;
                padding: 5px;
                transition: width 0.5s ease;
                width: 50px;
                height: 50px;
                overflow: hidden;
            }

            .whatsapp-button:first-child:hover {
                width: 260px;
            }

            .whatsapp-button:last-child:hover {
                width: 275px;
            }

            .whatsapp-icon {
                color: #111B21;
                font-size: 20px;
                width: 40px;
                height: 40px;
                background-color: #25D366;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .whatsapp-text {
                display: none;
                margin-left: 10px;
                font-size: 14px;
                color: #ffffff;
            }

            .whatsapp-button:first-child:hover 
            .whatsapp-text {
                display: inline;
            }

            .whatsapp-button:last-child:hover 
            .whatsapp-text {
                display: inline;
            }