*{box-sizing: border-box;}
body, ul,li,p { 
	margin: 0; 
	padding: 0;
	list-style: none;
	font-size: 1.2rem;
	font-family: "Montserrat", Arial, Helvetica, sans-serif; 
}
a{
	text-decoration: none; 
}
html{
    scroll-behavior: smooth;
}
.header{
    position: fixed;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;  
    height: 65px;
    width: 100%;
    z-index: 999;
    margin: 0;
    padding: 0;
    margin-top: 0;
    border-bottom: 1px #555 solid;
}
.header label{
    background-color: #fff;
    width: 58px;
    font-size: 30px;
    /*float: left;*/
    color: #4F4F4F;
    display: block;
    margin-top: 5px;
    margin-left: 20px;
    padding: 3px 15px;    
    border: 1px solid #4F4F4F;
    border-radius: 5px;
}
#btn-menu{
    display: none;
}

/*******************************************************************/
.inner-width{ /* menu */
  width: 100%;
  padding: 0 0px;
  margin: auto;
}

.logo{
    
    margin-left: 200px;
    padding: 0px 0px;
}

.logo img{
    width: 180px;
    height: 50px;
    margin-top: -120px;
}

.navigation-menu{
  position: absolute; 
  background-color: #fff; 
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: left;
  left: -100%;
  min-height: 95px;
  margin-top: 3px;
  border-top: 1px #555 solid;
}

.navigation-menu a{
  margin-left: 10px;
  color: #333;
  /*height: 50px;*/
  text-transform: uppercase;
  font-size: 18px;
  padding: 25px 25px;
  border-radius: 4px;
  transition: .3s linear;
}

/*.navigation-menu a:hover{
  background: #fff;
  color: #2f3640;
  transform: scale(1.1);
}*/

.navigation-menu i{
  margin-right: 8px;
  font-size: 15px;
}
.home{
  color: #ff6b6b;
}

.servicos{
  color: #0abde3;
}

.clientes{
  color: #feca57;
}

.sobre{
  color: #5f27cd;
}

.contato{
  color: #1dd1a1;
}

.menu-toggle-btn{
  float: right;
  height: 90px;
  line-height: 90px !important;
  color: #fff;
  font-size: 26px;
  display: none !important;
  cursor: pointer;
}


#btn-menu:checked ~ .navigation-menu{
    left: 0px;    
}
/**************************   SLIDER   *************************************/
#hero{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 600px;
    height: 100vh;   
}
.slideshow-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    height: 80vh;
    position: relative;
    margin: 0; 
}
.saibamais a, .contratar a{
    display: none;
}
.img-slide{
    filter: brightness(35%);
    width: 100%; 
    height: 780px;
    height: 78vh; 
    object-fit: cover; 
    animation: zoom 20s;
    /*-webkit-transform: scale(1.8, 1);
    -moz-transform: scale(1.8, 1);
    -ms-transform: scale(1.8, 1);
    -o-transform: scale(1.8, 1);
    transform: scale(1.8, 1);*/
}
@keyframes zoom{
    0%{
        -webkit-transform: scale(1.8);
        -moz-transform: scale(1.8);
        -ms-transform: scale(1.8);
        -o-transform: scale(1.8);
        transform: scale(1.8);

    }
    100%{
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1); 
    }
}
.btnAnterior, .btnProximo{
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    margin-top: -22px;
    color: #fff;
    font-weight: bold;
    font-size: 50px;
    transition: 0.4s ease;
    user-select: none;
}
.btnAnterior{
    left: 0;
    border-radius: 0 5px 5px 0;
}
.btnProximo{
    right: 0;
    border-radius: 5px 0 0 5px;
}
.btnAnterior:hover, .btnProximo:hover /*.txtSlide:hover*/{
    background-color: rgba(0,0,0,0.6);
}
.txtSlide{
    position: absolute;
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 250px;
    width: 70%;
    padding-top: 8px 12px;   
    bottom: 0px;
    transition: 0.4s ease;
    margin-left: 15%;
    margin-right: 15%: 
}
.txtSlide h3{
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: #fff;
    font-size: 18px;
    text-align: center;
    
}
.txtSlide h3::after {
    content: '|';
    opacity: 1;
    margin-left: 5px;
    display: inline-block;
    animation: blink .8s infinite;
}
@keyframes blink {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
}
.slide2{
    position: absolute;
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 300px;
    width: 70%;
    padding-top: 0px 0px;   
    bottom: 0px;
    /*transition: 0.4s ease;*/
    margin-left: 15%;
    margin-right: 15%: 
}
.slide2 h2{
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: #fff;
    font-size: 18px;
    text-align: center;
    animation: animeSlide 1s ease-in-out .4s backwards;
    -webkit-animation: animeSlide 1s ease-in-out .4s backwards;
}
.slide2 b{
    font-family: Arial, Helvetica, sans-serif;
    /*color: #fff;*/
    font-size: 18px;
    font-weight: bolder;
    text-align: center;
}
.slide2 p{
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: #fff;
    font-size: 14px;
    text-align: center;
    animation: animeSlide 1s ease-in-out .7s backwards;
    -webkit-animation: animeSlide 1s ease-in-out .7s backwards;
}
@keyframes animeSlide{
       0%{
           transform: translateX(-100px);
           -webkit-transform: translateX(-100px);
           opacity: 0;
       }
       100%{
            transform: translateX(0px);
           -webkit-transform: translateX(0px);
           opacity: 1; 
       }
    }
