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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  font-size: 100%;
  transition: font-size 0.2s ease;
}

/* Acessibilidade */
.acessibilidade {
  background: #004080;
  color: white;
  padding: 10px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.acessibilidade button,
.acessibilidade .atalho {
  background: #fff;
  color: #004080;
  border: none;
  padding: 5px 10px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
}

/* Cabeçalho */
/* TOPO E LOGOS */
.topo {
  width: 100%;
  background-color: #ffffff;
  text-align: center;
  padding-bottom: 0;
}

.logos-topo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 15px 0;
}

.logo-escola,
.logo-camara {
  height: 70px;
  max-width: 200px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-escola,
  .logo-camara {
    height: 50px;
    max-width: 150px;
  }
}

/* MENU */
.menu {
  background-color: #1d325c;
  color: #fff;
  width: 100%;
}

.menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* BOTÃO HAMBURGUER */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #fff;
  cursor: pointer;
  margin-right: 10px;
}

/* MENU PRINCIPAL */
.menu-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 10px;
}

.menu-list li {
  position: relative;
}

.menu-list a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.menu-list a i {
  margin-right: 6px;
}

.menu-list a:hover {
  background-color: #0e2a48;
}

/* SETA DROPDOWN */
.seta {
  margin-left: 5px;
  font-size: 0.7rem;
}

/* SUBMENU */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  background-color: #1d325c;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 160px;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 4px;
}

.dropdown:hover .submenu {
  display: block;
}

.submenu li a {
  padding: 10px 15px;
  white-space: nowrap;
}

