/* Boton flotante de WhatsApp */
.whatsapp-float {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 60px;
	background-color: #25d366;
	border-radius: 50%;
	text-align: center;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	padding: 10px;
}

/* Clase para subir el botón cuando está cerca del footer */
.whatsapp-float.move-up {
	bottom: 80px;
}

.whatsapp-float img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.whatsapp-float:hover {
	background-color: #20ba5a;
	transform: scale(1.1);
	box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 576px) {
	.whatsapp-float {
		width: 50px;
		height: 50px;
		bottom: 15px;
		right: 15px;
	}

	.whatsapp-float.move-up {
		bottom: 75px;
	}
}
