/*ESTILOS BANNER ANIMADO*/

.banner-animado {
	overflow: hidden;
	max-width: 1500px;
	margin: auto;
	height: 300px;
	animation: banner-animado 10s infinite linear alternate;
	background: #000;
	background-size: 100% 100%;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.banner-animado img {
	object-fit: cover;
}
@keyframes banner-animado {
	0%, 20% {
		background-image: url(../img/banner-animado/banner-animado1.jpg);
		background-size: cover;
		background-position: center;
	}
	25%, 45% {
		background-image: url(../img/banner-animado/banner-animado2.jpg);
		background-size: cover;
		background-position: center;
	}
	50%, 70% {
		background-image: url(../img/banner-animado/banner-animado3.jpg);
		background-size: cover;
		background-position: center;
	}
	75%, 100% {
		background-image: url(../img/banner-animado/banner-animado4.jpg);
		background-size: cover;
		background-position: center;
	}
}
.capa {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.4);
}
.info {
	z-index: 1;
	width: 90%;
	max-width: 950px;
	text-align: center;
}
.info .titulo {
	font-size: 1.5em;
	color: #fff;
}

@media (min-width: 1024px) {
	.banner-animado {
		height: 600px;
	}
.info .titulo {
	font-size: 3em;

}
}