* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

.menu {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgb(255, 255, 255);
  width: 100%;
  height: 75px;
  max-width: 1400px;
  border-radius: 40px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10000;
  font-family: "Roboto", sans-serif;
}

.menu.scrolled {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.menu .logo {
  font-weight: 700;
  font-size: 24px;
  color: #F26800;
  font-family: "Archivo Black", sans-serif;
}

.menu .nav-itens {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-itens li a {
  text-decoration: none;
  color: #F26800;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-itens li a::after {
  content: "";
  position: absolute;
  color: #000000;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: #f69222;
  transition: width 0.3s ease;
}

.nav-itens li a:hover::after {
  width: 60%;
}

.nav-itens li a:hover {
  color: rgb(0, 0, 0);
}

.btn {
  display: flex;
  gap: 1rem;
}

.login,
.cadastro {
  padding: 10px 40px;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login {
  background-color: #dcdcdc;
  color: #000;
}

.login:hover {
  background-color: #b0b0b0;
}

.cadastro {
  background-color: #F26800;
  color: #fff;
}

.cadastro:hover {
  background-color: #b6670c;
}

.banner {
  background-image: url("img/interr.jpeg");
  background-size: cover;
  background-position: center;
  height: 730px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  padding: 150px;
}

.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.banner-vocacao {
  max-width: 600px;
  padding: 40px;
  color: white;
  font-family: Arial, sans-serif;
  position: relative;
  z-index: 2;
}

.banner-vocacao h1 {
  font-size: 4.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.banner-vocacao h1 span {
  color: #F26800;
}

.banner-vocacao p {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 25px;
}


.btn-principal {
  display: flex;
  justify-content: center;
  background-color: #F26800;
  color: #ffffff;
  padding: 21px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 20px;
  margin-top: 50px;
}

.btn-principal:hover {
  background-color: #b6670c;
}

.sobre {
  margin-top: 30px;
  padding: 5rem 2rem;
  font-family: "Poppins", sans-serif;
}

.sobre h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: #F26800;
}

.sobrezinho {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  text-align: justify;
}

.sobrezao {
  max-width: 600px;
  font-size: 20px;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.sobrezao:hover {
  box-shadow: #F26800;
}

.sobre-image img {
  max-width: 350px;
  width: 100%;
  height: auto;
}

.faq {
  padding: 4rem 2rem;
  font-family: "Roboto", sans-serif;
}

.faq h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #F26800;
  font-weight: 700;
}

.faq-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  padding: 1.8rem 2rem;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}


.faq-item h3 {
  margin-bottom: 1rem;
  color: rgb(0, 0, 0);
  font-weight: 700;
  font-size: 1.25rem;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.footer {
  background: #F26800;
  color: #fff;
  font-family: Arial, sans-serif;
  margin-bottom: 0;
}

.container-footer {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-links,
.footer-contact {
  min-width: 200px;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-links a,
.footer-contact a {
  color: #fff;
  text-decoration: none;
  margin: 5px 0;
  display: block;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ddd;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 5px;
}

.rede-social {
  font-size: 20px;
 
}

.rede-social:hover {
  color: #ddd;
}

.footer-btn {
  background: #ce5900;
  text-align: center;
  padding: 10px;
  margin-top: 15px;
  font-size: 14px;
}



.cursos{
  margin-top: 90px;
  margin-bottom: 60px;
  padding: 4rem 2rem;
  font-family: "Roboto", sans-serif;
}

.cu_titulo h1{
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #F26800;
  font-weight: 700;
}

.cu_titulo h3{
  text-align: center;
  font-size: 25px;
  margin-bottom: 2.5rem;

}

.cu_container{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 9500px;
  margin: 0 auto;
  
}

.cu_cursos {
  background: white;
  padding: 3rem 4rem;
  border-radius: 10px;
  box-shadow: 0 9px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center; /* <-- centraliza tudo dentro */
}


.cu_cursos h3{
  text-align: center;
  font-size: 25px;
  color: #F26800;

}

.cu_cursos p {
  text-align: justify;
  font-size: 17px;
  margin-top: 30px;
}

.cu_cursos button {
  background-color:#F26800;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 9px;
  border: none  ;
  font-weight: bold;
  text-decoration: none;
  margin-top: 30px;
  
}

.sobrenos {
  padding: 9rem 2rem;
  font-family: "Poppins", sans-serif;
}

.sobrenos h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #F26800;
}

.so_sobrezinho {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  text-align: justify;
}

.so_sobrezao {
  max-width: 600px;
  font-size: 20px;
  padding: 2.5rem;
}

.so_sobre-image img {
  border-radius: 200px;
  max-width: 400px;
  width: 100%;
  height: auto;
}

.funcoes{
  margin-top: 10px;
  margin-bottom: 100px;
  padding: 2rem;
  font-family: "Roboto", sans-serif;
}

.funcoes h1{
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #F26800;

  font-weight: 700;
}


.blocos{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.0rem;
  margin: 0 auto;
  
}

.integrantes {
  background: white;
  padding: 1.3rem 1rem;
  border-radius: 10px;
  box-shadow: 0 9px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center; 
  
}

.integrantes img{
  border-radius: 40px;
}

.integrantes h3{
  text-align: center;
  font-size: 25px;
  color: #F26800;
  margin-top: 20px ;
}

.integrantes p {
  text-align: justify;
  font-size: 17px;
  margin-top: 10px;
  color: #8b8b8b;
}











@media (max-width: 1200px) {
  .menu, .banner, .sobre, .cursos, .faq, .footer {
    padding: 2rem 1rem;
  }

  .cu_container,
  .blocos,
  .faq-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .banner {
    padding: 60px 20px;
    text-align: center;
  }

  .banner-vocacao h1 {
    font-size: 2.2rem;
  }

  .banner-vocacao p {
    font-size: 1rem;
  }

  .cu_container,
  .blocos,
  .faq-items {
    grid-template-columns: 1fr;
  }

  .sobre-image img,
  .so_sobre-image img {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .menu {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .banner-vocacao h1 {
    font-size: 1.8rem;
  }

  .banner-vocacao p {
    font-size: 0.9rem;
  }

  .cu_cursos,
  .integrantes {
    padding: 1rem;
  }

  .cu_cursos h3,
  .integrantes h3 {
    font-size: 20px;
  }

  .footer {
    text-align: center;
  }
}


