.icone-base{
    background:linear-gradient(115deg, #0dc152, #0dc152 ,#39b569);
    box-shadow: 0 0 23px -5px #797979;
    height: 74px;
    opacity: 1;
    width: 74px;
    padding: 12px 0;
    text-align: center;
    transition: all ease-in-out 0.2s;
    border-radius: 50%;
    position: fixed;
    right: 10px;
    bottom: 10px;
}

.icone-base::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 1;
    background: #0dc152;
    animation: pulsar infinite 3s;
    animation-direction: normal;
    border-radius: 50%;
    z-index: 990;
}


.icone-chamada {
	animation: movimentar 1s ease-in alternate infinite;
	background: #0dc152;
	border-radius: 10px;
	bottom: 150px;
	display: block;
	height: 95px;
	position: fixed;
	right: 10px;
	text-align: center;
	transition: all 0.35s ease;
	width: 80px;
	z-index: 999;
	color: #fff;
	line-height: 1em;
	padding-top: 1em;
	}

@keyframes pulsar{
    0%{
        opacity:1;
        transform:  scale(1);
    }
    100%{
        opacity: 0;
        transform: scale(2);
    }
}

@keyframes movimentar{
	0% {
		transform: translate3d(0, 0, 0);
		}
	100% {
		transform: translate3d(0, 50%, 0);
		}
	}