.indicador{
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 2px;
    /*margin-top: 15px;*/
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.5s ease;
}
.ativo, .indicador:hover{
    background-color: #777;
}
.fade{
    animation-name: fade;
    animation-duration: 1.3s;
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.3s; 
    -moz-animation-name: fade;
    -moz-animation-duration: 1.3s; 
    -ms-animation-name: fade; 
    -ms-animation-duration: 1.3s; 
    -o-animation-name: fade;
    -o-animation-duration: 1.3s; 
}
@-webkit-keyframes fade{
    from{
        opacity: .4;
        
    }
    to{
        opacity: 1;
        
    }
}
@keyframes fade{
    from{
        opacity: .4;
        
    }
    to{
        opacity: 1;
        
    }
}



/********************************************   SERVIÇOS  ****************************************************/
#servicos{
    /*background-color: #fff;*/
    background: url("../imagens/bg-services.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-position: center;
    display: block;
    flex-direction: column;
    align-items: center;
    /*text-align: center;*/
	width: 100%;
    height: 2100px;
    max-height: 2100px;
    /*padding: 0px 0px;*/
}
#servicos .content-s{
    background-color: transparent;
    display: flex;
    height: 600px;
    width: 100%;
    margin: 0;
    box-shadow: 0 3px 6px rgba(50, 50, 90, .6); 
}
.content-services{
    background-color: transparent;
    display: flex; 
    height: 550px;
    width: 100%;
    margin: auto;
    margin-top: 0;
}
.content-services-image{
    display: none;
}
.content-services-image img{
    display: none;
}
.content-services-txt{
    display: block;
    max-height: 550px;
    width: 100%;
    margin: 0;
    margin-top: -25px;
}
.content-services-txt h3{
    color: #006390;
    font-family: "Montserrat", "Calibri light", "Candara light", sans-serif;
    font-size: 40px;
    text-align: right;
    text-transform: uppercase;
    margin-right: 30px;
    text-shadow: .1rem .1rem 1px rgba(0,0,0, .4);
    animation: animeSlide 1.3s ease-in-out .4s backwards;
    -webkit-animation: animeSlide 1.3s ease-in-out .4s backwards;
}
.content-services-txt b{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 40px;
    font-weight: bolder;
    margin-right: 0px;
    
}
.content-services-txt p{
    color: #333;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;   
    font-size: 15px;
    line-height: 22px;
    max-height: 250px; 
    text-align: justify;
    text-indent: 40px;
    margin-top: -20px;
    margin-right: 5%;
    margin-left: 5%;
 }
 .content-services-btn a{
    background-color: #006390;
    height: 50px;
    width: 180px;
    float: right;
    border: 1px #006390 solid;
    border-radius: 5px;
    margin-top: 140px;
    font-family: "Montserrat", "Calibri light", "Candara light", sans-serif;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 15px;
    transition: .3s linear;
    margin-right: 5%;
}
.content-services-btn a:hover{
    opacity: 0.8;
}
.section{
    background-color: #fff;
    display: flex;
    flex-direction: column;	
	width: 100%;
    height: 110px;
    margin-top: 0;	
}

.info-services{
    display: flex;
    flex-direction: column;
	width: 100%; 
}
.info-services h4{
    font-family: "Montserrat", "Calibri light", "Candara light", sans-serif;
    color: #006390;
    font-size: 20px;
    text-align: center;
    text-transform: uppercase;
}
.info-services b{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: bolder;
}
/**************************CONTEUDO CONHECA*******************************************************/
.conheca{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 150px;
    width: 100%;
    margin: auto;
}
.header-conheca{
    display: flex;
    height: 150px;
    width: 100%;
    margin: 0;
}

/************ MENU SERVIÇOS********************/
#menu-conheca{
    background-color: #006390;
    display: flex;
    flex-direction: row;
    position: absolute;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    cursor: pointer;
    margin: 0;
}

#menu-conheca ul{
    margin: 0;
    list-style: none;  
    padding: 0; 
    display: flex; 
    justify-content: center;
    align-items: center;
}
#menu-conheca li a{
    background-color: #ccc;
    width: 50px;
    height: 50px;
    font-family: "Montserrat", "Calibri light", "Candara light", sans-serif;
    color: #006390; 
    text-decoration: none; 
    padding: 10px 10px; 
    display: inline-block;
    font-size: 0px;
    border: 1px #006390 solid;
    border-radius: 50%;
    transition: .3s linear;
    margin: 15px;
}

#menu-conheca a:hover{ 
    background: #fff;
    transition: .7s ease;
}
#menu-conheca i{
    font-size: 25px;
    color: green;
    text-align: center;
    justify-content: center;
}
.conheca-icon{
    font-size: 5px;
}
#menu-conheca h2{
    font-size: 0;
}
/*********** CONTEUDO CONHEÇA 1 *************/
.content-conheca{
    background-color: #fff;
    width: 100%;
    height: 850px;
    align-items: center;
    text-align: center;
    /*border: 1px #006390 solid;*/
    border-radius: 8px;
    margin: auto;
    margin: 0;
    margin-top: -70px;
}
#conheca1{
    position: absolute;
    width: 100%;
    height: 630px;
    margin: 0; 
      
}
#conheca1 .info-conheca{    
    width: 90%;
    max-height: 1030px;
    background-color: #f2f2f2;
    border: 1px #006390 solid;
    border-radius: 10px;
    margin-left: 5%;
    margin-right: 5%;
}
/*********** CONTEUDO CONHEÇA 2 *************/
#conheca2{
    position: absolute;
    width: 100%;
    height: 630px;
    margin: 0;
}
#conheca2 .info-conheca{
    position: absolute;
    background-color: #f2f2f2;    
    width: 90%;
    max-height: 1030px;
    border: 1px #006390 solid;
    border-radius: 10px;
    margin-left: 5%;
    margin-right: 5%;
}
#conheca1 .info-conheca h4, #conheca2 .info-conheca h4, #conheca3 .info-conheca h4, #conheca4 .info-conheca h4{
    font-family: "Montserrat", "Calibri light", "Candara light", sans-serif;
    font-size: 1.1em;
    color: #006390;
    padding: 10px;
    margin-top: 0;
    /*margin-left: 10%;*/
}
#conheca1 .info-conheca p, #conheca2 .info-conheca p, #conheca3 .info-conheca p, #conheca4 .info-conheca p{
    font-family: "Montserrat", "Calibri light", "Candara light", sans-serif;
    font-size: .775em;
    color: #333;
    line-height: 25px;
    margin-top: -10px;
    text-align: justify;
    margin-left: 2%;
    margin-right: 2%;
}
/*********** CONTEUDO CONHEÇA 3 *************/
#conheca3{
    position: absolute;    
    width: 100%;
    height: 630px;
    margin: 0;
}
#conheca3 .info-conheca{    
    width: 90%;
    max-height: 1030px;
    background-color: #f2f2f2;
    border: 1px #006390 solid;
    border-radius: 10px;
    margin-left: 5%;
    margin-right: 5%;
}
/*********** CONTEUDO CONHEÇA 4 *************/
#conheca4{
    position: absolute;
    width: 100%;
    height: 630px;
    margin: 0;
}
#conheca4 .info-conheca{    
    width: 90%;
    max-height: 1030px;
    background-color: #f2f2f2;
    border: 1px #006390 solid;
    border-radius: 10px;
    margin-left: 5%;
    margin-right: 5%;
}

