.botao-whatsapp {
                position: fixed;
                width: 60px;
                height: 60px;
                bottom: 60px;
                right: 30px;
                background-color: #25d366;
                color: #3e2b3e;
                border-radius: 50px;
                text-align: center;
                font-size: 30px;
                box-shadow: 1px 1px 2px #888;
                z-index: 999;
                transition: .5s;
                animation: pulse-green 1s infinite;
            }

            .botao-whatsapp svg {
                margin-top: 16px;
                fill: #fff;
            }

            @keyframes pulse-green {
                0% {
                    transform: scale(0.95);
                    box-shadow: 0 0 0 0 rgba(122, 208, 58, 1);
                }

                70% {
                    transform: scale(0.95);
                    box-shadow: 0 0 0 10px rgba(122, 208, 58, 0.5);
                }

                100% {
                    transform: scale(0.95);
                    box-shadow: 0 0 0 0 rgba(122, 208, 58, 0);
                }
            }

            .mejs-container {
                margin: 0 !important;
            }
