/* Muda Cor */

@-webkit-keyframes changeColor {

	0% {
	-webkit-filter: hue-rotate(170deg) blur(0px);
	}
	25% {
	-webkit-filter: hue-rotate(170deg) blur(0px);
	}
	45% {
	-webkit-filter: hue-rotate(70deg) blur(3px);
	}
	100% {
	-webkit-filter: hue-rotate(0deg) blur(0px);
	}

}

.changeColor {-webkit-animation:changeColor 1s ease-out;}

/* Fade In */

@-webkit-keyframes fadeIn {
	from {opacity:0;}
	to {opacity:1}
}

@-moz-keyframes fadeIn {
	from {opacity:0;}
	to {opacity:1}
}

.fadeIn {-webkit-animation:fadeIn 1s ease-out;-moz-animation:fadeIn 1s ease-out;}

/* Animação da Capitular */

@-webkit-keyframes capAnima {
	0%{margin-left:-1286px;}
	100%{margin-left:0;}
}

.capAnima {-webkit-animation:capAnima 2s;-moz-animation:capAnima 2s;}

/* Gira Icone */

@-webkit-keyframes giraIcone{
	0%{-webkit-transform:rotate(0deg) scale(2);}
	100%{-webkit-transform:rotate(720deg) scale(1);}
}

@-moz-keyframes giraIcone{
	0%{transform:rotate(0deg) scale(2);}
	100%{transform:rotate(720deg) scale(1);}
}

.giraIcone {-webkit-animation:giraIcone .5s ease-out;animation:giraIcone .5s ease-out;}