@media (prefers-reduced-motion: no-preference) {
* {
    scroll-behavior: smooth;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Times New Roman', Times, serif; */
}

:root {
  --amarelo: #e39d10;
  --amarelo-ouro: #FFFF00;
  --azul: #10bde0;
  --azul-claro: #c9dfff;
  --azul-escuro: #0a0a23;
  --azul-vivo: #0088cc;
  --azul-gradient: #131b38, #192039, #0088cc;
  --branco: #F0F8FF;
  --cinza-escuro: #232526;
  --laranja: #FF4500;
  --roxo: #4B0082;
  --verde: #00FF7F;
  --verde-escuro: #0c100c;
  --verde-medio: #059a13;
}

/* menu */
.logo img{
  width: 200px;
  height: auto;
}

.navbar .logo a {
  color: var(--amarelo);
  font-size: 1em;
  font-weight: 500;
}

.navbar {
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  z-index: 999;
  text-transform: capitalize;
  border-bottom: 2px solid var(--amarelo);
  background-color: var(--cinza-escuro);
  height: 70px;
  padding-right: 25px;
}

.navbar .maxWidth {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .maxWidth ul img,
.navbar .maxWidth ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar .menu {
  overflow: auto;
}

.navbar .menu li {
  list-style: none;
  display: inline-block;
}

.navbar .menu li a.active {
  color: var(--azul-claro);
}

.navbar .menu li a {
  display: block;
  color: var(--amarelo);
  font-size: 18px;
  font-weight: 400;
  margin-left: 25px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.navbar .menu li a:hover {
  color: var(--azul-claro);
  transition: all 0.3s ease;
}

.menuBtn {
  color: var(--azul-claro);
  font-size: 23px;
  cursor: pointer;
  display: none;
  margin-right: 20px !important;
}

.visibility {
visibility: hidden;
}

@media (max-width: 947px) {
  nav {
    padding-right: 0 !important;
  }

  .menuBtn {
      display: block;
      z-index: 999;
      margin-right: 15px;
  }

  #menuIcon.active::before {
      content: "\f00d"; 
  }

.navbar .menu {
    background-color: var(--cinza-escuro);
    position: fixed;
    height: 100vh;
    width: 100%;
    left: -100%;
    top: 0;
    text-align: center;
    padding-top: 80px;
    transition: all 0.3s ease;
}

#menuSite.active {
    left: 0;
}

.navbar .menu li:last-child {
    margin-right: 0px;
}

.navbar .maxWidth ul img,
.navbar .maxWidth ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.navbar .menu li {
    display: block;
}

.navbar .menu li a {
    display: inline-block;
    margin: 13px 0;
    font-size: 25px;
  }  
}

@media (max-width:894px) {
  .visibility {
    display: none;
  }
}

@media (max-width: 815px) {
  .logo {
    width: 200px;
    height: 80px;
  }
}

@media (max-width:600px) {
  .navbar .menu li a {
      margin: 7px auto;
    }  
}
/*fim menu*/
/* Barra deprogresso */
#headerTop {
  width: 100%;
  position: fixed;
  top: 0;    
  display: grid;
  place-items: center;
  background-color: white;
}

div.progresso {
  width: 100%;
  height: 5px;
  margin-top: -10px;
  background: transparent;
}

div.progressoScroll {    
  width: 0%;
  height: 5px;
  background: rgb(2,0,36);
  background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%); 
} 
/* Fim barra deprogresso */

/*btnTopo*/
.btnTopo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 25px;
  height: 25px;
  background-color: #000;
  text-decoration: none;
  border-radius: 50%;
}
.btnTopo::after {
  /* content: "â†‘"; */
  content: "▲";
  font-size: 14px;
  font-weight: bold;
  color: aliceblue;
  transition: margin-top 250ms;
}
.btnTopo:hover::after {
  margin-top:-8px;
}
/*fim btnTopo*/

/* Inicio do rodape */
footer {
  background-color: var(--cinza-escuro);
  position: absolute;
  width: 100%;
  height: 70px;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 21px;
  color: var(--amarelo);
  text-shadow: 1px 1px #232526;
  text-align: center;
  border-top: solid var(--amarelo) 1px;
}

footer span a {
  text-decoration: none;
  color: var(--azul);
  font-weight: 700;
}

footer span a:hover {
  color: var(--azul-claro);
}
/* Fim do rodape */