.banner{
	width: 100%;
	position: relative;
}	
.banner::after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%; /* Ajuste a altura do degradê conforme necessário */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--bg1) 100%);
    pointer-events: none; /* Isso garante que o degradê não interfira nos elementos clicáveis abaixo */
}
.banner img{
	width: 100%;
}
.banner .container{
	align-self: flex-start;
	justify-content: center;
	padding: 50px 0;
}
.banner .absolute{
	position: absolute;
	width: 100%;
	height: 100%;
}
.banner .texto{
	min-width: 364px;
	min-height: 100px;
	align-content: center;
    justify-content: center;
	background-image: url('../imagens/bg-banner.png');
	background-size: 100% 100%;
	background-position: center center;
	border-top-left-radius: 30px;
	border-bottom-right-radius: 30px;
	padding: 10px 30px 20px;
}
.banner .texto h2{
	font-size: 40px;
}


.conteudo{
	width: 100%;
	background-color: var(--bg1);
	background-image: url('../imagens/estrutura/bg.png');
	background-size: auto;
	background-position: right bottom;
	background-repeat: no-repeat;
	padding: 50px 0 150px;
}
.conteudo .container{
	gap: 100px;
}
.conteudo .titulo{
	width: 100%;
	text-align: center;
	gap: 20px;
}
.conteudo .titulo h2{
	max-width: 1000px;
	width: 100%;
	margin: auto;
	text-align: center;
	font-weight: 700;
}
.conteudo .titulo p{
	width: 100%;
	margin: auto;
	color: var(--cor-2);
	font-size: 20px;
	font-weight: 500;
}
.conteudo .conteudo-div{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 50px 2%;
}
.conteudo .conteudo-div .box{
	width: 32%;
	margin: auto;
	gap: 25px;
	align-items: center;
    text-align: center;
}
.conteudo .conteudo-div .box span{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 84px;
	height: 84px;
	background-color: var(--primaria);
}
.conteudo .conteudo-div .box span img,
.conteudo .conteudo-div .box span i{
	max-width: 80%;
	max-height: 80%;
	font-size: 30px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(105%);
}
.conteudo .conteudo-div .box p{
	color: var(--cor-1);
	font-weight: 500;
	font-size: 24px;
}




/* MEDIA DESKTOP */
@media screen and (max-width: 1600px){

}

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

}

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

}

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

}

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

}

/* MOBILE */
@media screen and (max-width: 1000px){
	.banner img{
		height: 347px;
		object-fit: cover;
	}

    .conteudo .conteudo-div .box{
        width: 49%;
	}
}

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

@media screen and (max-width: 600px){
	.banner img{
		height: 600px;
	}

	.conteudo .conteudo-div .box{
		max-width: 400px;
        width: 100%;
	}
}

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

}

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

}