#carros {
    width: calc(100% - 160px);
	max-width: 900px;
	margin: 0 auto;
	overflow: auto;
	padding: 0 80px;
}

.carros-box {
	position: relative;
	width: 50%;
	float: left;
	overflow: hidden;
}

.carros-box img {
	width: 100%;
	vertical-align: middle;
	/*
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    */
}

.carros-box:hover {
	cursor: pointer;
}

/*
.carros-box img:hover {
    width: 110%;
    margin-left: -5%;
    margin-top: -5%;
    opacity: 0.65;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
*/

.carros-box-info {
	position: absolute;
	top: 5%;
	/* transform: translateY(-50%); */
	left: 5%;
	/* right: 0; */
	pointer-events: none;
}

@media screen and (max-width: 700px) {
   	.carros-box {
		width: 100%;
		float: none;
	}
	#carros {
	    width: calc(100% - 40px);
		max-width: 900px;
		margin: 0 auto;
		overflow: auto;
		padding: 0 20px;
	}
}



/* outros */

.line {
	width: 48px; 
	height: 5px;
	background-color: #000;
	/* margin: 0 auto; */
	margin-top: 1rem;
	margin-bottom: 1rem;
}