/********************************************/
.content-wrapper{
    display: flex;
    background-color: #f6f9fc;
    max-height: 3000px;
    width: 100%;
}
.wrapper{
    background-color: #f6f9fc;
    max-width: 100%;
    margin: auto;
    margin-top: 25px;
    margin-left: 5%;
    margin-right: 5%;
    padding-bottom: 50px;
}
.wrapper h1{
    text-align: center;
    margin: 0px 0px 20px 0; 
    font-size: 1.1em; 
    color: #006390;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    padding-top: 20px;
    
}
.lista-item{
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 0px;
    box-shadow: 0 2px 6px rgba(50, 50, 90, .4);
} 
.faq-titulo{
    cursor: pointer;
    padding: 14px;
    font-size: .775em;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: #006390; 
}
.faq-titulo::before{
    background-color: #006390;
    content: '';
    display: inline-block;
    height: 12px;
    width: 24px;
    margin-right: 10px;
}
.faq-titulo::after{
    content: '+';
    float: right;
    transition: transform .3s ease; 
}
.faq-conteudo{
    padding: 10px;
    color: #333;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: .775em;
    line-height: 1.4em;
    display: none;
    margin-top: -25px;
    text-align: justify;
    text-indent: 40px;
} 
.trigger-input{
    display: none;
} 
.trigger-input:checked + .trigger-wrapper .faq-conteudo{
   display: block;
}
.trigger-input:checked + .trigger-wrapper .faq-titulo:after{
    transform: rotate(45deg) scale(1.2);
}



/******************************************** MENU CLIENTES **************************************************/
#clients{
    display: block;
    flex-direction: column;
    justify-content: center;
    /*background: url("../imagens/fundo_prateado.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    background-position: center;*/
    align-items: center;
    width: 100%;
    height: 700px;
    max-height: 700px;
    padding: 0px 10px;
    padding-bottom: 50px;

}
.titulo-cliente{ 
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: center;*/
    width: 100%;
    margin: auto;
    font-family: "Nunito", Helvetica, sans-serif;
    color: #333;
    padding: 0px 10px;
    padding-bottom: 10px;
    text-align: center;
}
.titulo-cliente h1{
    font-size: 25px;
    /*margin-top: 100px;*/
}
.section-cliente{
    display: inline-block;
    /*flex-direction: column;*/
    width: 100%;
    /*align-items: center;*/
    text-align: center;
    /*padding: 0px 30px;*/
    margin: auto;
}
.logotipo-cliente{
    display: inline-block;
    /*flex-direction: row;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    width: 120px;  
    margin: 3px;
    /*text-align: center;*/
    padding: 0;    
}
.logotipo-cliente img{
    width: 100%;
}

.logotipo-cliente:hover{
    /*background-size: 125%;*/

    background-position: center;
    filter: brightness(25%);
    
}

/********************************************  MENU SOBRE ****************************************************/
#sobre{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
	background-color: #fff;
	width: 100%;
    max-height: 2000px;
    height: 2000px;
}

.row-header{
    text-align: center;
    margin-top: -20px;
}
.row-header img{
    height: 100px;
    width: 200px;
}

/**************************************************/
.content{
    display: block;
    flex-direction: row;
    align-items: center;
    background-color: #fff;
    width: 100%;
    max-height: 1650px;
    margin-top: -20px;
}
/***********CONTEUDO FORMULARIO 1 ****************************/
.formulario{ 
    background-color: #fff;
    display: block;
    width: 100%;   
    max-height: 750px;
}
.info-formulario{ 
    background-color: #fff;
    width: 100%;
    margin: 0;
}
.image-formulario{
    display: none;
    visibility: hidden; /* esconde a imagem junto com o display: none*/
    /*background-color: yellow;*/
    /*height: 420px;
    width: 600px;
    float: right;*/
}
.img-responsive{
    display: none;
    /*height: 350px;
    width: 560px;
    margin-left: 5%;
    margin-top: 25px;*/
} 
.list-formulario{
    background-color: #fff;
    width: 100%;
    margin: 0;
    /*justify-content: center;
    text-align: center;
    align-items: center;*/
}
.list-formulario li{
    font-family: "Montserrat",Arial, Helvetica, sans-serif;
    color: #333;
    font-size: 15px;
    padding: 4px;
    list-style: none;
    width: 87%;
    /*left: 0; */
    /*margin-left: 40px;
    margin-right: 40px;*/
} 
/*******************************/
.formulario .info-formulario h4{
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: #333;
    font-size: 20px;   
}
.formulario .info-formulario p{
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: #333;
    font-size: 15px;
    line-height: 25px;
    text-align: justify;
    margin-top: 25px;
    margin-left: 40px;
    margin-right: 40px;
}
   
