*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	font-family: arial;
}
body{
	background: url('../images/background.png');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
section{
	width: 100%;
	height: 100%;
}
.container{
	height: 100%;
	width: 100%;
	max-width: 500px;
	margin: auto;
}
.topo{
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
.topo_localizacao{
	display: flex;
	flex-direction: column;
	align-items: center;
}
.topo_localizacao .button{
	width: 70px;
	padding-top: 50px;
	padding-bottom: 12px;
	display: flex;
	justify-content: center;
	background-image: linear-gradient(180deg, #777777, #CACACA);
	border-bottom-right-radius: 20px;
	border-bottom-left-radius: 20px;
	box-shadow: 0px 0px 15px #000;
	outline: 0px;
}
.topo_localizacao p{
	margin-top: 20px;
	text-transform: uppercase;
	font-weight: bold;
}
.topo_logo{
	display: flex;
	align-items: center;
}
.topo_logo img{
	width: 100px;
}
.topo_logo h1{
	font-size: 35px;
	color: #422777;
	line-height: 35px;
	text-align: center;
	font-weight: 400;
}
.topo_logo h1 span{
	font-size: 50px;
	font-weight: 900;
}





.corpo{
	display: flex;
	flex-direction: column;
	margin-top: 30px;
}
.corpo_buttons{
	display: flex;
	width: 100%;
	justify-content: space-around;
}
.corpo_buttons a{
	display: inline-block;
	width: 100%;
	max-width: 200px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #4F0704;
	color: #FFF;
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 20px;
	box-shadow: 0px 0px 15px #000;
}
.corpo_buttons a img{
	margin-left: 20px;
	width: 25px;
}
.corpo_marcas{
	margin-top: 60px;
	display: grid;
	grid-template-columns: repeat(auto-fill, 50px);
	grid-gap: 20px
}
.corpo_marcas .marca{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
}
.corpo_marcas .marca img{
	width: 50px;
}
.corpo_midias{
	display: flex;
	justify-content: space-between;
	height: 150px;
	margin-top: 30px;
}
.corpo_midias .midia{
	width: 60px;
	height: 60px;
	background-image: linear-gradient(180deg, #CACACA, #777777, #CACACA);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	box-shadow: 0px 0px 15px #000;
}
.corpo_midias #media1{
	margin-top: 90px;
}
.corpo_midias #media2{
	margin-top: 50px
}



.rodape{
	width: 300px;
	margin: auto;
	margin-top: 30px;
	height: auto;
	padding: 10px 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #CACACA;
	border-top-right-radius: 40px;
	border-top-left-radius: 40px;
	box-shadow: 0px 0px 15px #000;
}
.rodape p{
	font-weight: bold;
	font-size: 13px;
	margin-left: 10px;
}




@media (max-width: 500px){
	body{
		background: url('../images/background-car.png');
		background-size: cover;
	    background-repeat: no-repeat;
	    background-position: center;
	}
	section{
		padding: 0px 20px;
	}

	.topo_logo{
		margin-top: 30px;
	}
	.topo_logo img{
		width: 70px;
	}
	.topo_logo h1{
	    font-size: 30px;
    }
    .topo_logo h1 span{
	    font-size: 40px;
    }

    .corpo_buttons{
    	margin-top: 50px;
    }
    .corpo_buttons a{
    	max-width: 130px;
    	font-size: 12px;
    }
    .corpo_marcas{
    	margin-top: 370px;
    }

    .rodape{
    	width: 280px;
    }
}