.banner{
	width: 100%;
	position: relative;
	margin-bottom: -133px;
}
.banner .img,
.banner .img img{
	width: 100%;
	min-height: 735px;
	object-fit: cover;
}
.banner .texto{
	position: absolute;
	width: 100%;
	height: 100%;
	align-content: center;
    justify-content: center;
    padding: 0px 0 133px;
}
.banner .texto h2{
	font-size: 125px;
	font-weight: 700;
	text-align: center;
}


.sobre{
	width: 100%;
	position: relative;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
	background-color: var(--bg3);
	padding: 50px 0 150px;
}
.sobre .container{
	display: flex;
	gap: 50px;
}
.sobre .img{
	max-width: 870px;
	width: 100%;
	margin-top: -160px;
}
.sobre .img img{
	width: 100%;
	object-fit: contain;
}
.sobre .texto{
	max-width: 804px;
	width: 100%;
	gap: 25px;
	align-self: center;
}
.sobre .texto div{
	width: 100%;
	height: 1px;
	background-color: #0003;
	display: flex;
}
.sobre .texto p{
	font-size: 24px;
}
.sobre .texto ul{
	width: 100%;
	margin-top: 25px;
	gap: 30px;
}
.sobre .texto ul li{
	display: flex;
	align-items: center;
	gap: 25px;
	font-size: 22px;
	font-weight: 500;
}
.sobre .texto ul li i{
	font-size: 36px;
	color: var(--cor-2);
}


.cases{
	width: 100%;
	padding: 100px 0;
	background-image: url('../imagens/cases/bg.png');
	background-size: cover;
	background-position: top right;
	background-repeat: no-repeat;
}
.cases .container{
	gap: 50px;
}
.cases .texto{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid #ffffff75;
	padding-bottom: 40px;
	gap: 20px;
}
.cases .texto h2{
	color: #fff;
}
.cases .texto p{
	max-width: 577px;
	width: 100%;
	font-size: 28px;
	font-weight: 200;
	color: #fff;
}
.cases .cases-div{
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	justify-items: stretch;
	align-items: stretch;
	column-gap: 40px;
	row-gap: 40px;
}
.cases .cases-div .box{
	width: 100%;
	height: fit-content;
	gap: 10px;
	transition: ease .3s;
}
.cases .cases-div .box:hover{
	margin-top: -15px;
	transition: ease .3s;
}
.cases .cases-div .box a{
	width: 100%;
	position: relative;
}
.cases .cases-div .box a .img1{
	width: 100%;
	border-radius: 25px;
	filter: brightness(40%) saturate(100%);
	transition: ease .3s;
}
.cases .cases-div .box a .img2{
	opacity: 0;
	border-radius: 50%;
	position: absolute;
	right: 10px;
	bottom: 10px;
	transition: ease .3s;
}
.cases .cases-div .box:hover a .img1{
	filter: unset;
	transition: ease .3s;
}
.cases .cases-div .box:hover a .img2{
	opacity: 1;
	transition: ease .3s;
}
.cases .cases-div .box h3{
	color: #fff;
}
/* MODAL CASES */
.modal-case.open{
	opacity: 1;
	pointer-events: all;
	z-index: 50;
	transition: ease .3s;
}
.modal-case{
	width: 100%;
	height: 100vh;
	display: flex;
	align-content: center;
	opacity: 0;
	position: fixed;
	pointer-events: none;
	z-index: -1;
	top: 0;
	transition: ease .3s;
}
.modal-case .bg{
	display: flex;
	width: 100%;
	height: 100%;
	background-color: #000000b8;
	position: absolute;
	top: 0;
}
.modal-case .container{
	display: flex;
	background-color: var(--bg3);
	border-radius: 30px;
	padding: 20px;
	position: relative;
	z-index: 2;
	gap: 30px;
}
.modal-case .container .fechar-case{
	display: none;
}
.modal-case .container .img{
	max-width: 	741px;
	width: 100%;
	align-content: flex-start;
}
.modal-case .container .img img{
	width: 100%;
	object-fit: contain;
}
.modal-case .container .texto{
	align-self: center;
    gap: 30px;
    width: 100%;
    max-height: 630px;
    overflow: auto;
}
.modal-case .container .texto .div{
	width: 100%;
	height: 1px;
	background-color: #0003;
	display: flex;
}
.modal-case .container .texto p{
	font-size: 24px;
}


.servicos{
	padding: 100px 0;
}	

/* MEDIA DESKTOP */
@media screen and (max-width: 1900px){
	.modal-case .container{
		max-width: 90%;
	}
	.modal-case .container .texto{
	    max-height: 34vw;
	}

}

@media screen and (max-width: 1440px){

}

@media screen and (max-width: 1366px){
	.modal-case .container .texto{
		font-size: 50px;
	}
}

@media screen and (max-width: 1280px){
	.cases .cases-div{
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media screen and (max-width: 1100px){
	.modal-case .container .texto{
		font-size: 45px;
	}
}

/* MOBILE */
@media screen and (max-width: 1000px){
	.banner .texto h2{
    	font-size: 100px;
    }

    .sobre .container{
    	flex-wrap: wrap;
    }
    .sobre .texto{
    	order: 0;
    }
    .sobre .img{
    	order: 1;
    	margin-top: 0;
    }

    .cases .texto{
    	flex-direction: column;
    	text-align: center;
    }
    .cases .cases-div .box{
    	justify-content: center;
    }

	.modal-case .container {
		max-width: 100%;
        flex-wrap: wrap;
        max-height: 100vh;
        overflow: auto;
        border-radius: 0;
        justify-content: center;
    }
    .modal-case .container .fechar-case{
    	display: flex;
    	position: fixed;
    	z-index: 10;
		top: 15px;
		right: 15px;
		width: 50px;
		height: 50px;
		border-radius: 50%;
		background-color: #fff;
    }
    .modal-case .container .fechar-case i{
		color: var(--cor-2);
		font-size: 50px;
    }
	.modal-case .container .img,
	.modal-case .container .texto{
		max-width: 741px;
	}
	.modal-case .container .texto{
	    max-height: unset;
	}
}

@media screen and (max-width: 800px){
	.banner .texto h2{
    	font-size: 14vw;
    }

    .cases .cases-div{
		grid-template-columns: 1fr 1fr;
	}
}

@media screen and (max-width: 600px){
	.banner{
		background-position: 0px -20px;
	}
	.banner .img{
		margin-top: -20px;
	}

	.sobre .texto h2{
		text-align: center;
	}

    .cases .cases-div{
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 400px){

}

@media screen and (max-width: 375px){

}