.tid-whatsapp-flotante {
	--tid-wa-green: #25d366;
	--tid-wa-dark: #111018;
	--tid-wa-accent: #f20d70;

	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 999999;

	display: inline-flex;
	align-items: center;
	gap: 12px;

	min-height: 58px;
	padding: 8px 18px 8px 8px;

	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 999px;

	background: var(--tid-wa-dark);
	color: #fff !important;
	text-decoration: none !important;

	box-shadow:
		0 16px 42px rgba(17, 16, 24, 0.28),
		0 4px 12px rgba(17, 16, 24, 0.18);

	font-family: Inter, Arial, Helvetica, sans-serif;

	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		background 180ms ease;
}

.tid-whatsapp-flotante--left {
	right: auto;
	left: 24px;
}

.tid-whatsapp-flotante:hover,
.tid-whatsapp-flotante:focus-visible {
	background: #1a1822;
	color: #fff !important;
	transform: translateY(-4px);
	box-shadow:
		0 22px 54px rgba(17, 16, 24, 0.34),
		0 7px 18px rgba(242, 13, 112, 0.16);
}

.tid-whatsapp-flotante:focus-visible {
	outline: 3px solid rgba(242, 13, 112, 0.4);
	outline-offset: 4px;
}

.tid-whatsapp-flotante__icon {
	position: relative;
	display: grid;
	place-items: center;
	flex: 0 0 42px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--tid-wa-green);
}

.tid-whatsapp-flotante__icon::after {
	content: "";
	position: absolute;
	right: 1px;
	bottom: 1px;
	width: 10px;
	height: 10px;
	border: 2px solid var(--tid-wa-dark);
	border-radius: 50%;
	background: var(--tid-wa-accent);
}

.tid-whatsapp-flotante__icon svg {
	width: 23px;
	height: 23px;
	fill: #fff;
}

.tid-whatsapp-flotante__content {
	display: flex;
	flex-direction: column;
	gap: 1px;
	white-space: nowrap;
}

.tid-whatsapp-flotante__eyebrow {
	color: rgba(255, 255, 255, 0.62);
	font-size: 10px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tid-whatsapp-flotante__label {
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.25;
}

@media (max-width: 767px) {
	.tid-whatsapp-flotante {
		right: 14px;
		bottom: 14px;
		min-height: 54px;
		padding: 6px 14px 6px 6px;
		gap: 9px;
	}

	.tid-whatsapp-flotante--left {
		right: auto;
		left: 14px;
	}

	.tid-whatsapp-flotante__eyebrow {
		display: none;
	}

	.tid-whatsapp-flotante__label {
		font-size: 13px;
	}
}

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