*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


header{
  display: flex;
  width: 100%;
  height: 80px;
  align-items: center;
  /* border: 1px solid brown; */
  box-shadow: 5px 0 10px brown;
  justify-content: space-between;
  padding: 10px;
  z-index: 1;
  background-color: #fff;
}
header:hover {
  box-shadow: 0 0 10px darkgoldenrod;
}
header img{
  width: 200px;
}
header a{
    position: relative;
    float: left;
    list-style: none;
    cursor: pointer;
    font-size: 20px;
    padding: 10px;
    display: flex;
    color: #333;
    text-decoration: none;
  }
  .menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
  }

.btnAcess {
    border-radius: 50px;
    padding: 6px;
    border: 3px solid #B95151;
    width: 90px;
    cursor: pointer;
    background-color: #fff;
  }
  .btnAcess:hover {
    background-color: #B95151;
    color: #fff;
  }

/*side menu*/

/* Ícone hamburguer */
.menu-icon {
font-size: 30px;
cursor: pointer;
}

/* MENU LATERAL */
.side-menu {
position: fixed;
top: 0;
left: -250px; /* Escondido por padrão */
width: 250px;
height: 100%;
background-color: white;
box-shadow: 5px 0 10px rgba(0, 0, 0, 0.2);
transition: left 0.3s ease-in-out;
padding-top: 20px;
z-index: 1100;
}

/* Mostrar menu */
.side-menu.open {
left: 0;
}

/* Botão fechar */
.close-btn {
background: none;
border: none;
font-size: 25px;
cursor: pointer;
position: absolute;
top: 10px;
right: 10px;
}

/* Estilização dos links do menu */
.side-menu {
list-style: none;
padding: 20px;
}

.side-menu a {
padding: 15px;
text-align: center;
}

.side-menu a {
text-decoration: none;
color: #333;
font-size: 18px;
display: block;
transition: 0.3s;
}

.side-menu ul li a:hover {
color: brown;
}
.overlay {
display: none; /* Escondido por padrão */
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5); /* Fundo semi-transparente */
z-index: 999; /* Fica abaixo do menu */
}

/* Mostrar o overlay quando o menu estiver aberto */
.overlay.show {
display: block;
}

.counter{
    border: 6px solid brown ;
     border-radius:  70px;
      /* color: rgb(0, 68, 255); */
       text-align: center;
        font-size: 30px
}
.counter, p{
    color: rgb(0, 68, 255)
}
.cont{
    font-size: 20px; justify-content: center; align-items: center; display: flex; gap: 15px; flex-wrap: wrap;
}

/* .box_curso {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    margin: auto;
    gap: 20px;
} */
.corpo_nep {
    display: block;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 50px;
    flex-direction: column;
    text-align: center;
    align-items: center;
    
}
.corpo_nep, h1 h2 p {
    /* padding: 8px; */
    font-size: 20px;
    margin-right: auto;
}
/* .midianep {
    width: 300px;
    position: relative;
    margin-left: auto;
    background-color: darkgoldenrod; 
}*/
#alunosChart {
  margin-bottom: 50px;

}

/* #map { 
  width: auto;
  height: 500px;
  margin-top: 20px;
 } */
 #mapa {
  margin: auto;
  width: 50%; 
  height: 700px;
  box-shadow: 0 0 10px rgb(226, 224, 224);
  margin-bottom: 20px;
 }

 
/*rodapé*/
footer{
  box-shadow: 0px 5px 10px #333;
  width: 100%;
  height: auto;
  padding: 20px 0;
  margin-top: 100px;
}
.icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}
.icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}
.icons img {
  width: 100%;
  max-width: 60px;
  transition: transform 0.3s ease;
}
.icons img:hover {
  transform:  scale(1.1);
}
#imgfoot {
  transition: transform 0.3s ease;
}
#imgfoot:hover {
  transform:  scale(1.1);
}


footer p {
  margin-top: 20px;
  text-align: center;
  color: rgb(0, 68, 255)
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: brown;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none; /* Escondido por padrão */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s, transform 0.3s;
}

.back-to-top:hover {
    background-color: darkgoldenrod;
    transform: scale(1.1);
}

@media (max-width: 768px){
  .bannerText {
    font-size: 1rem;
    text-align:left;
  }
  .bannerCentro img {
    width: 50%;
  }
  .menu-icon {
    display: block;
  }

  /* Esconder menu no mobile */
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0px 5px 10px #ccc;
    padding: 10px;
    text-align: center;
  }

  /* Mostrar menu quando ativo */
  .menu.active {
    display: flex;
    animation: slideIn 0.3s ease-in-out;
  }

  header ul li {
    padding: 10px;
  }
  #mainhead {
    display: none;
  }
  #mapa {
    margin: auto;
    width: 90%; 
    height: auto;
    box-shadow: 0 0 10px rgb(226, 224, 224);
    margin-bottom: 20px;
   }
  .icons a img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }
}