/*ANIMAÇÕES*/

/*.info-formulario h4{
    animation: animeDown .7s ease-in-out .4s backwards;
    -webkit-animation: animeDown .7s ease-in-out .4s backwards;
}
@keyframes animeDown{
    0%{
        transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        opacity: 0;
    }
    100%{
         transform: translateY(0px);
        -webkit-transform: translateY(0px);
        opacity: 1; 
    }
}
@-webkit-keyframes animeDown{
    0%{
        transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        opacity: 0;
    }
    100%{
         transform: translateY(0px);
        -webkit-transform: translateY(0px);
        opacity: 1; 
    }
}   
.info-formulario p, .info-formulario li{
    animation: animeUp .7s ease-in-out .4s backwards;
    -webkit-animation: animeUp .7s ease-in-out .4s backwards;
}
@keyframes animeUp{
    0%{
        transform: translateY(50px);
        -webkit-transform: translateY(50px);
        opacity: 0;
    }
    100%{
         transform: translateY(0px);
        -webkit-transform: translateY(0px);
        opacity: 1; 
    }
}
@-webkit-keyframes animeUp{
    0%{
        transform: translateY(50px);
        -webkit-transform: translateY(50px);
        opacity: 0;
    }
    100%{
         transform: translateY(0px);
        -webkit-transform: translateY(0px);
        opacity: 1; 
    }
}     */
  
/********************************************  CONTATO ****************************************************/   
#contact-us{
    display: flex;
    flex-direction: column;
	background-color: #f6f9fc;
	height: 950px;
	width: 100%;
}
#info{
    display: flex;
    flex-direction: column;
	width: 100%;
	height: 800px;
} 
.message{
    display: block;
	height: 500px;
	width: 100%;
    height: 1000px;
	background-color: #f6f9fc !important;
	/*float: left;*/
	/*margin-left: 3%;*/
	/*margin-right: 3%;*/
	
}
.message h3{
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
	color: #006390;
	font-size: 25px;
	margin-left: 4%;
}
.form-group{
     display: block;
     font-family: "Montserrat", Arial, Helvetica, sans-serif;
     color: #FFFFFF;
     font-size: 17px;
     margin-top: 2%;
     margin-left: 4%;
     margin-right: 4%;
}
.message label{
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: #006390;
}
.form-group input{
    width: 100%;
    height: 35px;
    border-radius: 5px;
    outline: 0;
}
.textarea{
    width: 100%;
    border-radius: 5px;
    outline: 0;
}

.btn-enviar{
	height: 50px;
	width: 100px;
	font-size: 16px;
	background-color: #006390;
	color: #FFFFFF;
	margin-left: 4%;
	margin-top: 10px;
	border: 1px solid #fff;
    transition: .3s linear;   
}
.btn-enviar:hover{
	background-color: #FFFFFF;
	color: #006390;
	border: 1px solid #006390;
    transition: .7s ease;
}
.contact{
    display: flex;
    flex-direction: column;
	height: 300px;
	width: 100%;
	background-color: #f6f9fc;
	/*float: left;*/
	/*margin-left: 3%;*/
    margin-top: 20px; 
    border-top: 1px #006390 solid;
}
.address{
	width: 100%;
    height: 130px;
	background-color: #f6f9fc;
	/*margin-left: 3%;*/
	margin-top: 10px;
}
.address h3{
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
	color: #006390;
	font-size: 20px;
    margin-left: 4%;  
}
.address p{
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
	color: #006390;
	font-size: 15px;
    margin-top: -10px;
    margin-left: 4%;
}
.phone{
	width: 100%;
    height: 100px;
	background-color: #f6f9fc;
	/*margin-left: 3%;*/
}
.phone h3{
	font-family: "Montserrat", Arial, Helvetica, sans-serif;
	color: #006390;
	font-size: 20px;
    margin-left: 4%;   
}
.phone a{
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
	color: #006390;
	font-size: 15px; 
    margin-left: 4%; 
}

.maps{
    display: none;
}
/*************************************   FOOTER   ***********************************************************/
.footer{
    display: none;
}


/******************************************** BOTÃO VOLTAR AO TOPO ****************************************/
.whatsapp-link{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 1px 1px 2px #888;
    z-index: 1000;
    transition: .3s linear;
}
.whatsapp-link:hover{
    background: #34af23;
    transition: .7s ease;
}
.fa-whatsapp{
    margin-top: 16px;   
}
#btn-top{
    display: none !important;
    /*position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    color: #fff;
    background-color: #333;
    border: none;
    border-radius: 50vh;
    display: none;
    text-align: center;
    transition: .3s linear;*/
    /*scroll-behavior: smooth; /* retornar ao topo de forma suave */
}
/*#btn-top > html{
   /* scroll-behavior: smooth; /* retornar ao topo de forma suave *//*
}*/
/*#btn-top:hover{
    background-color: #fff;
    color: #000;
}*/
/********************************************** RODAPÉ ****************************************************/
#copyright{
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    background-color: #ccc;
    width: 100%;
    height: 130px;
    text-align: center;
    margin-top: 0px;
    padding-bottom: 20px;
}
#copyright h1, #copyright p{
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    color: #333;
    font-size: 14px;
    padding-top: 20px;
}
#copyright a{
    font-size: 14px;
    color: #333;
    text-decoration: underline;
    text-decoration-color: #333;
    transition: .3s linear;
    font-weight: bold;
}
#copyright a:hover{
    color: #000;
    
}