/* CONTATO E REDES SOCIAIS */
.menu-info-direita {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contato-menu span {
  margin-right: 10px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.redes-menu a {
  color: #fff;
  font-size: 1rem;
  margin-left: 10px;
  transition: color 0.3s;
}

.redes-menu a:hover {
  color: #ffcc00;
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .menu-container {
    flex-direction: column;
    align-items: stretch;
    position: relative;
  }

  .menu-toggle {
    display: block;
    align-self: flex-end;
    margin-bottom: 10px;
  }

  .menu-list {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #1d325c;
    border-top: 1px solid #ffffff22;
  }

  .menu.open .menu-list {
    display: flex;
  }

  .menu-list li {
    width: 100%;
  }

  .menu-list li a {
    padding: 15px 20px;
    border-bottom: 1px solid #ffffff11;
  }

  .submenu {
    position: static;
    display: block;
    background-color: #0e2a48;
    box-shadow: none;
    border-radius: 0;
  }

  .dropdown:hover .submenu {
    display: block;
  }

  .menu-info-direita {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid #ffffff22;
    background-color: #1d325c;
  }

  .menu.open .menu-info-direita {
    display: flex;
  }

  .contato-menu span {
    font-size: 0.85rem;
    color: #fff;
    display: block;
    margin-bottom: 5px;
  }

  .redes-menu {
    margin-top: 10px;
  }

  .redes-menu a {
    margin-right: 15px;
    margin-left: 0;
  }
}

.carrossel {
  position: relative;
  height: 400px;
}

.swiper-slide {
   position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 500px; /* ou o valor desejado */
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.texto-slide {
 position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
  padding: 1rem;
  width: 90%;
}

.texto-slide h2 {
  font-size: 3.5rem;
  margin: 0;
	color: white;
}

.texto-slide p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.swiper-button-next,
.swiper-button-prev {
  color: white !important;
}

.swiper-pagination-bullet-active {
  background: #fff !important;
	font-size: 40px !important;
}

.noticias {
  background-color: #f4f4f4;
  padding: 50px 20px;
  text-align: center;
}

.titulo-secao {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #001b5e;
}

.card-noticia {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.card-noticia img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.conteudo-card {
  padding: 20px;
}

.card-noticia h3 {
  font-size: 1.1rem;
  color: #001b5e;
  margin-bottom: 10px;
}

.card-noticia .data {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 10px;
}

.card-noticia .data span {
  color: #007bff;
}

.card-noticia .resumo {
  font-size: 0.95rem;
  color: #333;
}

.botao-veja-todas {
  margin-top: 40px;
}

.botao-veja-todas a {
  background-color: #e70415;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.botao-veja-todas a:hover {
  background-color: #e70415;opacity: 50%;
}

/* Galeria */
.galeria {
  padding: 40px 20px;
  background: #ffffff;
  text-align: center;
}

.galeria h2 {
  font-size: 2rem;
  color: #2d4c7c;
  margin-bottom: 30px;
}

.grid-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.grid-galeria img {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.grid-galeria img:hover {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox-bg {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-bg img {
  max-width: 90%;
  max-height: 80vh;
  border: 4px solid white;
  border-radius: 8px;
}

.lightbox-bg.active {
  display: flex;
}

/* Rodapé */
footer {
  text-align: center;
  padding: 20px;
  background: #2d4c7c;
  color: white;
  font-size: 14px;
}

/* Contraste */
.contraste-ativo {
  background-color: #000 !important;
  color: #fff !important;
}

.contraste-ativo a,
.contraste-ativo button {
  background-color: #000 !important;
  color: #fff !important;
  border: 1px solid #fff;
}

@media (max-width: 768px) {
  .logos-topo {
    flex-direction: column;
    gap: 15px;
  }

  .carrossel {
    height: 300px;
  }

  .texto-slide h2 {
    font-size: 1.6rem;
  }

  .texto-slide p {
    font-size: 1rem;
  }
}
/* TOPO SUPERIOR */
.topo-superior {
  background-color: #1d2b47;
  color: white;
  font-size: 14px;
  padding: 8px 0;
}

.container-superior {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.contato-topo span {
  margin-right: 20px;
}

.redes-sociais a {
  margin-left: 12px;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.redes-sociais a:hover {
  color: #ffcc00;
}

@media (max-width: 768px) {
  .container-superior {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .contato-topo, .redes-sociais {
    text-align: center;
  }
}
.agenda {
  padding: 40px 0;
}

.agenda h2 {
  text-align: center;
  color: #2f4c81;
  font-size: 2rem;
  margin-bottom: 30px;
}

.eventos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.evento {
  display: flex;
  background: #fff;
  border-left: 6px solid #2f4c81;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 6px;
  padding: 15px;
  transition: transform 0.3s ease;
}

.evento:hover {
  transform: translateY(-4px);
}

.data-evento {
  width: 60px;
  text-align: center;
  background-color: #2f4c81;
  color: white;
  border-radius: 6px;
  padding: 10px 0;
  margin-right: 15px;
  flex-shrink: 0;
}

.data-evento .dia {
  font-size: 1.5rem;
  font-weight: bold;
  display: block;
}

.data-evento .mes {
  text-transform: uppercase;
  font-size: 0.9rem;
  display: block;
  margin-top: 2px;
}

.info-evento h3 {
  margin: 0 0 6px;
  color: #2f4c81;
}

.info-evento p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}


.noticias {
  padding: 40px 0;
}

.noticias h2 {
  text-align: center;
  color: #2f4c81;
  font-size: 2rem;
  margin-bottom: 30px;
}

.noticias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.noticia-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.noticia-card:hover {
  transform: translateY(-5px);
}

.noticia-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.noticia-conteudo {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.noticia-conteudo h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #2f4c81;
}

.noticia-conteudo p {
  flex: 1;
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 10px;
}

.btn-leia-mais {
  align-self: flex-start;
  background: #2f4c81;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-leia-mais:hover {
  background: #1d325c;
}


/* Seções com separação clara */
section {
  padding: 60px 20px;
  transition: all 0.3s ease;
}

section:nth-child(even) {
  background-color: #1d325c; /* alterna cor de fundo */
}

section:nth-child(odd) {
  background-color: #ffffff;
}

/* Divisões suaves entre seções */
section + section {
  border-top: 1px solid #ddd;
}

/* Estilo geral para container se usar */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Títulos das seções */
section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  color: #2f4c81;
}

section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #2f4c81;
  margin: 10px auto 0;
  border-radius: 2px;
}

 


.separador-onda {
  position: relative;
  height: 100px;
  overflow: hidden;
  line-height: 0;
}

.separador-onda svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.separador-onda .shape-fill {
  fill: #f9f9f9; /* cor de fundo da próxima seção */
}


.separador-diagonal {
  width: 100%;
  height: 80px;
  background: linear-gradient(to top left, #ffffff 50%, transparent 50%);
}

.separador-invertido {
	  width: 100%;
  height: 80px;
  background: linear-gradient(to bottom left, #f9f9f9 50%, transparent 50%);
}


.faixa-diagonal {
  height: 80px;
  background: linear-gradient(to top right, #f5f7fa 50%, white 50%);
  margin-top: -40px; /* sobreposição leve */
  z-index: 1;
  position: relative;
}

 /* noticias */
.noticias {
  padding: 60px 20px;
  background-color: #e9f1fa;
}

.noticias h2 {
  text-align: center;
  color: #2f4c81;
  font-size: 2rem;
  margin-bottom: 30px;
}

.noticias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.noticia-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.noticia-card:hover {
  transform: translateY(-5px);
}

.noticia-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.noticia-conteudo {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.noticia-conteudo h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #2f4c81;
}

.noticia-conteudo p {
  flex: 1;
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 10px;
}

.btn-leia-mais {
  align-self: flex-start;
  background: #2f4c81;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-leia-mais:hover {
  background: #1d325c;
}

.btn-veja-todas {
  background-color: #e70415;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-veja-todas:hover {
  background-color: #b50310;
}


/* LOGOS */
.logos-topo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 15px 0;
}

.logo-escola,
.logo-camara {
  height: 70px;
  max-width: 200px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-escola,
  .logo-camara {
    height: 50px;
    max-width: 150px;
  }
}

.seta {
  margin-left: 5px;
  font-size: 0.7rem;
}


.cursos-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  background-color: #ffffff;
  gap: 3rem;
}

.cursos-content {
  flex: 1 1 400px;
  max-width: 600px;
}

.cursos-subtitulo {
  color: #2563eb;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cursos-titulo {
  font-size: 2.2rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 1rem;
}

.cursos-texto {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.cursos-destaque {
  font-style: italic;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.cursos-botao {
  display: inline-block;
  background-color: #2563eb;
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cursos-botao:hover {
  background-color: #1d4ed8;
}

.cursos-imagem-wrapper {
  position: relative;
  flex: 1 1 300px;
  max-width: 500px;
}

.cursos-imagem {
  width: 100%;
  border-radius: 1rem;
  z-index: 10;
  position: relative;
}

.cursos-decoracao {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background-color: #2563eb;
  border-bottom-left-radius: 1rem;
  z-index: 0;
}


.lista-cursos {
  padding: 40px 20px;
 
  font-family: 'Poppins', sans-serif;
}

.lista-cursos .container {
  max-width: 900px;
  margin: auto;
}

.lista-cursos h1.titulo-pagina {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.lista-cursos .curso {
  background-color: white;
  border-left: 5px solid #0066cc;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.lista-cursos .curso h2 {
  font-size: 1.5rem;
  color: #003366;
}

.lista-cursos .curso p {
  font-size: 1rem;
  color: #333;
  margin-top: 10px;
}

 .team {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
    }

    .card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      padding: 20px;
      transition: transform 0.3s;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card h2 {
      margin: 0 0 10px;
      font-size: 20px;
      color: #0d47a1;
    }

    .card p {
      margin: 5px 0;
      font-size: 14px;
      color: #555;
    }

    .icon {
      margin-right: 8px;
      color: #1a237e;
    }

    .contact {
      margin-top: 50px;
      background: #e8eaf6;
      padding: 30px;
      border-radius: 12px;
    }

    .contact h2 {
      margin-top: 0;
      color: #1a237e;
    }

    .contact p {
      font-size: 15px;
      margin: 8px 0;
    }

    .contact i {
      margin-right: 8px;
      color: #0d47a1;
    }