@charset "utf-8";

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
}

html{
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.header{
    display: none;
}

/* newBanner*/

#newBanner{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#newBanner .simpleBanner{
    width: 300px;
    height: 150px;
    border-radius: 12px;
    background: lightgray;    
    margin: 25px 10px;
    transition: 250ms all ease-in-out;
}

#newBanner .simpleBanner:hover{
    width: 310px;
    opacity: 0.9;
}

#newBanner .simpleBanner img{
    width: 100%;
    height: 150px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}

/* bannerhome */

.bannerHome{
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.bannerHome{
    display: grid;
    grid-template-columns: repeat(3,100%);
}

.bannerSection{
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
    animation: anima 25s infinite alternate ease-in-out;
}

.bannerSection img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position:center;
}

.bannerSection .dots{
    background: rgba(12,119,212,0.5);
    background: -moz-linear-gradient(left, rgba(12,119,212,0.5) 0%, rgba(9,79,153,0.5) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(12,119,212,0.5)), color-stop(100%, rgba(9,79,153,0.5)));
    background: -webkit-linear-gradient(left, rgba(12,119,212,0.5) 0%, rgba(9,79,153,0.5) 100%);
    background: -o-linear-gradient(left, rgba(12,119,212,0.5) 0%, rgba(9,79,153,0.5) 100%);
    background: -ms-linear-gradient(left, rgba(12,119,212,0.5) 0%, rgba(9,79,153,0.5) 100%);
    background: linear-gradient(to right, rgba(12,119,212,0.5) 0%, rgba(9,79,153,0.5) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0c77d4', endColorstr='#094f99', GradientType=1 );
    
    position: absolute;
    font-size: 1em;
    color: white;
    display: flex;
    width: 20px;
    height: 20px;
    border-radius: 12px;
    justify-content: center;
    align-items: center;
}

.bannerSection .dots:nth-of-type(1){
    bottom: 49%; left: 1%;
}

.bannerSection .dots:nth-of-type(2){
    bottom: 49%; right: 1%;
}

@keyframes anima {
    
    0%{margin-left: 0}
    30%{margin-left: 0;}
    
    35%{margin-left: -100%;}
    65%{margin-left: -100%;}
    
    70%{margin-left: -200%;}
    100%{margin-left: -200%;}
}


/* Menu Departamentos */

#menuDep{
    
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-size: 0.7em
}

#menuDep ul{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#menuDep ul a{
    display: flex;
    align-items: center;
    height: 30px;
    margin: 0 5px;
    border-radius: 5px;
}

#menuDep a:nth-child(1){
    background: #FFCA00;
}

#menuDep a:nth-child(2){
    background: #999;
}

#menuDep a:nth-child(3){
    background: #E61F67;
}

#menuDep a:nth-child(4){
    background: #093;
}


#menuDep li{
    padding: 10px 25px;
    transition: 0.25s ease-in-out;
    color: white;
}

#menuDep li:hover{
    padding: 7px 30px;
}

/* mensagem empresa */

#empMsg{
    width: 100%;
    padding: 15px 0;
    background: white;
    color: lightgray;
    text-align: center;
    border-bottom: 1px solid lightgray;
}

/* Corpo do site */

