/* Botão Flutuante WhatsApp */
.whatsapp-float {
	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 9999;
}

.whatsapp-button {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: #25d366;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

.whatsapp-button:hover {
	background-color: #20ba5a;
	transform: scale(1.1);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-button svg {
	width: 35px;
	height: 35px;
	fill: white;
}

/* Animação de pulso */
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
	}
	70% {
		box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
	}
}

.whatsapp-button.pulse {
	animation: pulse 2s infinite;
}

/* Tooltip */
.whatsapp-tooltip {
	position: absolute;
	left: 70px;
	top: 50%;
	transform: translateY(-50%);
	background-color: #fff;
	color: #333;
	padding: 8px 15px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	white-space: nowrap;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	font-family: Arial, sans-serif;
	font-size: 14px;
}

.whatsapp-tooltip::before {
	content: '';
	position: absolute;
	right: 100%;
	top: 50%;
	transform: translateY(-50%);
	border: 6px solid transparent;
	border-right-color: #fff;
}

.whatsapp-float:hover .whatsapp-tooltip {
	opacity: 1;
	visibility: visible;
}

/* Responsivo */
@media (max-width: 768px) {
	.whatsapp-float {
		left: 15px;
		bottom: 15px;
	}

	.whatsapp-button {
		width: 50px;
		height: 50px;
	}

	.whatsapp-button svg {
		width: 28px;
		height: 28px;
	}

	.whatsapp-tooltip {
		display: none;
	}
}
