.banner{
    width: 100%;
    position: relative;
    align-items: center;
}
.banner picture{
    height: 100%;
}
.banner picture:after{
    content: "";
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: #00000082;
}
.banner picture,
.banner picture img{
    width: 100%;
    display: flex;
}
.banner .absolute-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 151px 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    pointer-events: none;
}
.banner .absolute-container .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    gap: 20px;
}
.banner .absolute-container .container h2{
    font-size: 40px;
    max-width: 750px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 20px;
}
.banner .absolute-container .container h2::after{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
}


.unidades{
	width: 100%;
	position: relative;
	z-index: 3;
	padding: 100px 0;
	background-color: var(--bg1);
}
.unidades .unidades-topo{
	width: 100%;
	padding: 35px 0;
	border-top: 1px solid #ffffff63;
	border-bottom: 1px solid #ffffff63;
}
.unidades .unidades-topo .container{
	display: flex;
	flex-direction: column;
	gap: 75px;
}
.unidades .unidades-topo .titulo{
    width: 100%;
    display: flex;
	align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.unidades .unidades-topo .titulo h2{
    width: 330px;
}
.unidades .unidades-topo .titulo p{
    max-width: 771px;
}
.unidades .unidades-topo .filtro-contato{
    width: 100%;
    gap: 10px;
    margin-bottom: -30px;
}
.unidades .unidades-topo .filtro-contato p{
    color: #757575;
}
.unidades .unidades-topo .filtro-contato .filtro{
    width: 100%;
    display: flex;
    gap: 10px;
}
.unidades .unidades-topo .filtro-contato .filtro .select-wrapper,
.unidades .unidades-topo .filtro-contato .filtro .input {
    width: calc(100% - 66% - 13px);
    height: 63px;
    position: relative;
    display: flex;
    background-color: #fff;
}
.unidades .unidades-topo .filtro-contato .filtro .select-wrapper select{
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.unidades .unidades-topo .filtro-contato .filtro .select-wrapper::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    font-size: 20px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #000;
}
.unidades .unidades-topo .filtro-contato .filtro .select-wrapper select,
.unidades .unidades-topo .filtro-contato .filtro .input input{
    color: #757575;
    font-size: 18px;
    padding: 0 20px;
}
.unidades .unidades-topo .filtro-contato .filtro .input{
    display: flex;
    align-items: center;
}
.unidades .unidades-topo .filtro-contato .filtro .input input{
    width: 100%;
    height: 100%;
    padding:  0 20px 0 50px;
}
.unidades .unidades-topo .filtro-contato .filtro .input button{
    position: absolute;
    left: 0;
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.unidades .unidades-topo .filtro-contato .filtro .input button i{
    font-size: 20px;
}
.unidades .unidades-conteudo{
	width: 100%;
	padding-top: 10px;
}
.unidades .unidades-conteudo .container{
	gap: 50px;
}
.unidades .unidades-conteudo .unidades-div{
	width: 100%;
    display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.unidades .unidades-conteudo .unidades-div .box{
	width: calc(100% - 66% - 15px);
	height: 300px;
	background-color: #fff;
	align-content: baseline;
	position: relative;
	overflow: hidden;
}
.unidades .unidades-conteudo .unidades-div .box .img{
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.unidades .unidades-conteudo .unidades-div .box .img a,
.unidades .unidades-conteudo .unidades-div .box .img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.unidades .unidades-conteudo .unidades-div .box .img img{
	filter: grayscale();
	transition: filter .3s;
	padding: 8px;
}
.unidades .unidades-conteudo .unidades-div .box:hover .img img{
	filter: unset;
	transition: filter .3s;
}
.unidades .unidades-conteudo .unidades-div .box .texto {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    gap: 5px;
    overflow: hidden;
}
.unidades .unidades-conteudo .unidades-div .box:hover .texto {
    transform: translateY(0);
}
.unidades .unidades-conteudo .unidades-div .box .topo{
	width: 100%;
    display: flex;
	align-items: center;
	gap: 10px;
	justify-content: space-between;
	padding: 10px 20px;
}
.unidades .unidades-conteudo .unidades-div .box .topo h4{
    max-width: calc(100% - 10px - 118px);
	text-transform: uppercase;
}
.unidades .unidades-conteudo .unidades-div .box .topo span{
	text-transform: uppercase;
	font-size: 14px;
    color: #fff;
	background: linear-gradient(to top, #4C254C, #944c94);
	padding: 7.5px 10px;
}
.unidades .unidades-conteudo .unidades-div .box .mid{
	width: 100%;
	gap: 10px;
	justify-content: space-between;
	padding: 0 20px;
}
.unidades .unidades-conteudo .unidades-div .box .mid div{
    display: flex;
    align-items: center;
	gap: 10px;
}
.unidades .unidades-conteudo .unidades-div .box .mid div span{
    letter-spacing: 3px;
    width: 95px;
}



/* MEDIA DESKTOP */
@media screen and (min-width: 2000px){
	
}

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

}

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

@media screen and (max-width: 1270px){
	.unidades .unidades-conteudo .unidades-div .box .topo h4{
		max-width: calc(100% - 10px - 105px);
		font-size: 22px;
	}
	.unidades .unidades-conteudo .unidades-div .box .topo span{
		font-size: 12px;
	}
}

@media screen and (max-width: 1200px){    
	.unidades .unidades-topo .titulo p{
        max-width: calc(100% - 230px);
    }

	.unidades .unidades-conteudo .unidades-div .box{
		width: calc(100% - 50% - 5px);
	}
}

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

/* MOBILE */
@media screen and (max-width: 1000px){
	.unidades .unidades-topo .filtro-contato .filtro .select-wrapper select, 
	.unidades .unidades-topo .filtro-contato .filtro .input input,
	.unidades .unidades-topo .filtro-contato .filtro .input input::placeholder{
		font-size: 16px;
	}
}

@media screen and (max-width: 700px){
	.unidades .unidades-conteudo .unidades-div .box{
		max-width: 500px;
		width: 100%;
		margin: 0 auto;
	}
}

@media screen and (max-width: 600px){
	.unidades .unidades-topo .titulo{
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.unidades .unidades-topo .titulo h2{
		width: fit-content;
	}
	.unidades .unidades-topo .titulo p{
		max-width: 100%;
	}

	.unidades .unidades-topo .filtro-contato .filtro{
		flex-direction: column;
	}
	.unidades .unidades-topo .filtro-contato .filtro .select-wrapper, 
	.unidades .unidades-topo .filtro-contato .filtro .input{
		width: 100%;
	}


	.unidades .unidades-conteudo .unidades-div .box{
		height: fit-content;
		overflow: unset;
	}
	.unidades .unidades-conteudo .unidades-div .box .img img{
		filter: unset;
	}
    .unidades .unidades-conteudo .unidades-div .box .texto{
		height: fit-content!important;
		position: relative;
	}
	.unidades .unidades-conteudo .unidades-div .box .topo h4{
		font-size: 18px;
	}
	.unidades .unidades-conteudo .unidades-div .box .mid{
		padding-bottom: 20px;
	}
}

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

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

}