section{
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Carrousel */

section .carrouselPromo{
    width: 1200px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.carrouselPromo .verMais{
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 0.7em;
}

.verMais a{
    background: -webkit-linear-gradient(#13ec3f, #22e8d4);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.carrouselPromo .carOff{
    width: 200px;
    padding: 10px;
    position: relative;
    border-radius: 12px 12px 0 0;
    border: 1px solid lightgray;
    margin: 0 5px;
}

.carOff .promoOff{
    position: absolute;
    top: 0px;
    left: 0;
    background: red;
    color: white;
    font-size: 0.8em;
    padding: 5px;
    border-radius: 12px 6px 12px 0;
    font-weight: 600;
}

.carOff .promoOffsemjuro{
    position: absolute;
    top: 0px;
    left: 0;
    background: red;
    color: white;
    font-size: 0.8em;
    padding: 5px;
    border-radius: 12px 6px 12px 0;
    font-weight: 600;
    
}

.carOff .promoImg img{
    width: 100%;
    height: 125px;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.carOff .promoTittle{
    width: 100%;
    text-align: left;
    font-size: 0.7em;
    margin: 0 0 10px;
    
    overflow: hidden; 
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; 
    
    
}

.promoTittle a{
    color: gray;
}

.carOff .condPromo{
    width: 100%;
    position: relative;
    bottom: -5px;
    color:#03B2FF;
    font-size: 0.8em;
    text-transform: uppercase;
}

.carOff .promoTotalPrice_avista p:nth-child(1){
    width: 100%;
    color:#03B2FF;
    font-size: 0.8em;
    padding: 10px 0 0 0;
}

.carOff .promoTotalPrice_avista p:nth-child(2){
    width: 100%;
    font-size: 2em;
    color: #5D5D5D;
    font-family: 'Secular One', sans-serif;
    padding: 0 0 31px;
}


.carOff .promoPrice{
    width: 100%;
    font-size: 2em;
    color: #5D5D5D;
}

.carOff .promoPrice p{
    font-family: 'Secular One', sans-serif;
}

.carOff .promoTotalPrice p:nth-child(1){
    width: 100%;
    font-size: 0.8em;
    position: relative;
    bottom: 5px;
}

.carOff .promoTotalPrice p:nth-child(2){
    width: 100%;
    font-size: 0.8em;
    position: relative;
    bottom: 5px;
    padding: 0 0 10px;
}

.mainBtn{
    width: 100%;
    text-align: center;
    padding: 5px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    transition: 0.25s ease-in-out;
    
    background: rgba(19,236,63,1);
    background: -moz-linear-gradient(left, rgba(19,236,63,1) 0%, rgba(34,232,212,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(19,236,63,1)), color-stop(100%, rgba(34,232,212,1)));
    background: -webkit-linear-gradient(left, rgba(19,236,63,1) 0%, rgba(34,232,212,1) 100%);
    background: -o-linear-gradient(left, rgba(19,236,63,1) 0%, rgba(34,232,212,1) 100%);
    background: -ms-linear-gradient(left, rgba(19,236,63,1) 0%, rgba(34,232,212,1) 100%);
    background: linear-gradient(to right, rgba(19,236,63,1) 0%, rgba(34,232,212,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#13ec3f', endColorstr='#22e8d4', GradientType=1 );
    
    border: 1px solid transparent;
    border-image: linear-gradient(to right, #13ec3f , #22e8d4);
    border-image-slice: 1;
}

.mainBtn:hover{
    background: white;
    
    color: rgba(19,236,63,1);
    color: -moz-linear-gradient(left, rgba(19,236,63,1) 0%, rgba(34,232,212,1) 100%);
    color: -webkit-gradient(left top, right top, color-stop(0%, rgba(19,236,63,1)), color-stop(100%, rgba(34,232,212,1)));
    color: -webkit-linear-gradient(left, rgba(19,236,63,1) 0%, rgba(34,232,212,1) 100%);
    color: -o-linear-gradient(left, rgba(19,236,63,1) 0%, rgba(34,232,212,1) 100%);
    color: -ms-linear-gradient(left, rgba(19,236,63,1) 0%, rgba(34,232,212,1) 100%);
    color: linear-gradient(to right, rgba(19,236,63,1) 0%, rgba(34,232,212,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#13ec3f', endColorstr='#22e8d4', GradientType=1 );
    
}

.mainBtn:active{
    background: red;
    border: none;
    color: white;
    transition: none;
}

/* Banner Promoções */

.carrouselPromo #bannerOff{
    background: rgba(12,119,212,1);
    background: -moz-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(12,119,212,1)), color-stop(100%, rgba(9,79,153,1)));
    background: -webkit-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -o-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -ms-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: linear-gradient(to right, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0c77d4', endColorstr='#094f99', GradientType=1 );
    
    width: 300px;
    height: 315px;
    position: relative;
    margin-left: 25px;
    display: block;
    transition: 0.25s ease-in-out;
}

.carrouselPromo #bannerOff:hover{
    opacity: 0.8;
}

#bannerOff img{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.2;
}

#bannerOff p:nth-child(1){
    display: flex;
    height: 80%;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    padding: 25px;
    text-align: center;
    color: white;
}

#bannerOff p:nth-child(2){
    position: absolute;
    bottom: 0;
    font-size: 0.9em;
    text-align: center;
    padding: 5%;
    color: black;
    background: yellow;
    font-weight: 600;
    text-transform: uppercase;
}

/* Banner Promoções */

#bannerPromo{
    background: rgba(12,119,212,1);
    background: -moz-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(12,119,212,1)), color-stop(100%, rgba(9,79,153,1)));
    background: -webkit-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -o-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -ms-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: linear-gradient(to right, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0c77d4', endColorstr='#094f99', GradientType=1 );
    
    width: 100%;
    height: 120px;
    margin-top: 25px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    z-index: -1;
}

#bannerPromo p{
    font-size: 1.5em;
    color: white;
    font-weight: 600;
}

