.athmos-whatsapp-float {
	position: fixed;
	right: clamp(18px, calc((100vw - 1240px) / 2), 42px);
	bottom: 24px;
	align-items: center;
	background:
		linear-gradient(135deg, #1fa855 0%, #25d366 100%);
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	box-shadow: 0 22px 50px rgba(21, 60, 34, 0.26);
	color: #f7fff9;
	display: flex;
	gap: 0.72rem;
	justify-content: center;
	min-height: 60px;
	padding: 0.9rem 1.2rem 0.9rem 1rem;
	z-index: 9999;
	text-decoration: none;
	transition:
		transform 220ms ease,
		box-shadow 220ms ease,
		opacity 220ms ease;
	will-change: transform, opacity;
}

.athmos-whatsapp-float:hover {
	box-shadow: 0 28px 60px rgba(21, 60, 34, 0.3);
	transform: translateY(-2px);
}

.athmos-whatsapp-float__icon {
	align-items: center;
	display: inline-flex;
	flex: 0 0 auto;
	justify-content: center;
}

.athmos-whatsapp-float__label {
	color: #f7fff9;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
}

.athmos-whatsapp-float::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background-color: rgba(37, 211, 102, 0.34);
	animation: athmos-pulse 2s ease-out infinite;
	z-index: -1;
}

@keyframes athmos-pulse {
	0% {
		transform: scale(1);
		opacity: 0.34;
	}
	100% {
		transform: scale(1.16);
		opacity: 0;
	}
}

@media (max-width: 1480px) {
	.athmos-whatsapp-float {
		gap: 0;
		min-height: 60px;
		padding: 0;
		width: 60px;
	}

	.athmos-whatsapp-float__label {
		display: none;
	}
}

@media (max-width: 768px) {
	.athmos-whatsapp-float {
		right: 16px;
		bottom: 16px;
		min-height: 54px;
		padding: 0;
		width: 54px;
	}

	.athmos-whatsapp-float svg {
		width: 24px;
		height: 24px;
	}

	.athmos-whatsapp-float__label {
		font-size: 0.76rem;
	}
}

@media (max-width: 560px) {
	.athmos-whatsapp-float {
		right: 14px;
		bottom: 14px;
		justify-content: center;
		min-height: 56px;
		padding: 0;
		width: 56px;
	}

	.athmos-whatsapp-float__label {
		display: none;
	}
}

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