/* Pulsante WhatsApp fisso */
.whatsapp-float {
	position: fixed;
	width: 60px;
	height: 60px;
	bottom: 40px;
	right: 40px;
	z-index: 1000;
}

.whatsapp-button {
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	font-size: 30px;
	background-color: #25d366;
	color: white;
	border-radius: 50px;
	text-decoration: none;
	display: block;
	box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.whatsapp-button:hover {
	background-color: #128c7e;
	color: white;
	text-decoration: none;
	transform: scale(1.1);
	box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-button:focus {
	color: white;
	text-decoration: none;
}

/* Responsive per mobile */
@media (max-width: 768px) {
	.whatsapp-float {
		bottom: 20px;
		right: 20px;
		width: 50px;
		height: 50px;
	}
	
	.whatsapp-button {
		width: 50px;
		height: 50px;
		line-height: 50px;
		font-size: 25px;
	}
}