#bannerPromo img{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.05;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

/* Quem somos */

#quemSomos{
    width: 80%;
    height: 40%;
	background:#006;
	
}

#quemSomos p{
    width: 40%;
    height: 50px;
    text-align: left;
    font-size: 0.7em;
    color:#FFF;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

#quemSomos p:nth-child(1){
    font-weight: 600;
    font-size: 1em;
    color:#FFF;
    transform: translate(-50%, -120%);
}

/* Trabalhe Conosco DESIGN IGUAL AO "ONDE PODEMOS MELHORAR" */

/* QUEM SOMOS */

#containerSobre{
    background: rgba(12,119,212,1);
    background: -moz-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(12,119,212,1)), color-stop(100%, rgba(9,79,153,1)));
    background: -webkit-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -o-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -ms-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: linear-gradient(to right, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0c77d4', endColorstr='#094f99', GradientType=1 );
    
    width: 100%;
    height: 50vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    position: relative;
}

#containerSobre p{
    color: white;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 2em;
}

#containerSobre p:nth-child(2){
    font-size: 0.8em;
    letter-spacing: 1;
    font-weight: 100;
    text-transform: none;
    position: absolute;
    top: 55%;
    padding: 0 50px;
}


#containerSobre a{
    font-size: 0.8em;
    letter-spacing: 0;
    position: absolute;
    top: 65%;
    padding: 10px 50px;
    border-radius: 8px;
    border: 1px solid white;
    color: white;
    transition: 0.25s ease-in-out;
}

#containerSobre a:hover{
    
    background: white;
    border: 1px solid dimgray;
    color: dimgray;
}

#containerSobre img{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.05;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Onde podemos melhorar */

#oMelhorar{
    
    width: 100%;
    height: 50vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    position: relative;
}

#oMelhorar p{
    color: dimgray;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 2em;
}

#oMelhorar p:nth-child(2){
    font-size: 0.8em;
    letter-spacing: 1;
    font-weight: 100;
    text-transform: none;
    position: absolute;
    top: 55%;
    padding: 0 50px;
}


#oMelhorar a{
    font-size: 0.8em;
    letter-spacing: 0;
    position: absolute;
    top: 65%;
    padding: 10px 50px;
    border-radius: 8px;
    border: 1px solid dimgray;
    color: dimgray;
    transition: 0.25s ease-in-out;
}

#oMelhorar a:hover{
    background: rgba(12,119,212,1);
    background: -moz-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(12,119,212,1)), color-stop(100%, rgba(9,79,153,1)));
    background: -webkit-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -o-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -ms-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: linear-gradient(to right, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0c77d4', endColorstr='#094f99', GradientType=1 );
    
    color: white;
}

#oMelhorar img{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.05;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}








/* MEDIA TYPES >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */


@media screen and (max-width: 700px){
    
.header{
    display: block;
}/* bannerhome */
    
.bannerHome{
    height: 150px;
}

.bannerHome{
}

.bannerSection{
    height: 150px;
}

.bannerSection img{
}

.bannerSection .dots{
   display: none;
}

.bannerSection .dots:nth-of-type(1){
}

.bannerSection .dots:nth-of-type(2){
}
    
#newBanner .simpleBanner{
    margin: 5px 0px;
}
/* Menu Departamentos */

#menuDep{
    background: white;
    height: auto;
}
    
#menuDep ul{
    padding: 10px;
}

#menuDep a{
    background: rgba(12,119,212,1);
    background: -moz-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(12,119,212,1)), color-stop(100%, rgba(9,79,153,1)));
    background: -webkit-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -o-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -ms-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: linear-gradient(to right, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0c77d4', endColorstr='#094f99', GradientType=1 );

    line-height: 20px;
}

