/* ════════════════════════════════════════════════════
   BOTÓN FLOTANTE DE WHATSAPP (sitewide)
   Ver fitness-pro-whatsapp-float.php - siempre visible, esquina
   inferior derecha, por encima de todo el contenido. Píldora con
   ícono + texto "Cotiza aquí" (igual en mobile y desktop).
════════════════════════════════════════════════════ */

.fp-whatsapp-float-btn {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 999999;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 6px 20px 6px 6px;
	border-radius: 999px;
	background: #25d366;
	color: #fff;
	text-decoration: none;
	box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
	transition: transform .15s ease, box-shadow .15s ease;
}

.fp-whatsapp-float-btn:hover,
.fp-whatsapp-float-btn:focus-visible {
	transform: scale(1.04);
	box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
	color: #fff;
}

.fp-whatsapp-float-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #fff;
	color: #25d366;
}

.fp-whatsapp-float-icon svg {
	width: 26px;
	height: 26px;
}

.fp-whatsapp-float-text {
	font-family: 'Barlow', sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.02em;
	white-space: nowrap;
	text-transform: uppercase;
}

@media (max-width: 480px) {
	.fp-whatsapp-float-btn {
		right: 14px;
		bottom: 14px;
		padding: 5px 16px 5px 5px;
		gap: 8px;
	}

	.fp-whatsapp-float-icon {
		width: 40px;
		height: 40px;
	}

	.fp-whatsapp-float-icon svg {
		width: 22px;
		height: 22px;
	}

	.fp-whatsapp-float-text {
		font-size: 13px;
	}
}
