
header {
      background: linear-gradient(135deg, #003366, #0055aa); color: white; padding: 15px 30px; display: flex;
      justify-content: space-between;  align-items: center; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); flex-wrap: wrap;
    }

    .logo-area {
      display: flex;
      align-items: center;
    }

    .logo-area img {
      height: 50px;
      margin-right: 10px;
    }

    .logo-area h1 {
      font-size: 1.6rem;
      font-family: Arial, sans-serif;
    }

    nav {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }

    nav a:hover {
      color: #ffdd00;
    }

    @media (max-width: 768px) {
      header {
        flex-direction: column;
        align-items: flex-start;
      }

      nav {
        margin-top: 10px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        width: 100%;
      }
    }





    .hero {
      position: relative; height: 100vh; background: url('../img/fundo3.jpg') no-repeat center center/cover; color: white;
      display: flex; align-items: center; justify-content: center; text-align: center;
    }

    .hero-overlay {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 50, 0.6); z-index: 1;
    }

    .hero-content {
      position: relative; z-index: 2; max-width: 800px; padding: 20px;
    }

    .hero h1 {
      font-size: 2.8rem;
      margin-bottom: 15px;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .hero-buttons a {
      padding: 12px 24px;
      text-decoration: none;
      border-radius: 30px;
      font-weight: bold;
      transition: background 0.3s;
    }

    .btn-saber {
      background-color: #0055aa;
      color: white;
    }

    .btn-saber:hover {
      background-color: #003f80;
    }

    .btn-cursar {
      background-color: #ffdd00;
      color: #000;
    }

    .btn-cursar:hover {
      background-color: #e6c800;
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2rem;
      }
      .hero p {
        font-size: 1rem;
      }
    }




.sobre-section {
  background-color: #f0f8ff;
  padding: 80px 20px;
}

.container-sobre {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.sobre-img {
  flex: 1 1 400px;
  text-align: center;
}

.sobre-img img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.sobre-texto {
  flex: 1 1 500px;
}

.sobre-texto h2 {
  color: #003366;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.sobre-texto p {
  font-size: 1.15rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 16px;
}



.cursos-section {
  background-color: #f0f4ff;
  padding: 80px 20px;
}

.container-cursos {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.titulo-cursos {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 10px;
}

.subtitulo-cursos {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 40px;
}

.cursos-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card-curso {
  background-color: #fff;
  border-radius: 12px;
  padding: 0 0 20px 0;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  
}

.capa-cursos{
    width: 100%; height: 200px;
    margin-bottom: 10px; border-radius: 8px;
}

.card-curso img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;

  
}

.card-curso h3 {
  font-size: 1.3rem;
  color: #003366;
  margin-bottom: 10px;
}

.card-curso p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.card-curso:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}




.beneficios-section {
  background-color: #ffffff;
  padding: 80px 20px;
}

.container-beneficios {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.titulo-beneficios {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 10px;
}

.subtitulo-beneficios {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 50px;
}

.beneficios-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card-beneficio {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 0 0 20px 0;
  width: 270px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.card-beneficio img {
  width: 100%;
  height: 100%;

}

.card-beneficio h3 {
  font-size: 1.2rem;
  color: #003366;
  margin-bottom: 10px;
}

.card-beneficio p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

.card-beneficio:hover {
  transform: translateY(-6px);
}






.depoimentos-section {
  background-color: #f0f8ff;
  padding: 80px 20px;
}

.container-depoimentos {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.titulo-depoimentos {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 10px;
}

.subtitulo-depoimentos {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 50px;
}

.depoimentos-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card-depoimento {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.card-depoimento img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.card-depoimento .comentario {
  font-style: italic;
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.card-depoimento h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #003366;
}

.card-depoimento span {
  font-size: 0.9rem;
  color: #777;
}

.card-depoimento:hover {
  transform: translateY(-5px);
}







.como-funciona-section {
  background-color: #e6f2ff;
  padding: 80px 20px;
}

.container-como {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.titulo-como {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 10px;
}

.subtitulo-como {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 50px;
}

.passos-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.passo {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.passo img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

.passo h3 {
  font-size: 1.2rem;
  color: #003366;
  margin-bottom: 10px;
}

.passo p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.passo:hover {
  transform: translateY(-5px);
}




.faq-section {
  padding: 80px 20px;
  background-color: #f9fbff;
}

.container-faq {
  max-width: 800px;
  margin: auto;
}

.faq-titulo {
  text-align: center;
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 10px;
}

.faq-subtitulo {
  text-align: center;
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
}

.faq-toggle {
  display: none;
}

.faq-pergunta {
  display: block;
  font-weight: bold;
  font-size: 1.1rem;
  color: #003366;
  cursor: pointer;
  padding: 15px;
  background-color: #e0ecff;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.faq-pergunta:hover {
  background-color: #d1e2ff;
}

.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background-color: #ffffff;
  padding: 0 15px;
  border-left: 3px solid #003366;
  margin-top: 10px;
}

.faq-toggle:checked + .faq-pergunta + .faq-resposta {
  max-height: 300px;
  padding: 15px;
}




.cta-final {
  background: linear-gradient(to right, #003366, #0050aa);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.cta-container {
  max-width: 800px;
  margin: auto;
}

.cta-final h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-final p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.cta-botoes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.cta-btn {
  background-color: #ffcc00;
  color: #003366;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #ffd633;
}

.cta-btn.secundario {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.cta-btn.secundario:hover {
  background-color: rgba(255, 255, 255, 0.1);
}







.footer {
  background-color: #001f3f;
  color: #fff;
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 200px;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffcc00;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffcc00;
}

.institucional p {
  color: #ccc;
  font-size: 0.95rem;
  margin-top: 10px;
}

.logo-footer {
  width: 140px;
  margin-bottom: 15px;
}

.social-icons a img {
  width: 28px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

.footer-copy {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
}


.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: #002855;
  color: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: none; /* oculto inicialmente */
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-content p {
  font-size: 16px;
  margin: 0;
  line-height: 1.4;
}

.cookie-content button {
  align-self: flex-start;
  background-color: #00bfff;
  color: white;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cookie-content button:hover {
  background-color: #009acb;
}

@media (min-width: 600px) {
  .cookie-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}



