.banner{
    background-color: #FFFFFF;
    min-height: 300px;
    background-image: url(../img_banner/tunning.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    transition: all ease 1s;
    position: relative;
    text-align: center;
}

.banner h1{
    font-family: titulo;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    color:#FFFFFF;
    text-shadow: 0px 0px 6px rgba(0,0,0,.8), 0px 0px 8px rgba(0,0,0,.7);
    text-transform: uppercase;
    position: absolute;
    bottom: 32px;
    width: 100%;
    padding: 0px;
    margin: 0px;
}

/*elementos em geral*/
.link{
    display: block;
    text-align: center;
    margin: 48px 0px;
}

.link a{
    position: relative;
    font-weight: bold;
}

.link a::after{
    content: "";
    height: 20px;
    width: 0px;
    background-image: url(../img/pneu.png);
    background-repeat: repeat-x;
    position: absolute;
    left: 0px;
    top: 32px;
    transition: all ease 1s;
}

.link a:hover::after{
    width: 100%;
}

.section-site{
    border-bottom: 1px solid rgba(0,0,0,.1);
}

.section-site .table{
    display: table;
}

.section-site .table-cell{
    display: table-cell;
    width: 50%;
    vertical-align: top;
    position: relative;
}

.section-site .table-cell.right{
    text-align: right;
}

.section-site .table-cell.left{
    text-align: left;
}
/*fim elementos em geral*/



/*empresa*/
.section-site  .conteiner h2.sub-empresa{
    padding: 18px;
    position: relative;
    line-height: 27px;
    text-align: center;
    margin-bottom: 48px;
}

.section-site  .conteiner.sub-empresa p{
    text-align: center;
    margin: auto;
    padding: 18px;
    vertical-align: top;
}

.section-site  .conteiner.sub-empresa *{
    vertical-align: top;
}

.section-site  .conteiner.sub-empresa h2{
    margin-bottom: 18px;
}

.section-site  .conteiner.sub-empresa h3{
    font-family: titulo;
}

.section-site  .conteiner.sub-empresa h4{
    min-height: 40px;
}

.section-site  .conteiner .table.empresa > .table-cell{
    text-align: center;
    width: auto;
}

/* animação */
.section-site  .conteiner .div-animation{
    display: block;
    padding: 24px 0px;
}

svg {
  display: block;
  margin: auto;
  opacity: 0;
  transition: all 1s ease;
}

.animar svg {
    opacity: 1;
}

.animar path {
  stroke: rgba(191, 38, 0, 0.85);
  stroke-width: 8px;
  stroke-dasharray: 853;
  animation: 6s draw forwards;
}

@keyframes draw {
  0% {
    fill-opacity: 0;
    stroke-dashoffset: 853;
  }
  70% {
    fill-opacity: 0;
    stroke: #BF2600;
  }
  100% {
    fill-opacity: 1;
    stroke-dashoffset: 0;
    stroke: none;
  }
}
/*
    fim da animação
    Fim empresa
*/

/*nossa história*/
.img-nossa-historia{
    margin: 32px 0px;
    height: 400px;
    background-image: url(../img/sedan-min.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: -160px -200px;
}

.div-img-loja{
    min-height: 600px;
    max-width: 600px;
    width: 100%;
    background-image: url(../img/auto-pecas-luz.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: 200px 0px;
    background-size: contain;
}

.missao p{
    padding-right: 48px;
}

.section-site.missao{
    border-bottom: none;
}
/*fim nossa história*/

@media screen and (max-width:45em){
    
    .banner h1{
        font-size: 32px;
    }
    
    .banner{
        min-height: 300px;
    }
    
  
    /*elementos em geral*/
    .link{
        display: block;
        margin: 24px 0px;
    }

    .section-site .table, .section-site .table-cell{
        display: block;
        width: auto;
    }
    
    .section-site .table-cell p{
        padding: 16px;
    }
    
    .section-site .table-cell.left,
    .section-site .table-cell.right{
        text-align: center;
    }
    /*fim elementos em geral*/
    
    
    /*empresa*/
    .section-site  .conteiner h2.sub-empresa{
        margin-bottom: 24px;
    }
    /*fim empresa*/
    
    /*nossa história*/
    .img-nossa-historia{
        height: 320px;
        background-position: -280px 0px;
    }
    
    .div-img-loja{
        max-width: 100%;
        min-height: 400px;
        background-position: -420px 0px;
        background-size: cover;
    }
    
    .missao p{
        padding: 16px;
    }

    /*fim nossa história*/

    
}