.whatsapp-btn-de00444d {
	position: fixed;
	bottom: 20px;
	left: 20px;
	width: 60px;
	height: 60px;
	background-color: #25d366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	z-index: 99999;
	transition: all 0.3s ease;
	animation: whatsapp-pulse-de00444d 2s infinite;
}

.whatsapp-btn-de00444d:hover {
	transform: scale(1.1);
	background-color: #128c7e;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

@keyframes whatsapp-pulse-de00444d {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
	}
	70% {
		box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}
