@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
  margin:0; 
  padding:0;
  box-sizing: inherit;
  -moz-box-sizing:border-box;
  -webkit-box-sizing:border-box;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  color: #464646;
}

:root {
  --main-empresa: #3c7bbe;
  --main-black: #464646;
}

.btn-empresa {
  background: #464646;
  color: #fff;
  border-color: 1px solid #464646;
  text-decoration: none;
}

.btn-empresa:hover{
  color: #fff !important;
}

.btn-empresa.azul{
  background: #0079B6;
  border-color: 1px solid #0079B6;
}

.btn-empresa.azul:hover{
  background: #464646;
  border-color: 1px solid #464646;
}

.btn-empresa.preto:hover {
  background: #0079B6;
  border: 1px solid #0079B6;
  color: #fff;
}

.back-to-top {
  position: fixed;
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  left: 20px;
  bottom: 20px;
  transition: display 0.5s ease-in-out;
  z-index: 99999;
  transition: all ease-in-out 0.3s;
}

.margin-10{
  margin-top: 10px;
}

.margin-20{
  margin-top: 20px;
}

.margin-30{
  margin-top: 30px;
}

.margin-40{
  margin-top: 40px;
}

.margin-50{
  margin-top: 50px;
}

.margin-60{
  margin-top: 60px;
}

.margin-70{
  margin-top: 70px;
}

.margin-80{
  margin-top: 80px;
}

.margin-90{
  margin-top: 90px;
}

.margin-100{
  margin-top: 100px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 7px;
  left: 10px;
  color: #fff;
}

.back-to-top:hover {
  color: #fff;
  background: #0c6d44;
  border: 1px solid #0c6d44;
}

#header {
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  position: relative;
  width: 100%;
  top: 0;  
  transition: all 0.5s ease;
}

@media(max-width: 767px){
  #header .logo img{
    width: 75%;
  }
}

.header-move{
  top: 0px !important;
  box-shadow: 5px 5px 20px rgb(19 86 174 / 16%);  
  /*animation: slide-down 0.7s;
  position: fixed !important;*/
}

@keyframes slide-down{
  0%{
    opacity: 0;
    transform: translateY(-100%);
  }
  100%{
    opacity: 0.9;
    transform: translateY(0);
  }
}

@keyframes slide-up{
  0%{
    opacity: 0;
    transform: translateY(0);
  }
  100%{
    opacity: 0.9;
    transform: translateY(0);
  }
}

@media(max-width: 992px){
  #header{
    box-shadow: 5px 5px 20px rgb(19 86 174 / 16%);
  }
}

.div-logo{
  line-height: 85px;
}

.menu-controle a{
  color: var(--main-black);
  line-height: 85px;
  margin-right: 10px;
  margin-left: 10px;
  text-decoration: none;
}

.menu-controle i{
  color: var(--main-black);
}

.menu-links{
  width: 75%;
  color: #00365A;
  line-height: 85px;
  font-weight: 500;
}

@media(max-width: 992px){
  .menu-links{
    display: none;
  }
}

.menu-links .get-started{
  margin-right: 10px;
  margin-left: 10px;
}

.menu-links .get-started a {
    background: #464648;
    color: #fff;
    border-radius: 50px;
    margin: 2px 5px 5px 7px;
    padding: 6px 25px 6px 25px;
    border: 2px solid #464648;
    font-size: 16px;
    text-decoration: none;
}

.menu-links .get-started a i{
  color: #fff;
}

.menu-links.get-started a:hover {
  background: #154074;
  border: 2px solid #154074;
  color: #fff;
}

.mobile-nav-toggle {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #000;
}

.mobile-nav {
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
  height: 60vh;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #213b52;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  transition: 0.3s;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #409db5;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav .get-started a {
  background: #f4d632;
  color: #fff;
  border-radius: 50px;
  margin: 15px;
  padding: 8px 25px 10px 25px;
  text-align: center;
}

