	.btn-flotante {
		font-size: 16px; /* Cambiar el tamaņo de la tipografia */
		text-transform: uppercase; /* Texto en mayusculas */
		font-weight: bold; /* Fuente en negrita o bold */
		color: #ffffff; /* Color del texto */
		border-radius: 50%; /* Borde del boton */
		letter-spacing: 2px; /* Espacio entre letras */
		background: #25d366 url(whatsapp.webp) no-repeat 1em center;
		padding: 12px;
		position: fixed;
		bottom: 60px;
		right: 60px;
		transition: all 300ms ease 0ms;
		box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
		z-index: 99;
		display: block;
		width: 45px;
		height: 45px;
		margin: 0 0 0 0;
		box-sizing: content-box;
	}
	.btn-flotante:hover {
		background-color: #d3252d; /* Color de fondo al pasar el cursor */
		box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
		transform: translateY(-7px);
	}
	@media only screen and (max-width: 600px) {
		.btn-flotante {
			font-size: 14px;
			padding: 10px;
			bottom: 30px;
			right: 30px;
		}
	}
