@charset "utf-8";
/* CSS Document */

.floating img {
    
    bottom: 150px;
    font-size: 14px;
    transition: bottom .2s;
    z-index: 100;
    right: 30px;
	/* Agrega la animación */
    animation: pulseAnimation 1.5s infinite alternate;
}
@media only screen and (max-width: 767px) {
 	.floating img {
		font-size: 14px;
		height: 150px;
		padding: 12px 20px;
		bottom: 150px;
		right: 0px;
		/* Agrega la animación */
    animation: pulseAnimation 1.5s infinite alternate;
	}
} 

.floating  a  img:hover{
	
	transform: scale(1,5);
	
}

@keyframes pulseAnimation {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2); /* Ajusta el valor de escala según lo necesites */
    }
	
	
	
	