@media screen and (min-width: 768px) /*and (max-width: 1369px)*/{


     .header{
           background-color: rgb(47, 56, 73);
           display: flex;
           /*flex-direction: row;  */
           height: 75px;             
     }
     .header label{
          display: none;
     }
     .inner-width{ /* menu */
         width: 100%;
         padding: 7px 0px;
         margin: 0;
}
     .navigation-menu{
         position: absolute; /*alterado*/
         background-color: rgb(47, 56, 73); /*alterado*/
         width: 60%; /*alterado*/
         display: inline-flex;
         flex-direction: row; /*alterado*/
         align-items: center; /*alterado*/
         float: right; /*alterado*/
         left: 35%;  /*alterado*/
         min-height: 65px; /*alterado*/
         margin-top: 0; /*alterado*/
         border-top: 0;
         margin-right: 5%;
    }
    .navigation-menu a{
         margin-left: 10px;
         color: #fff;
         /*height: 50px;*/
         text-transform: uppercase;
         font-size: 13px;
         align-items: center;
         padding: 12px 20px;
         border-radius: 4px;
         transition: .3s linear;
    }
    .navigation-menu a:hover{
         background: #fff;
         color: #2f3640;
         transform: scale(1.1);
    }
    /**************************   SLIDER   *************************************/
    #hero{
         display: block;
         /*flex-direction: column;*/
         /*align-items: center;*/
         /*width: 100%;*/
         /*height: 600px;*/
         /*height: 100vh;   */
    }
    .slideshow-container{
         display: block;
         /*flex-direction: column;*/
         /*align-items: center;*/
         /*overflow: hidden;*/
         height: 800px;
         height: 90vh;
         /*position: relative;*/
         /*margin: 0; */
    }
    
    .saibamais a, .contratar a{
         display: block;    
         position: absolute;
         z-index: 999;
         top: 300px;
         right: 200px;
         border: 1px #fff solid;
         border-radius: 5px;
         height: 60px;
         width: 200px;
         font-family: "Montserrat", "Calibri light", "Candara light", sans-serif;
         text-align: center;
         padding: 17px;   
         font-size: 18px;
         color: #fff;
         transition: .3s linear;
         background: #232526; /* fallback for old browsers */
         background: -webkit-linear-gradient(to left, #232526, #414345); /* Chrome 10-25, Safari 5.1-6 */
         background: linear-gradient(to left, #232526, #414345); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    }
    .contratar a{
         animation: animeBtnContratar 1s ease-in-out .9s backwards;
         -webkit-animation: animeBtnContratar 1s ease-in-out .9s backwards;
    }
    .saibamais a:hover, .contratar a:hover{
         opacity: .7;
         transform: scale(1.1);
         transition: .7s ease;
    }
    @keyframes animeBtnContratar{
       0%{
           transform: translateX(100px);
           -webkit-transform: translateX(100px);
           opacity: 0;
       }
       100%{
            transform: translateX(0px);
           -webkit-transform: translateX(0px);
           opacity: 1; 
       }
    } 
    .img-slide{
         width: 100%;
         height: 570px;
         height: 88vh;
         /*-webkit-transform: scale(1.3, 1);
         -moz-transform: scale(1.3, 1);
         -ms-transform: scale(1.3, 1);
         -o-transform: scale(1.3, 1);
         transform: scale(1.3, 1);*/
    }
    .btnAnterior, .btnProximo{
         /*cursor: pointer;*/
         /*position: absolute;*/
         /*top: 50%;*/
         /*width: auto;*/
         /*padding: 25px;*/
         /*margin-top: -22px;*/
         /*color: #fff;*/
         /*font-weight: bold;*/
         font-size: 70px;
         /*transition: 0.4s ease;*/
         /*user-select: none;*/
    }
    .txtSlide{
        height: 200px;
    }
    .txtSlide h3{
         /*font-family: "Montserrat", Arial, Helvetica, sans-serif;*/
         /*color: #fff;*/
         font-size: 28px;
         /*text-align: center;*/
    }  
    .slide2{
         position: absolute;
         display: flex;
         flex-direction: column;
         text-align: center;
         height: 400px;
         width: 50%;
         padding-top: 8px 12px;   
         bottom: 0px;
    /*transition: 0.4s ease;*/
         margin-left: 10%;
         margin-right: 10%: 
    }
    .slide2 h2{
         font-family: "Montserrat", Arial, Helvetica, sans-serif;
         color: #fff;
         font-size: 35px;
         text-align: center;
    }
    .slide2 b{
         font-family: Arial, Helvetica, sans-serif;
         color: #fff;
         font-size: 35px;
         font-weight: bolder;
         text-align: center;
    }
    .slide2 p{
         font-family: "Montserrat", Arial, Helvetica, sans-serif;
         color: #fff;
         font-size: 18px;
         text-align: center;
    }
    
  /************************** SERVIÇOS ********************************/
    #servicos .content-s{
         height: 600px;
         width: 100%;
         margin: 0;
         box-shadow: 0 3px 6px rgba(50, 50, 90, .6); 
    }
    .content-services{
         display: flex; 
         height: 490px;
         width: 49em;
         margin: auto;
         margin-top: -15px;
    }
    .content-services-image{
         display: block;
         height: 500px;
         width: 22em;
         margin: 0;
    }
    .content-services-image img{
         display: block;
         height: 310px;
         width: 21em;
         margin-top: 140px;
    }
    .content-services-txt{
         display: block;
         max-height: 550px;
         width: 30em;
         margin: 0;
         margin-top: -15px;
    } 
    .content-services-txt h3{
        font-size: 45px;
    }
    .content-services-txt b{
        font-size: 45px;
    }
    .content-services-txt p{
        font-size: .850em;
        line-height: 22px;
        margin-left: 8%;
    }
    .content-services-btn a{
        margin-top: 30px;
    }
    /***************** CONHECA ***********************/
    .section{
        height: 170px;
    }
    .info-services h4{
        font-size: 25px;
    }
    .info-services b{
        font-size: 40px;
    }

    /***************** WRAP**********************************/
    
    .wrapper{
         width: 55em;
         /*max-width: 100%;*/
         margin-left: 20%; /*alterado*/
         margin-right: 20%; /*alterado*/
    }
    .wrapper h1{
         font-size: 1.3em; /*alterado*/    
    }
    .faq-titulo{
         font-size: .875em; /*alterado*/
    }


    /******************************************** CLIENTE *******************************************************/
    #clients{
        padding: 20px 80px;
    }
    .titulo-cliente{
        padding-bottom: 40px; /*alterado*/
        margin-top: 20px; 
    }
    .logotipo-cliente{
        width: 180px;
        margin: 8px;
    }

    /********************************************  MENU SOBRE ****************************************************/
    #sobre{
         /*display: flex;*/
         /*flex-direction: column;*/
         /*align-items: center;*/
         /*text-align: center;*/
         background-color: #fff;
         max-height: 2300px;/*alterado*/
         /*width: 100%;*/
         height: 2300px;
         /*margin: 0; */
    }

    .row-header{
         background-color: #fff;
         /*text-align: center;*/
         margin-top: 0px;/*alterado*/
    }
    .row-header img{
         height: 120px;
         width: 200px;
    }
    .content{
         display: flex; /*alterado*/
         flex-direction: column;
         /*align-items: center;*/
         /*text-align: center;*/
         background-color: #fff;
         max-height: 2200px;
         width: 55em; /*alterado*/
         /*margin: auto;*/
         /*margin: 0;*/
         margin-top: 0px; /*alterado*/
         padding-top: 20px;
    }
