.banner{
    width: 100%;
    position: relative;
    align-items: center;
}
.banner picture,
.banner picture img{
    width: 100%;
    display: flex;
    position: relative;
}
.banner picture::after{
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../imagens/filtro.png);
    background-size: auto;
    background-position: left center;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 5;
}
.banner .absolute-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 6;
}
.banner .absolute-container .container{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}
.banner .absolute-container .container h2{
	font-weight: 900;
	font-size: 72px;
}


.sobre{
    width: 100%;
    position: relative;
    z-index: 5;
}
.sobre .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 2px solid #eee;
    border-left: 2px solid #eee;
    border-right: 2px solid #eee;
    border-radius: 5px;
    padding: 30px 50px;
    gap: 30px;
    background-color: #fff;
    min-height: 264px;
    margin: -115px auto 0;
}
.sobre .container p{
    max-width: 736px;
    color: var(--sub-t);
    font-size: 24px;
}


.beneficios{
    width: 100%;
    padding: 100px 0;
}
.beneficios .container{
    gap: 50px;
}
.beneficios .titulo{
    width: 100%;
    gap: 10px;
}
.beneficios .beneficios-div{
    width: 100%;
    gap: 20px;
    display: flex;
}
.beneficios .beneficios-div .box {
    width: 24%;
    min-height: 500px;
    padding: 50px 30px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
    gap: 20px;
    align-items: start;
}
.beneficios .beneficios-div .box.ativo {
    background-color: var(--cor-1);
    width: 52%;
}
.beneficios .beneficios-div .box h5{
    font-size: 28px;
}
.beneficios .beneficios-div .box p{
    font-size: 24px;
    color: var(--sub-t);
}


.produtos{
    width: 100%;
    padding: 100px 0;
}
.produtos .container{
    gap: 100px;
}
.produtos .titulo{
    margin: auto;
    gap: 10px;
    align-items: center;
    text-align: center;
}
.produtos .produtos-div{
    width: 100%;
    gap: 75px;
}
.produtos .produtos-div .box{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: stretch;
    align-items: stretch;
    column-gap: 50px;
    row-gap: 50px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 100px 30px;
}
.produtos .produtos-div .box .img{
    align-items: center;
    justify-content: center;
}
.produtos .produtos-div .box .img a{
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
}
.produtos .produtos-div .box .img a img{
    max-width: 70%;
    padding-top: 50px;
}
.produtos .produtos-div .box .texto{
    gap: 10px;
}
.produtos .produtos-div .box .texto .topo{
    gap: 30px;
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.produtos .produtos-div .box .texto .topo span{
    font-size: 20px;
    color: var(--sub-t);
}
.produtos .produtos-div .box .texto .descricao{
    width: 100%;
    gap: 10px;
}
.produtos .produtos-div .box .texto .descricao p{
    font-size: 24px;
    color: var(--sub-t);
}
.produtos .produtos-div .box .texto .descricao .avaliacoes{
    display: flex;
    align-items: center;
    gap: 20px;
}
.produtos .produtos-div .box .texto .descricao .avaliacoes .stars{
    display: flex;
}
.produtos .produtos-div .box .texto .descricao .avaliacoes a{
    font-size: 24px;
    font-weight: 600;
}
.produtos .produtos-div .box .texto .diferenciais{
    display: flex;
    margin-top: 20px;
}
.produtos .produtos-div .box .texto .diferenciais .dife-div{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.produtos .produtos-div .box .texto .diferenciais .dife-div .item{
    width: 200px;
    display: flex;
    gap: 20px;
    margin: auto;
}
.produtos .produtos-div .box .texto .diferenciais .dife-div .item img{
    height: fit-content;
}
.produtos .produtos-div .box .texto .diferenciais .dife-div .item h6{
    font-size: 20px;
    font-weight: 700;
}
.produtos .produtos-div .box .texto .volume{
    width: 100%;
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.produtos .produtos-div .box .texto .volume button{
    min-height: 66px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #C2C8D0;
    border-radius: 5px;
    font-size: 24px;
    transition: ease .3s;
}
.produtos .produtos-div .box .texto .volume button:hover,
.produtos .produtos-div .box .texto .volume button.select{
    border: 2px solid var(--cor-2);
    color: var(--cor-2);
    font-weight: 700;
    transition: ease .3s;
}
.produtos .produtos-div .box .texto .botoes{
    width: 100%;
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.produtos .produtos-div .box .texto .botoes a{
    border: 2px solid var(--cor-2);
    color: var(--cor-2);
    border-radius: 5px;
    max-width: 260px;
    width: 100%;
    transition: ease .3s;
}
.produtos .produtos-div .box .texto .botoes button{
    border: 2px solid var(--cor-2);
    color: #fff;
    background-color: var(--cor-2);
    border-radius: 5px;
    max-width: 260px;
    width: 100%;
    transition: ease .3s;
}
.produtos .produtos-div .box .texto .botoes a:hover,
.produtos .produtos-div .box .texto .botoes button:hover{
    border: 2px solid var(--cor-1);
    color: var(--titulo);
    background-color: var(--cor-1);
    transition: ease .3s;
}



/* 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){
	.banner picture, .banner picture img{
		height: 450px;
		object-fit: cover;
	}
}

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

    .beneficios .beneficios-div{
        flex-direction: column;
    }
    .beneficios .beneficios-div .box{
        width: 100%;
    }
    .beneficios .beneficios-div .box.ativo{
        width: 100%;
    }
    
}

/* MOBILE */
@media screen and (max-width: 1000px){
	.sobre .container{
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
		min-height: unset;
	}

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

    .beneficios .beneficios-div .box.ativo {
        background-color: #fff;
        width: 100%;
    }
}

@media screen and (max-width: 800px){
    .produtos .produtos-div .box .texto .diferenciais .dife-div .item{
        margin: auto;
    }
    .produtos .produtos-div .box .texto .botoes{
    	flex-wrap: wrap;
    }
    .produtos .produtos-div .box .texto .botoes a,
    .produtos .produtos-div .box .texto .botoes button{
    	max-width: 100%;
    }
}

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

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

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

}