.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;
}


.atendimento{
    width: 100%;
    padding-top: 100px;
}
.atendimento .container{
    gap: 50px;
}
.atendimento .titulo{
    width: 100%;
    gap: 10px;
}
.atendimento .atendimento-div{
    width: 100%;
    display: flex;
    gap: 30px;
}
.atendimento .atendimento-div .box{
    width: 100%;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    background-color: #fff;
    gap: 25px;
}
.atendimento .atendimento-div .box .topo{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
}
.atendimento .atendimento-div .box .topo img{
    width: 72px;
}
.atendimento .atendimento-div .box .topo h4{
    max-width: calc(100% - 92px);
}
.atendimento .atendimento-div .box p{
    font-size: 24px;
    color: #54565A;
}
.atendimento .atendimento-div .box p a{
    font-weight: 700;
}
.atendimento .atendimento-div .box .link{
    width: 100%;
    border: 2px solid #000;
    border-radius: 5px;
    margin-top: auto;
    -webkit-transition: ease .3s;
       -moz-transition: ease .3s;
        -ms-transition: ease .3s;
         -o-transition: ease .3s;
            transition: ease .3s;
}
.atendimento .atendimento-div .box .link:hover{
    border: 2px solid var(--cor-1);
    background-color: var(--cor-1);
    -webkit-transition: ease .3s;
       -moz-transition: ease .3s;
        -ms-transition: ease .3s;
         -o-transition: ease .3s;
            transition: ease .3s;
}


.loja{
    width: 100%;
    padding-top: 100px;
}
.loja .container{
    display: flex;
    gap: 50px;
    justify-content: space-between;
}
.loja .texto{
    max-width: 678px;
    width: 100%;
    gap: 10px;
}
.loja .texto p{
    font-size: 24px;
    margin: 10px 0 20px;
    color: var(--sub-t);
}
.loja .texto .link{
    width: fit-content;
    border: 2px solid #000;
    border-radius: 5px;
    -webkit-transition: ease .3s;
       -moz-transition: ease .3s;
        -ms-transition: ease .3s;
         -o-transition: ease .3s;
            transition: ease .3s;
}
.loja .texto .link:hover{
    background-color: var(--cor-1);
    border: 2px solid var(--cor-1);
    -webkit-transition: ease .3s;
       -moz-transition: ease .3s;
        -ms-transition: ease .3s;
         -o-transition: ease .3s;
            transition: ease .3s;
}
.loja .img{
    max-width: 994px;
    width: 100%;
}
.loja .img img{
    width: 100%;
}


.mosaico{
    width: 100%;
    padding: 100px 0;
    background-color: #fff;
}
.mosaico .container{
    gap: 5px;
    display: flex;
}
.mosaico .img1{
    max-width: 1030px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
    align-items: stretch;
    gap: 5px;
    row-gap: 5px;   
}
.mosaico .img1 .img-div{
    display: flex;
    gap: 5px;
}
.mosaico .img1 .img-div a{
    display: flex;
    width: 100%;
}
.mosaico .img1 .img-div a img{
    width: 100%;
    object-fit: cover;
}
.mosaico .img2{
    max-width: 684px;
    width: 100%;
}
.mosaico .img2 a{
    display: flex;
    width: 100%;
}
.mosaico .img2 a img{
    width: 100%;
    object-fit: cover;
}



/* 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){
    .atendimento .atendimento-div{
        flex-wrap: wrap;
        justify-content: center;
    }
    .atendimento .atendimento-div .box{
        max-width: 350px;
    }

    .loja .img img{
        object-fit: cover;
    }
}

/* MOBILE */
@media screen and (max-width: 1000px){
    .loja .container{
        flex-direction: column;
    }
}

@media screen and (max-width: 800px){
    .mosaico .container{
        flex-direction: column;
    }
}

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

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

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

}