/* WhatsApp Float Button */
.whatsapp-float {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999;
}

.whatsapp-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #25D366;
	color: #ffffff;
	box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
	transition: all 0.3s ease;
	text-decoration: none;
	position: relative;
}

.whatsapp-button:hover {
	transform: scale(1.1);
	box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
	background: #20b85a;
	color: #ffffff;
}

.whatsapp-button svg {
	width: 32px;
	height: 32px;
	fill: currentColor;
}

/* Tooltip */
.whatsapp-tooltip {
	position: absolute;
	right: 70px;
	background: #1a1a1a;
	color: #ffffff;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	pointer-events: none;
}

.whatsapp-tooltip::after {
	content: '';
	position: absolute;
	right: -6px;
	top: 50%;
	transform: translateY(-50%);
	border-left: 6px solid #1a1a1a;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
}

.whatsapp-button:hover .whatsapp-tooltip {
	opacity: 1;
	visibility: visible;
}

/* Pulse Animation */
.whatsapp-button::before {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 50%;
	background: rgba(37, 211, 102, 0.2);
	animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}

/* Responsive */
@media (max-width: 576px) {
	.whatsapp-float {
		bottom: 20px;
		right: 20px;
	}
	
	.whatsapp-button {
		width: 52px;
		height: 52px;
	}
	
	.whatsapp-button svg {
		width: 28px;
		height: 28px;
	}
	
	.whatsapp-tooltip {
		display: none;
	}
}