﻿.btn-flotante {	
	position: fixed;
	bottom: 155px;
	right: 40px;
	transition: all 300ms ease 0ms;
    /*box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.1);*/
	filter: drop-shadow(0px 8px 10px rgba(0, 0, 0, 0.1));
	z-index: 99;
}
.btn-flotante:hover {
	/*background-color: #2c2fa5; /* Color de fondo al pasar el cursor */
    /*box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);*/
	filter: drop-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: 12px 20px;
		bottom: 20px;
		right: 20px;
	}
}


.mi-div-con-fondo {
  width: 100%;
  height: 110px;
  background-image: url('img/fondo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}