/* Botão flutuante de contacto via WhatsApp */
.gt-floating-whatsapp {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 1000;
	display: inline-flex;
	align-items: center;
	gap: 0;
	width: 58px;
	height: 58px;
	overflow: hidden;
	padding: 0 17px;
	border: 1px solid rgba(197, 128, 35, .82);
	border-radius: 999px;
	background: var(--color-gold, #b56b1f);
	box-shadow: 0 10px 26px rgba(0, 0, 0, .28);
	color: #fff;
	text-decoration: none;
	transition: width .32s ease, transform .25s ease, box-shadow .25s ease;
}

.gt-floating-whatsapp img {
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	filter: brightness(0) invert(1);
}

.gt-floating-whatsapp span {
	max-width: 0;
	overflow: hidden;
	margin-left: 0;
	white-space: nowrap;
	font-size: .82rem;
	font-weight: 600;
	opacity: 0;
	transition: max-width .32s ease, margin-left .32s ease, opacity .2s ease;
}

.gt-floating-whatsapp:hover,
.gt-floating-whatsapp:focus-visible {
	width: 166px;
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(181, 107, 31, .38);
}

.gt-floating-whatsapp:hover span,
.gt-floating-whatsapp:focus-visible span {
	max-width: 110px;
	margin-left: 10px;
	opacity: 1;
}

@media (max-width: 640px) {
	.gt-floating-whatsapp {
		right: 16px;
		bottom: 16px;
		width: 52px;
		height: 52px;
		padding: 0 14px;
	}

	.gt-floating-whatsapp:hover,
	.gt-floating-whatsapp:focus-visible {
		width: 52px;
	}

	.gt-floating-whatsapp:hover span,
	.gt-floating-whatsapp:focus-visible span {
		max-width: 0;
		margin-left: 0;
		opacity: 0;
	}
}
