
  body {
    margin: 0;
   padding-top: 56px;
   width: 100%;
   height: 100%;
 font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow-x: hidden
  }



    /* Menu Navegação */
    
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #097074;
    backdrop-filter: blur(8px);
    z-index: 999;

  }

  .navbar-container {
    max-width: 1200px;
    margin: auto;
    padding: 16px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
  }

  .nav-links {
    display: flex;
    gap: 25px;
  }

  .nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s;
    transform: translate(0%,-5%);
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #00d4ff;
    transition: width 0.3s;
   
    
  }

  .nav-links a:hover {
    color: #00d4ff;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  /* Menu mobile */
  .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
  }


  /* H2 DO SITE */
   h2 {
    text-align: center;
   color: #097074;
    font-weight: bolder; 
    
    font-size: 2rem;
     margin-top: 5%
   }
  /* SOBRE OQ É */

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgb(255,255,255);
    margin-top: 2%;
    border-radius: 20px;
    height: auto;
    
}

.bloco-1 {
    background-color: #f5f5f5;
    color: #097074;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    
}


.bloco-1  .texto1   {
  font-size: 1rem;
 
  text-align: center;
}

/* Sobre os Alunos*/

.container2 {
       display: flex;
      justify-content: center;
      gap:80px;
      padding: 20px;
     margin: auto;
     min-width: 320px;
     max-width: 1000px;
     transform: translate(5%,0%);
}

.card {
  
  width: 20rem;
  margin-top: 10%;
  transform: translate(-15%);
  background-color: #f5f5f5;
}



/* RESPONSIVIDADE PARA TELAS DE CELULARES */
@media (max-width: 670px)  {

  .container{
    width: 100%;
  }
  .container2 {
    align-items: center;
    gap: 20px;
    flex-direction: column;
    flex-wrap: wrap;
  }
  
  .card {
    width: 15rem;
    align-items: center;
    margin: auto;
    transform: translate(-25%);
  }

  h2 {
    font-size: 1.7rem;
    margin-top: 13%;
  }


/* 2° TÍTUTLO DO TEXTO*/
  .subInferior {
   margin-top: 10%;
   transform: translate(3%, 30%);
   font-weight: bolder;
   
  }
}

/* RESPONSIVIDADE  Para Notebooks */

@media (max-width:1265px)  {

  .container2 {
    gap: 50px;
    
  }

  .card {
    width: 17rem;
  }
}

/*Responsividade para Tablets*/
@media (min-width: 671px) and (max-width: 1000px) {

  .container2 {
    gap: 40px;
    justify-content: center;
  
   }
   .card {
    width: 15rem;
    margin: 0 auto;
    ;
   }  
   .card-body {
    padding: 20px;
    justify-items: center;
    flex-wrap: wrap;
   }
}


                          /* FOOTER */
.site-footer {
  background-color: #097074; /* marrom escuro combinando com o banner */
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
  margin-top: 40px;
  
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 12px;
  font-size: 18px;
  border-left: 3px solid #189fa3; 
  padding-left: 8px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #fff3;
  margin-top: 25px;
  padding-top: 15px;
  font-size: 13px;
}

