body{
    background-color: rgb(255, 255, 255);
}

li{
list-style: none;
}

/*link;*/

a{
    text-decoration: none;
    color: #636262;
}


/*header-cabeçalho;*/

nav a {
    color: darkgrey;
}
nav a:hover{
    color: rgb(0, 192, 128);
}


/* SLIDESHOW - CAROUSEL - TITULOS */

.titulo-slide{ 
    top: 45%;
    text-shadow: 1px 1px 3px rgba(0,0,0,.75);
    color: white;
    position: absolute;
    width: 100%;
    text-align: center;

}

    /* COR DAS PALAVRAS DO DESTAQUE / MAIS VENDIDOS / TOP PRODUTOS */

.nav{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0 0 0;
}


/*.produto-destaque a:first-child{ <<<<<<<<<CHAMA APENAS O PRIMEIRO LINK

} */

.produto-destaque a{
    text-decoration: none;
    transition: 1s;
}

.produto-destaque a:hover{
    position: .25;
}

.produto-destaque a:first-child img{
    margin-bottom: 1.5rem;
}

.produto-destaque a:nth-child(2):hover{
    color: #8888;
    transition: 0.5s;
}

/* NTH-CHILD CHAMA UM LINK ESPECIFICO*/
.produto-destaque a:nth-child(2) h4{
    font-size: 1.15rem;
/* DEIXAR TUDO ALINHADO NA MESMA LINHA */
    display: inline-block;
    min-height: 40px;
/* DEIXAR TUDO ALINHADO NA MESMA LINHA */    
}

.produto-destaque a:nth-child(3){
    color: #888888;
    text-decoration: underline;
}

.produto-destaque a:nth-child(3):hover{
    color: #888888;
}

.produto-destaque a:nth-child(3) h5{
    font-size: 0.7rem;
    text-transform: uppercase;
}

.produto-destaque a:nth-child(4){
    color: black;
}

.produto-destaque a:nth-child(4) h4 del{
    font-weight: 100;
    font-size: 1.15rem;
    color: #8888;
}

.produto-destaque a:nth-child(4) h4 strong{
    font-size: 1.25rem;
}


/* BANNER 2 COLUNAS - PARTE DO MOLETOM */

.remover-sublinhado a{
    text-decoration: none;
}
    

.produto-banner{
    background-color: #eeeeee;
}

.produto-banner h3{
    color: #333333;
    text-transform: uppercase;
    font-weight: 700;
}










    /* ZOOM DAS IMAGENS DO FINAL DO BLOG */

.imagem-blog{
    max-height: 191px;
    overflow: hidden; /*ANIMAÇÃO SOB MOUSE*/
}

.imagem-blog img{
    transition: 1s; /*ANIMAÇÃO VOLTA*/
}

.imagem-blog img:hover{   
    /* transform:translate(100px,0); */
    /* transform: rotate3d(10,10,10,180deg);*/   

    transform: scale(1.25);
    opacity: .75;
    transition: 1.5s;
}


/* PARTE DO HOME / PRODUTOS / QUEM SOMOS / CONTATO */
.menu-link{
    color: #aaaaaa;
    text-transform: uppercase;
    font-size: 1.25rem; /*rem é uma unidade que se adapta ao tamanho da tela*/
}


/* ANIMAÇÃO VERDE AO PASSAR O MOUSE EM CIMA DAS PALAVRAS*/
.menu-link:hover{
    color: rgb(0, 192, 128);
    transition: .5;
}


.artigo-blog h3{
    text-align: center;
    text-transform: uppercase;
    color: dimgrey;
    font-size: 1.15rem;
}

.artigo-blog small{
    color: #aaaaaa;
    padding: 10px;
}



/* FOOTER - RODAPÉ */


#footer{
    background-color: #333333;
    padding: 20px 0 0 0;
}

#footer h4,#footer p,#footer a{
    color: white;
}

#footer a:hover{
    color: rgb(0, 192, 128);
    text-decoration: none;
}

#footer i{
    color: rgb(0, 192, 128);
    padding-right: 10px;
}

#footer ul{
    padding: 0;
}

#footer li{
    padding: 5px 0; 
}

#footer address ul li{
    border-top: 1px solid #888888;
    padding: 10px 0;
}

@media screen and (max-width: 990px) {
    .quem-somos{
        display: none;
    }
}



@media screen and (max-width: 768px) {
    .nav{
        display: none;
    }

    .logo{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .user{
        display: none;
    }

    .car{
        display: none;
    }

    .remover-sublinhado{
        display: none;
    }

    .search{
        margin-bottom: 20px;
    }
}