/***********CONTEUDO FORMULARIO 1 ****************************/
    .formulario{ 
         
         background-color: #fff;
         display: inline-flex;
         flex-direction: row;
         max-height: 450px;
         width: 52em;
         height: 430px; 
         /*margin: 0;*/
         margin: auto;
    }
    .info-formulario{ 
         background-color: #fff;
         display: block;
         width: 25em;
         height: 420px;
         margin: 0;
    }
    .image-formulario{
         background-color: #fff;
         display: block;
         width: 25em;
         height: 420px;
         overflow: hidden;
         visibility: visible; /* esconde a imagem junto com o display: none*/
    }
    .img-responsive{
         background-color: #fff;
         display: block;
         height: 300px;
         width: 100%;
         margin-left: 0;
         margin-top: 20px;    
    } 


    .list-formulario{
         background-color: #fff;
         width: 50%;
         margin: 0;
    /*justify-content: center;
    text-align: center;
    align-items: center;*/
    } 
    .formulario .list-formulario li{
         font-family: "Montserrat",Arial, Helvetica, sans-serif;
         color: #333;
         font-size: .775em;
         padding: 4px;
         list-style: none;
         left: 0; 
    } 
    .formulario .list-formulario h4{
         font-family: "Montserrat", Arial, Helvetica, sans-serif;
         color: #333;
         font-size: 20px;
         margin-left: 4%;
    }
/*******************************/
    .formulario .info-formulario h4{
         font-family: "Montserrat", Arial, Helvetica, sans-serif;
         color: #333;
         font-size: 20px;
    
    }
    .formulario .info-formulario p{
         font-family: "Montserrat", Arial, Helvetica, sans-serif;
         color: #333;
         font-size: .775em;
         line-height: 25px;
         text-align: justify;
         margin-top: 25px;
         margin-left: 40px;
         margin-right: 40px;
    }
   
/*ANIMAÇÕES*/

    .info-formulario h4{
         animation: animeDown .7s ease-in-out .4s backwards;
         -webkit-animation: animeDown .7s ease-in-out .4s backwards;
    }
    @keyframes animeDown{
       0%{
           transform: translateY(-30px);
           -webkit-transform: translateY(-30px);
           opacity: 0;
       }
       100%{
            transform: translateY(0px);
           -webkit-transform: translateY(0px);
           opacity: 1; 
       }
    }
    @-webkit-keyframes animeDown{
       0%{
           transform: translateY(-30px);
           -webkit-transform: translateY(-30px);
           opacity: 0;
       }
       100%{
            transform: translateY(0px);
           -webkit-transform: translateY(0px);
        opacity: 1; 
       }
    }   
    .info-formulario p, .info-formulario li{
        animation: animeUp .7s ease-in-out .4s backwards;
        -webkit-animation: animeUp .7s ease-in-out .4s backwards;
    }
    @keyframes animeUp{
       0%{
           transform: translateY(50px);
           -webkit-transform: translateY(50px);
           opacity: 0;
       }
       100%{
           transform: translateY(0px);
           -webkit-transform: translateY(0px);
           opacity: 1; 
       }
    }
    @-webkit-keyframes animeUp{
       0%{
           transform: translateY(50px);
           -webkit-transform: translateY(50px);
           opacity: 0;
       }
       100%{
           transform: translateY(0px);
           -webkit-transform: translateY(0px);
           opacity: 1; 
       }
    }     
    /******************** CONTATO ****************************************/
    #contact-us{
    display: flex;
    flex-direction: column;
    background-color: #f6f9fc;
    height: 620px; /*alterado*/
    width: 100%;
}
    #info{
         /*background-color: gray;*/
         display: flex;
         flex-direction: row; /* alterado*/
         width: 100%;
         height: 550px;
    } 
    .message{
         display: block;
         height: 500px;
         width: 50%;
         background-color: #f6f9fc !important;
         margin-top: 20px; /*inclusão*/
         margin-left: 10%;
    }
    .contact{
         display: flex;
         flex-direction: column;
         height: 500px;
         width: 50%;
         background-color: #f6f9fc;
         margin-left: 10%;
         margin-left: 3%;
         margin-top: 20px; 
         border-top: 0;
    }
    .address{
         width: 100%;
         height: 110px;
         background-color: #f6f9fc;
         /*margin-left: 3%;*/
         margin-top: 0px;
    } 
    .phone{
         /*width: 100%;*/
         height: 80px;
         background-color: #f6f9fc;
    /*margin-left: 3%;*/
    }
    .phone a{
    
    }
    .maps{
         display: block;
         height: 252px;
         width: 450px;
         background-color: #f6f9fc;
         border: 1px #006390 solid;
         margin-left: 3%;
         margin-top: 30px;
    } 
    /*************************************   FOOTER   ***********************************************************/
    .footer{
         display: flex;
         flex-direction: column;
         background-color: #1f2033;
         font-family: "Montserrat", Arial, Helvetica, sans-serif;
         height: 320px;
         width: 100%;
    }
    .footer-section{
         display: flex;
         /*background-color: #1f2033;*/
         margin: auto;
         height: 300px;
         width: 55em;
    }
    .footer h3{
         font-size: 18px;
         color: #fff;
    }

    .footer p{
         font-size: 14px;
         color: #A9A9A9;
         margin-top: 0px;
    }
    .solucoes{
         /*background-color: #1f2033;*/
         height: 300px;
         width: 18em;
    }
    .menu-solucoes li{
         font-family: "Montserrat", Arial, Helvetica, sans-serif;
         color: #a0adc1;
         padding: 6px 0px;
         font-size: 15px;
         list-style: disc;
         margin-left: 5%;
    }
    .menu-solucoes a{
         color: #a0adc1;
    }
    .menu-solucoes li:hover, .menu-solucoes a:hover{
         color: #fff;
    }
