@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
  margin: 0;
  padding: 0;
  user-select: none;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body, h1, h2, p, ul, li, a {
  margin: 0px;
  padding: 0px;    
}

body{
  background: #ffffff;  
}

h1 , h2 {
  font-family: 'Lato', sans-serif;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}

* {
  box-sizing: border-box;
}



/* topo */

.topo {
  background: #ffffff;
  border-bottom: 1px solid rgb(182, 181, 181);
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.topo .logo{
  float: left;
  color: black;
  font-size: 10px;
  font-weight: 600;
  line-height: 70px;
  padding-left: 200px;
}

.topo .tel {
  padding-top: 12px;
  font-weight: bold;
}

.topo .iso{
  color: rgb(78, 77, 77);
  font-size: 16px;
  padding-right: 100px;
  padding-top: 7px;
  font-weight: bold;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  margin-left: 40px;
  margin-right: 40px;
}

.topo .iso a{
  color: inherit;
}

.topo .iso a:hover{
  cursor: pointer;
  pointer-events: auto;  
  box-shadow: 0px 2px 5px rgba(0,0,0,0.8);
  border: 1px solid rgb(3, 71, 3);
}

.iso-item {
  border: 1px solid rgb(41, 56, 41);
  border-radius: 5px;
  display: flex;
  flex-wrap: nowrap;  
  margin-left: 10px;
  width: 100px;
}

.iso-item img {
  width: 35%;
  margin-left: 10px;
}

.iso-item p {
  padding-top: 5px;
  font-size: 16px;
  color: #111111;
  font-weight: bold;
}


#menu {
  width:100%;
  z-index: 999;
}

#certificado {
  position: fixed;
  right: 0;
  z-index: 999;
}

#certificado:hover {
  opacity: 0.8;
}

#certificado img {
  width: 100%;
  padding-right: 10px;
  /* -ms-transform: rotate(9deg);
  -webkit-transform: rotate(9deg); 
  transform: rotate(9deg); */
}

.fixar {
  position: fixed;
  margin-top: -65px !important;
  padding-top: -65px !important;
}

.fixarIso {
  position: fixed;
  margin-top: -5px !important;
  padding-top: -5px !important;
}


/* navegacao */

.navegacao {
  width: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dbd9d9;
}

.navegacao a {
  color: #333;  
}

.navegacao a:hover {
  color:rgb(6, 156, 6);
}

.navegacao span {
  color: #333;
  padding: 5px 10px 0 10px;
  font-size: 12px;
}

.navegacao p{
  font-size: 16px;
  color:  #eb511f;
  text-align: center;  
}



/* menu */

nav{
  background: green;
  display: flex;
  justify-content: center;
  z-index: 999;
}

 nav:after{
  content: '';
  clear: both;
  display: table;
} 

nav .logo{
  display: none;  
}

nav ul{  
  list-style: none;
  z-index:4;
  position: relative;
  margin: 0px auto;
}

nav ul li{
  display: inline-block;
  background: green;
}

nav ul li a{
  color: white;
  line-height: 60px;
  text-decoration: none;
  font-size: 15px;
  padding: 0px 10px;
}

nav ul li a:hover{
  color: #e4e1e1;
  border-bottom: 3px solid green;
}

nav ul ul li a:hover{
  box-shadow: none;
}

nav ul ul{
  position: absolute;
  top: 90px;
  opacity: 0;
  visibility: hidden;
  transition: top .3s;
}

nav ul ul ul{
  border-top: none;
}

nav ul li:hover > ul{
  top: 61px;
  opacity: 1;
  visibility: visible;
}

 nav ul ul li{
  position: relative;
  width: 260px;
  float: none;
  display: list-item;
  border-bottom: 1px solid rgba(0,0,0,0.3);
} 

nav ul ul li a{
  line-height: 50px;
}

nav ul ul ul li{
  position: relative;
  top: -60px;
  left: 210px;
}

.show,.icon,input{
  display: none;
}
.fa-plus{
  font-size: 15px;
  margin-left: 40px;
}

/* footer */

