footer {
	width: 100%;
	height: 50px;
	display: flex;
	justify-content: center;
	position: relative;
	background-color: #0c6e31;
}
footer>button {
	border: none;
	background-color: transparent;
}
#btn-whatsapp {
	width: 50px;
	height: 50px;
	position: absolute;
	top: -70px;
	right: 10px;
	z-index:111;
	background-color: #32BA46;
	border-radius: 50%;
	transition: ease all 0.4s;
	box-shadow: 0 2px 2px 0 rgb(0 0 0 / 14%), 0 3px 1px -2px rgb(0 0 0 / 12%), 0 1px 5px 0 rgb(0 0 0 / 20%);
	display: flex;
	justify-content: center;
	align-items: center;
}

#btn-whatsapp:hover {
	box-shadow: 0 16px 24px 2px rgb(0 0 0 / 14%), 0 6px 30px 5px rgb(0 0 0 / 12%), 0 8px 10px -7px rgb(0 0 0 / 20%);
	right: 20px;
	transform: scale(1.05, 1.05);
}