.mobile-nav .get-started a:hover {
  background: #f4d632;
  color: #fff;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(18, 33, 46, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

.menu-links ul{
  list-style: none;
  display: flex;
  justify-content: flex-end;
  margin: 0px;
}

.menu-links-info{
  margin-right: 40px;
}

.menu-links-social{
  margin-right: 10px;
}

.menu-links-social a{
  color: #3c7bbe;
  text-decoration: none;
}

.menu-links-social a:hover{
  color: #FFAA00;
}

.headersub{
  background-color: #3c7bbe;
  color: #fff;
  width: 100%;
}

.nav-menu{
  width: 100%;
}

.nav-menu ul{
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
}

.nav-menu ul li{
  margin-right: 25px;
  display: flex;
}

.nav-menu ul li a{
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 55px;
  max-height: 55px;
  font-weight: 500;
}

.nav-menu ul li a i{
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 55px;
  max-height: 55px;
}

.dropdown a i{
  transform: rotate(0deg);
  transition: all 1s ease;
}

.dropdown.show a i{
  transform: rotate(180deg);
  transition: all 1s ease;
}

.dropdown-menu {
  background: #3c7bbe;
  padding: 10px;
}

.align-items-center {
    -ms-flex-align: center!important;
    align-items: center!important;
}

.linknav-active{
  border-bottom: 3px solid #FFAA00;
  transition: width 0.5s;
  position: relative;
  bottom: 3px;
}

.d-flex {
    display: -ms-flexbox!important;
    display: flex!important;
}

.mr-auto, .mx-auto {
    margin-right: auto!important;
}

.d-none {
    display: none!important;
}

@media (min-width: 992px){
    .d-lg-block {
        display: block!important;
    }
}

@media (min-width: 992px){
    .d-lg-none {
        display: none!important;
    }
}

/*footer*/
footer{
  background: #3c7bbe;
  color: #fff;
  position: absolute;
  width: 100%;
}

#newslatter{
  background-color: #2b6cb2;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 30px;
}

#newslatter .texto{
  font-size: 19px;
  color: #fff;
}

#newslatter .box{
  display: flex;
  justify-content: space-between;
}

#newslatter .box input{
  padding: 7px;
  border-radius: 20px;
  font-size: 20px;
  width: 450px;
  border: 1px solid #fff;
}

#newslatter .box button{
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  font-size: 16px;
  font-weight: 500;
}

@media(max-width: 1200px){
  #newslatter .box-texto{
    text-align: center;
    margin-bottom: 10px;
  }

  #newslatter .box{
    justify-content: center;
  }

  #newslatter .box .item{
    margin-left: 5px;
    margin-left: 5px;
  }
}

@media(max-width: 767px){
  #newslatter .box input{
    width: 100%;
  }
}

@media(max-width: 400px){
  #newslatter .box{
    display: block;
  }

  #newslatter .box input{
    margin-bottom: 10px;
  }

  #newslatter .box button{
    width: 100%;
  }
}

#rodape {
  padding: 60px 0px 60px 0px;
}

#rodape .box{
  margin-top: 50px;
}

#rodape .box a{
  color: #fff;
  text-decoration: none;
  margin-left: 5px;
  margin-right: 5px;
}

#rodape .box a i{
  color: #fff;
}

.rodape-section{
  display: flex;
}

@media(max-width: 767px){
  .rodape-section{
    display: block;
    text-align: center;
  }

  .rodape-section-item, .rodape-section-item img{
    width: 100% !important;
  }

}

#rodape .row {
  margin: 0;
}

#rodape .mapa .title{
  font-weight: bold;
  font-size: 20px;
  color: #fff;
}

#rodape .mapa ul{
  margin-top: 10px;
}

#rodape .mapa ul li{
  list-style: none;
}

#rodape .mapa ul li a{
  text-decoration: none;
  color: #fff;
  font-size: 18px;
}

#rodape #copyright .faixa{
  background-color: #fff;
  height: 2px;
  width: 100px;
  content: '';
  margin-bottom: 30px;
}

#rodape #copyright span{
  font-size: 14px;
  color: #fff;
}

#rodape #copyright a{
  color: #fff;
  text-decoration: none;
}

@media(max-width: 992px){
  #rodape .faixa{
    width: 100% !important;
  }
}

@media(max-width: 767px){
  #rodape {
    padding: 30px 0px 60px 0px;
  }

  #rodape .box{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  #rodape .mapa{
    text-align: center;
  }
}

.pulse{  
  max-width: 90px; /*largura maxima */  
  margin:1px; 
  -webkit-transition: all 0.4s linear;  
  -moz-transition: all 0.4s linear; 
  transition: all 0.4s linear;  
  -webkit-animation: smallToBig 600ms alternate infinite ease;  
  -moz-animation: smallToBig 600ms alternate infinite ease;   
  color: #fff;
}   

@-webkit-keyframes smallToBig{
  from {
    -webkit-transform: scale(1);
  }to {
    -webkit-transform: scale(1.1);
  }
}   

@-moz-keyframes smallToBig{
  from {
    -moz-transform: scale(1);
  }to {
    -moz-transform: scale(1.1);
  }
}