:root{
   --verde:#00a859;
   --cinza:#606060;
   --bg-cinza:#e6e6e6;

}

*{
   padding: 0;
   margin: 0;
   font-family: "Montserrat", sans-serif;
   box-sizing: border-box;
}

body{
   background-color: var(--bg-cinza);

}

a{
   text-decoration: none;
   color: inherit;
}

a *{
   pointer-events: none;
}

.safe{
   margin: 0 auto;
   max-width:1050px;
}

header{
   background-color: white;
}

.top-header{
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.logo img{
width: 200px;
}

.header-contact{
   display: flex;
}

.header-fixo{
   display: flex;
   font-size: var(--verde);
   align-items: center;
   color: var(--verde);
   font-weight: bold;
}

.header-fixo img{
   background-color: var(--verde);
   padding: 10px;
   border-radius:100%;
   margin-right: 10px;
}

.header-wpp, .header-wpp-interno{
   background-color: var(--verde);
   border-radius: 10px;
   display: flex;
   align-items: center;
   padding: 10px 20px;
   color: white;
   margin-left: 20px;
}

.header-wpp-interno{
   display: none;
}

.header-wpp img{
   margin-right: 15px;

}

.bottom-header{
   padding: 25px 0px 0px 0px;
}

nav{
   display: flex;
   justify-content: space-between;
   width: 100%;
}

nav p{
   color: var(--verde);
   cursor: pointer;
   font-weight: bold;
   position: relative;
   overflow: hidden;
   padding-bottom: 10px;
}

nav p:after{
   width: 100%;
   content: "";
   height: 40px;
   border-radius: 10px;
   background-color: var(--verde);
   position: absolute;
   left: 0;
   transform: translateY(31px);
   transition: all 0.5s;
}

nav p:hover:after{
   transform: translateY(23px);
}

nav button{
   display: none;
}

.hamb-con{
   display: none;
}

.hero-con{
   margin-top: 20px;
   width: 1050px;
   overflow: hidden;
   border-radius: 20px;
}

.hero-con img{
   width: 1050px;
   overflow: hidden;
   display: block;
}

.bene-con{
   margin-top: 20px;
   display: flex;
   justify-content: space-between;
}

.bene{
   width: 250px;
   background-color: white;
   border-radius: 10px;
   padding: 10px 20px;
   position: relative;
   display: flex;
   box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.bene img{
   vertical-align: middle;
}

.bene div{
   border-top:2px solid var(--verde);
   border-left: 2px solid var(--verde);
   padding: 10px 0px 10px 10px;
   display: flex;
   align-items: center;
   color: var(--cinza);
}

.bene:after{
   background-color: var(--verde);
   content: "";
   width: 40px;
   height: 40px;
   position: absolute;
   border-radius: 100%;
   right: -35px;
   top: 29px;
   z-index: 2;
}

.bene:last-of-type:after{
   display: none;
}

.servicos-con{
   margin: 60px auto;
}

.servicos-con h1{
   text-align: center;
   color: var(--verde);
}

.servs{
   margin-top: 20px;
   display: flex;
   justify-content: space-between;
}

.serv{
   position: relative;
}

.inner-serv{
   background-color: white;
   padding: 20px;
   border-radius: 15px;
   width: 240px;
   position: relative;
   z-index: 2;
   box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.serv p{
   color: var(--cinza);
}

.back-cover{
   width: 200px;
   height: 200px;
   background-color: var(--verde);
   border-radius: 30px;
   border-bottom-right-radius: 0px;
   position: absolute;
   top: 30px;
   right: -30px;
   z-index: 1;
}

.serv h2{
   color: var(--verde);
}

.serv-cta{
   background-color: var(--verde);
   border-radius: 10px;
   padding: 10px 20px;
   text-align: center;
   margin-top: 10px;
   display: block;
   color: white;
}

.serv-cta img{
   vertical-align: middle;
}

.marcas-con{
   margin-top: 60px;
   text-align: center;
}

.marcas-con h1{
   color: var(--verde);
}

.brands-car{
   background-color: white;
   padding: 5px 0px;
   border-radius: 15px;
   margin-top: 30px;
   overflow: hidden;
   display: flex;
}

.brands-car img{
   animation: marcas-car 40s linear infinite;
}

@keyframes marcas-car{

   100%{
      transform: translateX(-100%);
   }

}

.map-con{
   margin: 50px auto;
    position: relative;
}

#map{
   height: 250px;
}

.contact-info{
   background-color: var(--verde);
    color: white;
    width: 350px;
    position: absolute;
    top: 0px;
    right: 80px;
    border-radius: 10px;
    padding: 10px 20px;
    margin: 10px;
}

.contact-info h1{
   margin-bottom: 20px;
}

.contact-info a, .contact-info div{
   display: flex;
   margin-bottom: 15px;
   align-items: center;
}

.contact-info img{
   margin-right: 15px;
}


.sobre-con{
   display: flex;
   margin-top: 60px;
}

.sobre-con img{
   width: 580px;
}

.about-text{
   margin-left: 20px;
}

.about-text h1{
   color: var(--verde);
   position: relative;
   margin-left: 56px;
}

.about-text h1:before{
   content: "";
    height: 4px;
    width: 50px;
    background-color: var(--verde);
    position: absolute;
    left: -56px;
    top: 14px;
}

.about-text p{
   margin-top: 15px;
   text-align: justify;
}


.faq{
   text-align: center;
   margin-top: 50px;

}

.faq h1{
   color: var(--verde);
}

.perguntas{
   margin-top: 20px;
}

.pergunta{
   background-color: white;
   padding: 30px 20px;
   border-radius: 10px;
   text-align: left;
   cursor: pointer;
   margin-bottom: 15px;
}

.pergunta strong{
   font-size: 20px;
   color: var(--verde);
}

.resposta{
   margin-top: 10px;
   display: none;
}

.floating-elements{
   position: fixed;
   z-index:9;
   bottom:50px;
   right: 27px;
   text-align: right;
   bottom:90px;
   
}

.wpp-floating{
  cursor: pointer;
  /*box-shadow:0px 5px 15px -3px #00000078;*/
  box-shadow:0 0 0 0 rgba(122, 237, 148, 0.29);
  overflow: hidden;
  border-radius: 100%;
  width:57px;
  height: 57px;
  display: block;
  pointer-events: initial;
  animation: pulso 1.25s infinite cubic-bezier(0.16, 0, 0, 1);
}

.wpp-floating img{
   display: block;
   margin:-2px -3px;
}

@keyframes pulso{
   100%{
      box-shadow:0 0 0 45px rgba(232, 76, 61, 0);
   }
}

@keyframes pulse {
  0% {
    transform: scale(.9);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 50px rgba(#5a99d4, 0);
  }
    100% {
    transform: scale(.9);
    box-shadow: 0 0 0 0 rgba(#5a99d4, 0);
  }
}

footer{
   background-color: var(--verde);
   color: white;
   padding: 10px 0px;
   text-align: center;
   margin-top: 40px;
}


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

   .top-header{
      padding: 0px 5px;
   }


   .header-contact{
      display: none;
   }

   .bottom-header{
      position: fixed;
      display: none;
      top: 0;
      background-color: white;
      height: 100%;
      z-index: 99;
   }

   nav{
      flex-direction: column;
      align-items: center;
   }

   nav > p{
      margin-bottom: 15px;
   }

   nav p:after{
      display: none;
   }

   nav button{
      display: initial;
      margin-top: 20px;
      border-radius: 5px;
      padding: 10px 25px;
      background-color:#e74c3c;
      color: white;
      border: none;
      cursor: pointer;
      margin-bottom: 20px;
   }

   .hamb-con{
      border-radius: 10px;
      border: 1px solid var(--verde);
      width: 40px;
      height: 40px;
      cursor:pointer;
      padding: 8px;
      display: initial;
      flex-direction: column;
      box-sizing: border-box;
      justify-content: space-between;
   }

   .hamb-con p{
      width: 100%;
      height: 2px;
      background-color: var(--verde);
      margin-bottom: 10px;
   }

   .header-wpp-interno{ 
      display: flex;
      color: white;
      align-items: center;
      justify-content: center;
   }

   .header-wpp-interno img{
      vertical-align: middle;
      margin-right: 10px;
   }

   .header-wpp-interno p{ 
      color: white;
   }

   .hero-con{
      width: 100%;
   }

   .hero-con img{
      height: auto;
      width: 100%;
      z-index: 10;
   }

   .bene-con{
      flex-direction: column;
      justify-content: center;
      align-items: center;
   }

   .bene{
      margin-right: 0px;
      margin-bottom: 30px;
      width: 250px;
   }

   .bene:after{
      right: 0;
    left: 0;
    margin: 0 auto;
    top: 94px;
   }

   .servs{
      flex-direction: column;
      align-items: center;
   }

   .serv{
      margin-bottom: 60px;
   }

   .marcas-con{
      padding: 0px 5px;
   }

   .map-con{
      height: 500px;
   }

   #map{
      height: 100%;
   }

   .contact-info{
      right: 0;
      left: 0;
      margin: 0px auto;
      bottom: 10px;
      top: initial;
   }

   .sobre-con{
      flex-direction: column;
   }

    .sobre-con img{
      width:100%;
    }

    .about-text{
      margin-left: 0;
    }

    .faq{
      padding: 0px 5px;
    }

}