.footer {
  background: rgb(1, 85, 1);;
  border-bottom: 1px solid rgb(182, 181, 181);
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer .logo{
  padding-top: 5px;
  padding-left: 200px;
}

 .footer .icones{
  color: white;
  font-size: 30px;
  padding-top: 20px;
  font-weight: bold;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  padding-right: 200px;
}

.footer .icones a{
  color: inherit;
}

.footer .icones a:hover{
  cursor: pointer;
  pointer-events: auto;
  opacity: 0.5;
}

 .icones-item {
  display: flex;
  flex-wrap: nowrap;
  width: 40px;  
}

.btnfixed {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 30px;
  right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background-color: green;
  text-decoration: none;
  z-index: 999;
}
.btnfixed::after {
  content: "↑";
  font-size: 32px;
  font-weight: bold;
  color: aliceblue;
  transition: margin-top 250ms;
}
.btnfixed:hover::after {
  margin-top:-8px;
}

.bounce {
  -webkit-animation: fade-in 5s; /* Safari 4+ */
  -moz-animation:    fade-in 5s; /* Fx 5+ */
  -o-animation:      fade-in 5s ; /* Opera 12+ */
  animation:         fade-in 5s; /* IE 10+, Fx 29+ */
}

.bouncep {
  -webkit-animation: fade-in 5s; /* Safari 4+ */
  -moz-animation:    fade-in 5s; /* Fx 5+ */
  -o-animation:      fade-in 5s; /* Opera 12+ */
  animation:         fade-in 5s; /* IE 10+, Fx 29+ */
}

 @-webkit-keyframes fade-in {
  0%   { transform: translateY(-100px); }  
  100% { transform: translateY(0); } 
    0% {opacity: 0;}
  100% {opacity: 1;}
}
@-moz-keyframes fade-in {
  0%   { transform: translateY(-100px); }  
  100% { transform: translateY(0); } 
    0% {opacity: 0;}
  100% {opacity: 1;}
}
@-o-keyframes fade-in {
  0%   { transform: translateY(-100px); }  
  100% { transform: translateY(0); } 
    0% {opacity: 0;}
  100% {opacity: 1;}
}
@keyframes fade-in {
  0%   { transform: translateY(-100px); }  
  100% { transform: translateY(0); } 
    0% {opacity: 0;}
  100% {opacity: 1;}
}


@media all and (max-width: 968px) {

  .topo {
    display: none;
  }

  #certificado {
    display: none;
  }
  nav {
    background: white;
    display: block;
    justify-content: center; 
    border-bottom: 2px solid green;   
  }

  nav ul{
    margin-right: 0px;
    float: left;
    width: 100%;    
  }
  nav .logo{
    display: block;
    padding: 10px 0 10px 30px;
    width: 50%;
  }
  .show + a, ul{
    display: none;
  }
  nav ul li{
    display: block;
    width: 100%;
    background: green;
    border-bottom: 1px solid rgb(4, 110, 4);
  }

   nav ul li{
    float: left;    
    margin: 0 0px;
    } 

    nav ul li a{
      padding: 0px 20px;
      line-height: 50px;   
    }

  nav ul li a:hover{
    box-shadow: none;    
  }
  .show{
    display: block;
    color: white;
    font-size: 15px;
    padding: 0 20px;
    line-height: 50px;
    cursor: pointer;
  }
  .show:hover{
    color: rgb(192, 241, 192);
  }
  .icon{
    display: block;
    color: black;
    position: absolute;
    top: 0;
    right: 40px;
    line-height: 70px;
    cursor: pointer;
    font-size: 25px;
  }
  nav ul ul{
    top: 70px;
    border-top: 0px;
    float: none;
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;    
  }
  nav ul ul a{
     padding-left: 40px;
  }
  nav ul ul ul a{
    padding-left: 80px;
  }
  [id^=btn]:checked + ul{
    display: block;
  }
  nav ul ul li{
    border-bottom: 0px;
    width: 100%;
    border-bottom: 1px solid rgb(3, 97, 3);
    background: rgb(3, 105, 3);
  }

  nav ul ul li:last-child{
    border-bottom: none;
  }
  span.cancel:before{
    content: '\f00d';
  }

  .content{
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
  }
  header{
    font-size: 35px;
    font-weight: 600;
    padding: 10px 0;
  }
  p{
    font-size: 30px;
    font-weight: 500;
  }

  .footer .logo {
    text-align: -webkit-center;
    padding-left: 0px;
  }

  .footer .icones {
    padding-right: 0px;
  }
}
