.btn-flotante {
	font-size: 40px; /* Cambiar el tamaño de la tipografia */
	color: #012a70a2; /* Color del texto */
	border-radius: 100px; /* Borde del boton */
	background-color: #ffffff; /* Color de fondo */
	padding: 18px 30px; /* Relleno del boton */
	position: fixed;
	bottom: 350px;
	right: 40px;
	transition: all 300ms ease 0ms;
	box-shadow: 8px 8px 15px rgba(0, 0, 0, 0);
	z-index: 199;
}
.btn-flotante:hover {
	background-color: #ffffff26; /* Color de fondo al pasar el cursor */
	box-shadow: 0px 15px 20px rgba(0, 0, 0, 0);
	transform: translateY(-7px);
}
@media only screen and (max-width: 600px) {
 	.btn-flotante {
		font-size: 40px;
		padding: 12px 20px;
		bottom: 20px;
		right: 20px;
	}
}