.whatsapp-icon {
	position: fixed;
	left: 30px;
	bottom: 7rem;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #46de16;
	border-radius: 50%;
	box-shadow: 0 0 8px rgba(70, 222, 22, 0.6);
	color: #fff;
	font-size: 32px;
	line-height: 1;
	text-decoration: none;
	z-index: 99999;
	animation: jooker-whatsapp-glow 1300ms infinite;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-icon:hover,
.whatsapp-icon:focus-visible {
	color: #fff;
	transform: scale(1.08);
}

.whatsapp-icon:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 3px;
}

@keyframes jooker-whatsapp-glow {
	0% {
		box-shadow: 0 0 5px rgba(70, 222, 22, 0.55);
	}
	50% {
		box-shadow: 0 0 22px rgba(70, 222, 22, 0.95);
	}
	100% {
		box-shadow: 0 0 5px rgba(70, 222, 22, 0.55);
	}
}

@media (prefers-reduced-motion: reduce) {
	.whatsapp-icon {
		animation: none;
	}
}

@media (max-width: 767px) {
	.whatsapp-icon {
		left: 20px;
		bottom: 6rem;
		width: 54px;
		height: 54px;
		font-size: 29px;
	}
}
