/* Floating WhatsApp button with breathing pulse rings */
.awgc-whatsapp-float {
	position: fixed;
	bottom: 15px;
	left: 15px;
	z-index: 9998;
	width: 56px;
	height: 56px;
	display: block;
	text-decoration: none;
}

.awgc-whatsapp-float__btn {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	font-size: 28px;
	line-height: 1;
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.awgc-whatsapp-float:hover .awgc-whatsapp-float__btn,
.awgc-whatsapp-float:focus-visible .awgc-whatsapp-float__btn {
	transform: scale(1.08);
	box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
	color: #fff;
}

.awgc-whatsapp-float:focus-visible {
	outline: none;
}

.awgc-whatsapp-float:focus-visible .awgc-whatsapp-float__btn {
	outline: 3px solid rgba(37, 211, 102, 0.35);
	outline-offset: 3px;
}

.awgc-whatsapp-float__rings,
.awgc-whatsapp-float__rings::before,
.awgc-whatsapp-float__rings::after {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px solid rgba(37, 211, 102, 0.55);
	pointer-events: none;
}

.awgc-whatsapp-float__rings {
	z-index: 1;
	animation: awgcWaBreath 2.4s ease-out infinite;
}

.awgc-whatsapp-float__rings::before,
.awgc-whatsapp-float__rings::after {
	content: '';
}

.awgc-whatsapp-float__rings::before {
	animation: awgcWaBreath 2.4s ease-out infinite;
	animation-delay: 0.8s;
}

.awgc-whatsapp-float__rings::after {
	animation: awgcWaBreath 2.4s ease-out infinite;
	animation-delay: 1.6s;
}

@keyframes awgcWaBreath {
	0% {
		transform: scale(1);
		opacity: 0.75;
	}

	70%,
	100% {
		transform: scale(1.75);
		opacity: 0;
	}
}

@media (max-width: 767px) {
	.awgc-whatsapp-float {
		bottom: 12px;
		left: 12px;
		width: 52px;
		height: 52px;
	}

	.awgc-whatsapp-float__btn {
		width: 52px;
		height: 52px;
		font-size: 26px;
	}
}
