.eskura-whatsapp {
	--eskura-whatsapp-bg: #075e54;
	--eskura-whatsapp-focus: #61c2c8;
	align-items: center;
	background: var(--eskura-whatsapp-bg);
	border: 2px solid rgba(255, 255, 255, 0.92);
	border-radius: 999px;
	bottom: calc(20px + env(safe-area-inset-bottom, 0px));
	box-shadow: 0 8px 24px rgba(7, 54, 48, 0.3);
	box-sizing: border-box;
	color: #fff;
	display: inline-flex;
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	gap: 9px;
	justify-content: center;
	line-height: 1;
	min-height: 58px;
	padding: 12px 20px 12px 14px;
	position: fixed;
	right: clamp(16px, 2.5vw, 30px);
	text-decoration: none;
	transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
	z-index: 9998;
}

.eskura-whatsapp:hover {
	background: #05483f;
	box-shadow: 0 10px 30px rgba(7, 54, 48, 0.4);
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
}

.eskura-whatsapp:focus-visible {
	background: #05483f;
	box-shadow: 0 0 0 4px var(--eskura-whatsapp-focus), 0 10px 30px rgba(7, 54, 48, 0.35);
	color: #fff;
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.eskura-whatsapp__icon {
	flex: 0 0 auto;
	height: 30px;
	width: 30px;
}

.eskura-whatsapp__label {
	white-space: nowrap;
}

@media (max-width: 480px) {
	.eskura-whatsapp {
		border-radius: 50%;
		bottom: calc(14px + env(safe-area-inset-bottom, 0px));
		height: 58px;
		padding: 0;
		right: 14px;
		width: 58px;
	}

	.eskura-whatsapp__label {
		display: none;
	}
}

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

@media print {
	.eskura-whatsapp {
		display: none !important;
	}
}