/*****************************************/
    .institucional{  
    background-color: #1f2033;
    height: 300px;
    width: 18em;
    /*margin-left: 2%;*/
    }
    .menu-institucional li{
        font-family: "Montserrat", Arial, Helvetica, sans-serif;
        color: #a0adc1;
        padding: 6px 0px;
        font-size: 15px;
        list-style: disc;
        margin-left: 5%;
    }
    .menu-institucional a, .institucional p, .institucional a{
        font-family: "Montserrat", Arial, Helvetica, sans-serif;
        color: #a0adc1;
    }
    .menu-institucional li:hover, .menu-institucional a:hover, .institucional a:hover, .atendimento a:hover{
        color: #fff;
    } 

/****************************************/
    .atendimento{
        background-color: #1f2033;
        height: 300px;
        width: 18em;
    /*margin-left: 2%;*/
    }

    .atendimento p{
        font-family: "Montserrat", Arial, Helvetica, sans-serif;
        color: #a0adc1;
        font-size: 15px;
        margin-top: -10px;
    }
    .atendimento a{
        color: #a0adc1;
        font-size: 15px;
    }
    
    .logo-atendimento{
        width: 150px;
        height: 150px;
        align-items: center;
        overflow: hidden;
        border-radius: 50%;
        margin-left: 25%;
    }
    .logo-atendimento img{
        width: 100%;
        filter: brightness(50%);
    }

}




