*  {margin: 0; padding: 0; box-sizing: border-box;

}

header{
    position: relative;
    background-image: linear-gradient(rgba(0,0,0,0.8),rgba(255, 255, 255, 0),rgba(255,255,255,0.0)), url(../_imagens/header.jpeg);
    background-size: cover;
    width: 100%;
    height: 90vh;
}
nav{
    width:95%;
    height: 200px;
}

nav div#logo{
    background-image: url(../_imagens/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 300px;
    height: 60px;
    float: left;
    margin-left: 2%;
}

nav ul#menu{
    float: left;
    list-style: none;
    gap: 0.5rem;
}

nav ul{
    display: flex;
    flex-flow: row wrap;
    justify-content: left;
    margin-top: 20px;
    margin-left: 2%;
}


nav ul li a{
    text-decoration: none;
    padding: 10px 20px;
    font-weight: bold;
    color: #DBDBDB;
}

nav div#info{
  float: right;
  margin-top: 8px;
  font-size: 14px;
  color: #DBDBDB;
}

nav ion-icon.ion-icon {
width: 18px;
height: 18px;
color:chartreuse;
}

nav ul li ion-icon.ion-menu {
  width: 18px;
  height: 18px;
  color:red;
  margin-left: 7px;
  margin-bottom: -2px;
  }


#btn-mobile {
  display: none;
}



/*-----Header------*/


header div#chamada{
  position: relative;
  width: 100%;
  height: 300px;
  text-align: center;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);
}


header div#chamada h1{
  color:#DBDBDB;
  text-shadow: 4px 3px 8px #000;
  margin-bottom: 30px;
}

header div#chamada a{
  color:#FFF;
  text-decoration: none;
  background: red;
  opacity: 0.8;
  padding: 20px 80px;
  border-radius: 5px;
}









/*-------------Carro--------------*/


section#carro{
  margin-top: 3px;
  width: 100%;
  height: 100%;
  float: left;
  display: flex;
  flex-direction: row;
  flex-flow:row wrap; 
  justify-content: flex-start;
  justify-content: center;
  color:black;
}


#carrossel {
  position: absolute;
  width: 100%;
  height: 350px;
  background:white;
  overflow: hidden;
}

#container {
  position: absolute;
  width: auto;
  height: 100%;
  background: white;
  display: inline-flex;
  transition: 0.6s ease-in-out;
}

#container #item {
  position: relative;
  margin: 0 1px;
  width: 350px;
  height: 100%;
  background:white;
  z-index: 2;
}

#container #item img {
  width: 100%;
  height: 100%;
}

#btnleft {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0.7;
  cursor: pointer;
  z-index: 3;
}

#btnright {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  opacity: 0.7;
  cursor: pointer;
  z-index: 3;
}

#container #limitador {
  position: absolute;
  margin: 0 1px;
  width: 350px;
  height: 100%;
  opacity: 0;
  right: 0;
  z-index: 1;
}


/*---------------Empresa---------------*/
section#empresa{
  width: 100%;
  height: 100%;
  float: left;
  display: flex;
  flex-direction: row;
  flex-flow:row wrap; 
  justify-content: flex-start;
  justify-content: center;
  color: white;
  background-image: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.8)), url(../_imagens/servicos.jpg);
  background-repeat: no-repeat;
  opacity: 0.9;
}

div.escempresa {
  width: 600px;
  float: left;
  text-align: center;
  color: black;
  font-size: 20px;
  stop-opacity:1;
}

div.dirempresa{
  float: left;
  width: 350px;
  height: 250px;
  background-image: url("../_imagens/empresa.png");
  background-repeat: no-repeat;
  background-size: 100%;
  opacity: 0.9;
}

/*-------------------FOOTER--------------*/

footer {
  width: 100%;
  margin-top: 280px;
  height: 100%;
  float: left;
  display: flex;
  justify-content: space-between;
  flex-direction:column;
  flex-flow:row wrap; 
  justify-content: center;
}

footer div#mapa {
  width: 100%;
  height: 390px;
  background-color: rgba(255,255,255,1);
  box-shadow: 0 3px 10px #404040;
}

footer div#mapa iframe {
  width: 100%;
  height: 100%;
}

footer div#info {
  position:relative;
  width: 100%;
  height: 100%;
  text-align: center;
  margin-top: 60px;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 14px;
}








@media (max-width: 715px) {
*  {margin: 0; padding: 0; box-sizing: border-box;}

nav div#logo{
background-image: url(../_imagens/logo.png);
background-repeat: no-repeat;
width: 100%;
height: 60px;
float: left;
margin-left: 3%;
}
    

    #menu {
      display: block;
      position: absolute;
      width: 100%;
      top: 70px;
      right: 0px;
      background: #e7e7e7;
      transition: 0.6s;
      z-index: 1000;
      height: 0px;
      visibility: hidden;
      overflow-y: hidden;
    }
    #nav.active #menu {
      
      height: 200px;
      visibility: visible;
      overflow-y: auto;
      opacity: 0.85;
      color: white;
      background-color: black;

    }
    #menu a {
    height: 50px;
    width: 100%;
    border-bottom: 1px solid rgb(255, 0, 0);
    float: left;
    padding-top: 15px;
    }


    #menu a:hover {
      height: 50px;
      width: 100%;
      border-bottom: 1px solid rgb(255, 0, 0);
      float: left;
      color: red;
      background: white;
      padding-top: 15px;
      }


    #btn-mobile {
      display: flex;
      padding: 0.5rem 1rem;
      font-size: 1rem;
      border: none;
      background: none;
      cursor: pointer;
      gap: 0.5rem;
      color: white;
    }
    #hamburger {
      border-top: 2px solid;
      width: 20px;
    }
    #hamburger::after,
    #hamburger::before {
      content: '';
      display: block;
      width: 20px;
      height: 2px;
      background: currentColor;
      margin-top: 5px;
      transition: 0.3s;
      position: relative;
    }
    #nav.active #hamburger {
      border-top-color: transparent;
    }
    #nav.active #hamburger::before {
      transform: rotate(135deg);
    }
    #nav.active #hamburger::after {
      transform: rotate(-135deg);
      top: -7px;
    }

/* info */
nav div#info{
  position:absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 68%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: 14px;
  color: #DBDBDB;
}

nav ion-icon.ion-icon {
width: 18px;
height: 18px;
color:chartreuse;
}
}








  

/*--------------SERVIÇOS------------*/

section#servicos-principal {
    width:100%;
    height: 100%;
  }

div#servicos-janela {
    width:80%;
    margin-left: 9%;
    display: flex;
    flex-flow:row wrap;
    justify-content: center;
}

div.servicos {
    width: 300px;
    height: 330px;
    margin: 20px 20px;
    opacity: 50px;
}

div.servicos-top {
    width:100%;
    height: 270px;
    background-color: #F7F7F7;
    border-top-left-radius: 1px;
    border-top-right-radius: 1px;
    text-align: center;
    padding: 5px 3px 5px;
}

div.servicos-bottom {
    width:100%;
    height: 50px;
    background-color: red ;
    opacity: 0.8;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    box-shadow: 2px 2px 3px #ccc;
    cursor:pointer;
}

div.servicos-bottom a{
  text-decoration: none;
  color: #FFFF;
  padding: 15px 80px;

}

/*---------------FIM SERVIÇO-----------*/