#menuDep li:hover{
    padding: 0;
}

/* mensagem empresa */

#empMsg{
    width: 100%;
    position: relative;
    top: 0;
    border:none;
    margin: 25px 0;
    
}

    #empMsg h1{
        font-size: 1.5em;
        line-height: 22px;
    }
    
    #empMsg p{
        margin-top: 10px;
        font-size: 0.6em;
    }
/* Corpo do site */

section{
    width: 100%;
    height: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 0;
    float: left;
}

/* Carrousel */

section .carrouselPromo{
    width: 100%;
    height: auto;
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    position: absolute;
    top: 0;
}

.carrouselPromo .verMais{
    top: -10px;
    left: 10px;
}

.verMais a{
}

.carrouselPromo .carOff{
    width: 100%;
    height: auto;
    padding: 10px;
    border-radius: 12px;
    margin: 5px 0;
    float: left;
    overflow: hidden;
    
}

.carOff .promoOff{
    width: 20%;
}

.carOff .promoImg{
    width: 40%;
    float: left; 
    padding-right: 5%;
}
    
.carOff .promoImg img{
    width: 100%;
    transition: none;
}

.carOff .promoTittle{
    width: 60%;
    height: auto;
    
    
}

.promoTittle a{
}

.carOff .condPromo{
    width: 100%;
}

.carOff .promoPrice{
    width: 100%;
}

.carOff .promoTotalPrice p:nth-child(1){
    width: 100%;
}

.carOff .promoTotalPrice p:nth-child(2){
    width: 100%;
}

.mainBtn{
    width: 100%;
}

.mainBtn:hover{
    
}

.mainBtn:active{
}

/* Banner Vendedores */

.carrouselPromo #bannerOff{
    
    width: 100%;
    height: 300px;
    margin: 25px 0;
}

.carrouselPromo #bannerOff:hover{
}

#bannerOff img{
}

#bannerOff p:nth-child(1){
}

#bannerOff p:nth-child(2){
}

/* Banner Promoções */

a #bannerContainer{
    width: 100%;
    position: absolute;
    top: 0;
}
    
#bannerPromo{
    height: 100px;
    z-index: 0;
}

#bannerPromo p{
    font-size: 0.8em;
    letter-spacing: 3px;
}

#bannerPromo img{
}

/* Quem somos */

#quemSomos{
    width: 100%;
    height: 75%;
    top: 0;
}

#quemSomos p{
    width: 80%;
    height: 50px;
    text-align: left;
    font-size: 0.7em;
    color: dimgray;
    top: 45%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}

#quemSomos p:nth-child(1){
    font-weight: 600;
    font-size: 1em;
    color: dimgray;
    transform: translate(-50%, -120%);
}

/* Trabalhe Conosco */

#tbConosco{
    
    width: 100%;
    height: 50vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8%;
}

#tbConosco p{
    font-size: 1.5em;
    padding: 10px;
}

#tbConosco p:nth-child(2){
    font-size: 0.6em;
    position: relative;
    top: 0;
    padding: 0;
}

#tbConosco p:nth-child(3){
    font-size: 0.8em;
    letter-spacing: 0;
    position: relative;
    top: 10%;
    color: lightgray;
}

#tbConosco:hover p:nth-child(3){
    background: white;
    
}

#tbConosco img{
}

/* Onde podemos melhorar */

#oMelhorar{
    
    width: 100%;
    height: 50vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8%;
}

#oMelhorar p{
    font-size: 1.5em;
    padding: 10px;
}

#oMelhorar p:nth-child(2){
    font-size: 0.6em;
    position: relative;
    top: 0;
    padding: 0;
}


#oMelhorar a{
    font-size: 0.8em;
    letter-spacing: 0;
    position: relative;
    top: 10%;
    color: lightgray;
}

#oMelhorar a:hover{
    background: rgba(12,119,212,1);
    background: -moz-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -webkit-gradient(left top, right top, color-stop(0%, rgba(12,119,212,1)), color-stop(100%, rgba(9,79,153,1)));
    background: -webkit-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -o-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: -ms-linear-gradient(left, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    background: linear-gradient(to right, rgba(12,119,212,1) 0%, rgba(9,79,153,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0c77d4', endColorstr='#094f99', GradientType=1 );
    
    color: white;
}

#oMelhorar img{
}
    
}