@media screen and (min-width: 1370px){
    
    /*header*/ 
    .header{
        height: 95px;
    }
    .header label{
          display: none;
     }
     .navigation-menu{
        width: 55%;
        min-height: 85px;
        left: 40%;
     }
      .navigation-menu a{
        font-size: 15px;
        padding: 12px 35px;
      }
    /* */ 


    #hero{
         /*display: flex;*/
         /*flex-direction: column;*/
         /*align-items: center;*/
         /*background-color: aqua;*/
         /*width: 100%;*/
         height: 900px;
         /*height: 550px;*/
    }
    .btnAnterior, .btnProximo{
         font-size: 80px;
    }
    .saibamais a, .contratar a{
         /*display: block;    */
         /*position: absolute;*/
         /*z-index: 999;*/
         top: 450px;
         right: 250px;
         border: 1px #fff solid;
         border-radius: 5px;
         /*background-color: #333;*/
         height: 70px;
         width: 250px;
         /*font-family: "Montserrat", "Calibri light", "Candara light", sans-serif;*/
         /*text-align: center;*/
         padding: 20px;   
         font-size: 22px;
         /*color: #fff;*/
         /*transition: .3s linear;*/
    }
    .txtSlide h3{
         /*font-family: "Montserrat", Arial, Helvetica, sans-serif;*/
         /*color: #fff;*/
         font-size: 36px;
         /*text-align: center;*/
    }  
    .slide2{
         position: absolute;
         display: flex;
         flex-direction: column;
         text-align: center;
         height: 500px;
         width: 45%;
         padding-top: 8px 12px;   
         bottom: 0px;
         /*transition: 0.4s ease;*/
         margin-left: 15%;
         margin-right: 10%: 
    }
    .slide2 h2{
         font-family: "Montserrat", Arial, Helvetica, sans-serif;
         color: #fff;
         font-size: 45px;
         text-align: center;
    }
    .slide2 b{
         font-family: Arial, Helvetica, sans-serif;
         /*color: #fff;*/
         font-size: 45px;
         font-weight: bolder;
         /*text-align: center;*/
    }
    .slide2 p{
         font-family: "Montserrat", Arial, Helvetica, sans-serif;
         color: #fff;
         font-size: 23px;
         text-align: center;
    }
    /************************** SERVIÇOS ********************************/
    #servicos{
        max-height: 1950px;
    }
    #servicos .content-s{
         height: 800px;
         width: 100%;
         margin: 0;
         box-shadow: 0 3px 6px rgba(50, 50, 90, .6); 
    }
    .content-services{
         display: flex; 
         height: 700px;
         width: 70em;
         margin: auto;
         margin-top: 0;
    }
    .content-services-image{
         display: block;
         height: 500px;
         width: 35em;
         margin: 0;
    }
    .content-services-image img{
         display: block;
         height: 450px;
         width: 33em;
         margin-top: 140px;
    }
    .content-services-txt{
         display: block;
         max-height: 550px;
         width: 35em;
         margin: 0;
         margin-top: 0;
    } 
    .content-services-txt h3{
        font-size: 55px;
    }
    .content-services-txt b{
        font-size: 55px;
    }
    .content-services-txt p{
        font-size: .975em;
        margin-left: 8%;
    }
    .content-services-btn a{
        width: 210px;
        height: 60px;
        font-size: 16px;
        padding: 20px;
        margin-top: 30px;
    }
    
   /************* CONHEÇA ******************/
    .info-services h4{
        font-size: 35px;
    }
    .info-services b{
        font-size: 50px;
    }
    /***************** WRAP**********************************/
    
    .wrapper{
         width: 65em;
         margin-left: 20%; /*alterado*/
         margin-right: 20%; /*alterado*/
    }
    .wrapper h1{
         font-size: 1.4em; /*alterado*/    
    }
    .faq-titulo{
         font-size: 1em; /*alterado*/
    }

    /******************************************** MENU CLIENTES **************************************************/
    #clients{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url("../imagens/fundo_prateado.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    background-position: center;
    align-items: center;
    width: 100%;
    /*height: 1500px;*/
    max-height: 1050px;
    padding: 0px 10px;
    padding-bottom: 50px;
    }
    .titulo-cliente{ 
    /*display: flex;*/
    /*flex-direction: column;*/
    /*justify-content: center;*/
    width: 100%;
    margin: auto;
    font-family: "Nunito", Helvetica, sans-serif;
    color: #333;
    padding: 0px 10px;
    padding-bottom: 50px; /*alterado*/
    text-align: center;
    margin-top: 150px;
    }
    .titulo-cliente h1{
    font-size: 42px;  /*alterado*/
    /*margin-top: 100px;*/
    }
    .section-cliente{
    /*background-color: red;*/
    display: inline-block;
    /*flex-direction: column;*/
    width: 80%;
    /*align-items: center;*/
    text-align: center;
    /*padding: 0px 30px;*/
    margin: auto;
    }

    .maps{
         /*display: block;*/
         /*height: 252px;*/
         width: 600px;
         /*background-color: #f6f9fc;*/
         /*border: 1px #006390 solid;*/
         /*margin-left: 3%;*/
         /*margin-top: 30px;*/
    } 

    .logotipo-cliente{
        display: inline-block;
        width: 230px;  /*alterado*/
        margin: 10px;   /*alterado*/
        padding: 0;    
    }
    .logotipo-cliente img{
        width: 100%;
    }

    .logotipo-cliente:hover{
    /*background-size: 125%;*/
        background-position: center;
        filter: brightness(25%);
    }


    #sobre{
         /*display: flex;*/
         /*flex-direction: column;*/
         /*align-items: center;*/
         /*text-align: center;*/
         background-color: #fff;
         /*max-height: 2300px;/*alterado*/*/
         /*width: 100%;*/
         /*height: 2300px;*/
         /*margin: 0; */
    }

    .row-header{
         background-color: #fff;
         /*text-align: center;*/
         margin-top: 0px;/*alterado*/
    }
    .row-header img{
         height: 170px;
         width: 250px;
    }
    .content{
         display: flex; /*alterado*/
         flex-direction: column;
         /*align-items: center;*/
         /*text-align: center;*/
         background-color: #fff;
         max-height: 2200px;
         width: 65em; /*alterado*/
         /*margin: auto;*/
         /*margin: 0;*/
         margin-top: 0px; /*alterado*/
         padding-top: 20px;
    }
/***********CONTEUDO FORMULARIO 1 ****************************/
    .formulario{ 
         
         background-color: #fff;
         /*display: inline-flex;*/
         /*flex-direction: row;*/
         /*max-height: 450px;*/
         width: 62em;
         /*height: 430px; */
         /*margin: 0;*/
         /*margin: auto;*/
    }
    .info-formulario{ 
         background-color: #fff;
         /*display: block;*/
         width: 30em;
         /*height: 420px;*/
         /*margin: 0;*/
    }
    .image-formulario{
         background-color: #fff;
         /*display: block;*/
         width: 30em;
         /*height: 420px;*/
         /*overflow: hidden;*/
         /*visibility: visible;*/ /* esconde a imagem junto com o display: none*/
    }
    .img-responsive{
         background-color: #fff;
         /*display: block;*/
         /*height: 300px;*/
         /*width: 100%;*/
         /*margin-left: 0;*/
         /*margin-top: 20px;    */
    } 


    .list-formulario{
         /*background-color: #fff;*/
         width: 50%;
         /*margin: 0;*/
    /*justify-content: center;
    text-align: center;
    align-items: center;*/
    } 
    .formulario .list-formulario li{
         /*font-family: "Montserrat",Arial, Helvetica, sans-serif;*/
         /*color: #333;*/
         font-size: .875em;
         /*padding: 4px;*/
         /*list-style: none;*/
         /*left: 0; */
    } 
    .formulario .list-formulario h4{
         /*font-family: "Montserrat", Arial, Helvetica, sans-serif;*/
         /*color: #333;*/
         font-size: 20px;
         /*margin-left: 4%;*/
    }
/*******************************/
    .formulario .info-formulario h4{
         /*font-family: "Montserrat", Arial, Helvetica, sans-serif;*/
         /*color: #333;*/
         font-size: 20px;
    
    }
    .formulario .info-formulario p{
         /*font-family: "Montserrat", Arial, Helvetica, sans-serif;*/
         /*color: #333;*/
         font-size: .875em;
         /*line-height: 25px;*/
         /*text-align: justify;*/
         /*margin-top: 25px;*/
         /*margin-left: 40px;*/
         /*margin-right: 40px;*/
    }
   
