/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f7fa;
}

.site-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
   
}

.topo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex; /* escondido inicialmente */
  align-items: center;
  justify-content: space-between;
  padding: 6px 20px;
  background-color: #fff;
  height: 70px;
  transition: 0.3s ease;
  box-shadow: 2px 2px 8px rgba(29, 28, 28, 0.2); /* sombra adicionada */
}

.topo .menu a.active {
  border-bottom: 3px solid #0a9326;
  padding: 10px 5px;
  font-display: fallback;
  border-radius: 7px 7px ;
  background-color: #000;
  color: #ffffff;
}

.logo {
  height: 40px; /* reduz o tamanho da logo */
}
 
.menu a {
  margin: 0 10px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
}
.agrupador-links a.active {
  background-color: rgb(11, 12, 11); 
  color: white;
}

.login {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.conteudo-principal {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  background: linear-gradient(to bottom,  #bbcbc3, #08c62e);
  flex-wrap: wrap;
  gap: 20px;
  overflow: hidden; /* importante para os triângulos */
  height: 500px;
}

.img-container-noticia {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.img-container-noticia::before,
.img-container-noticia::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 2;
}

/* Triângulo no canto superior esquerdo */
.img-container-noticia::before {
  top: 0;
  left: 0;
  border-width: 0 100px 100px 0;
  border-color: transparent white transparent transparent;
}

/* Triângulo no canto inferior direito */
.img-container-noticia::after {
  bottom: 12%;
  right: 0;
  border-width: 100px 0 0 100px;
  border-color: transparent transparent transparent white;
}

.img-container-noticia {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}
.servico-bloco {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}

.servicos {
  position: relative;
  font-size: 48px;
  color: #fff;
  font-weight: bold;
  margin: 0;
}

.icone-capelo {
  position: absolute;
  top: -130px; /* sobe o ícone */
  left: 50%;
  transform: translateX(-50%);
  font-size: 140px;
  color: #000;
}

.texto-curriculo {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 45px;
  padding: 0 20px; /* para evitar que o texto encoste nas bordas */
  font-size: 12px;
  line-height: 1.6;
  color: #333;
  margin-right:40px ;
  margin-left:20px ;
}




.texto-curriculo {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 45px;
  font-size: 18px;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.inscrever {
  display: flex;
  flex-direction: row-reverse; /* imagem à direita */
  align-items: flex-start;
  gap: 30px;
  padding: 30px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 50px auto;
  max-width: 1000px;
  flex-wrap: wrap;
}

.inscrever img {
  width: 600px;
  height: 700px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.texto-inscrever {
  flex: 1;
  min-width: 300px;
}

.terceiro-ciclo {
  max-width: 100%;
  text-align: left;
}

.terceiro-ciclo h2 {
  text-align: center;
  color: #182892;
  margin-bottom: 30px;
}

.terceiro-ciclo h3 {
  color: #444;
  margin-top: 20px;
}

.terceiro-ciclo ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #333;
  line-height: 1.6;
}



.analise {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 30px 40px;
  background-color: #fff;
  max-width: 100%;
  margin-bottom: 35px;
  background-color: #08c62e;
}

.conteudo-texto {
  flex: 1;
  padding: 30px;
  color: #333;
}

.conteudo-texto h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #000;
}

.conteudo-texto p {
  margin-bottom: 10px;
  line-height: 1.5;
  font-size: 14px;
}

.avaliacao {
  font-size: 18px;
  color: #08c62e;
  margin-bottom: 10px;
}


.duvidas {
  display: flex;
  justify-content: space-between;
  padding: 40px 60px;
  flex-wrap: wrap;
  gap: 30px;
  
}

.box-duvida {
  flex: 1;
  min-width: 300px;
  padding: 30px;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 15px;
  color: #fff;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  background-color: #08c62e;
}

.box-duvida h3 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #fff;
  text-align: center;
  border-bottom: 1px solid #fff;
}

.box-duvida p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

.box-duvida button {
  padding: 10px 20px;
background-color: #08c62e;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  transition: background 0.3s ease;
}

.box-duvida button:hover {
  background-color: #08c62e;
} 

/* .logo1 {
  display: none;
  width: 150px; 
  height: auto;
  margin-left: 150px; 
  margin-top: 80px;
  display: block;   

} */

.footer-conten {
  margin-top: 5%; 
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #f8f8f8;
  padding-left: 70px;
  color: #101327;
}

/* Lado esquerdo: texto + QR + contatos + ícones */
.coluna-esquerda {
  flex: 1;
  border-radius: 15px;
  color: #080a14;
  font-size: 12px;
}

.coluna-esquerda p {

  text-align: center;

}


.QR {
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 0%;
  margin: 0 auto;
  /* <-- Centraliza horizontalmente */
}

.no-break {
  white-space: nowrap;
  /* Impede qualquer quebra de linha */
}


.QR img {
  width: 90%;
  height: 90%;
  text-align: center;
  margin-top: 0%;
}

@keyframes girar {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}

.linha {
  margin: 2px;
  width: 240px;
  margin-left: 83px;
}

/* Ícones das redes sociais */
.redes-sociais {
  display: flex;
  justify-content: flex-end;
  /* alinha os ícones à direita */
  align-items: center;
  /* centraliza verticalmente */
  gap: 15px;
  /* espaçamento entre ícones */
  margin: 5px 50px 20px 0;
}

.icone-social {
  text-decoration: none;
  background-color: #142bc6;
  color: #fff;
  font-size: 22px;
  transition: transform 0.3s ease, color 0.3s ease;
  padding: 5px;
  border-radius: 5px;

}

.redes-sociais a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin: 0 5px;
  border-radius: 50%;
  background: #1939f0;
  color: white;
  font-size: 2.0rem;
  transition: all 0.2s ease;
}

.icone-social i {
  font-size: 25px;
  /* aumenta o tamanho do ícone */
}

.redes-sociais a:hover {
  background: #0a9326;
  color: #0a0e25;
  transform: scale(1.2);
}

.redes-sociais a:nth-child(1):hover {
  border: #080a14 1px solid;
  color: #FFFFFF;
  background: #2004f3;
  -webkit-background-clip: text;
  /* recorta o background dentro do texto */
  -webkit-text-fill-color: transparent;
  /* torna o texto transparente para ver o gradiente */
  font-weight: bold;
  transform: scale(1.3);
}

.redes-sociais a:nth-child(2):hover {
  border: #080a14 1px solid;
  color: linear-gradient(red, blue);
  background: linear-gradient(red, yellow, rgb(247, 5, 210), blue);
  -webkit-background-clip: text;
  /* recorta o background dentro do texto */
  -webkit-text-fill-color: transparent;
  /* torna o texto transparente para ver o gradiente */
  font-weight: bold;
  transform: scale(1.3);
}

.redes-sociais a:nth-child(2) {
  font-size: 1.8rem;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.redes-sociais a:nth-child(3):hover {
  border: #080a14 1px solid;
  color: #ffffff;
  background: #448c52;
  -webkit-background-clip: text;
  /* recorta o background dentro do texto */
  -webkit-text-fill-color: transparent;
  /* torna o texto transparente para ver o gradiente */
  font-weight: bold;
  transform: scale(1.3);
}

.redes-sociais a:nth-child(3) {
  color: #ffffff;
  background: #4fcb68;
}

@keyframes moverGradiente {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.texto-gradiente {
  background: linear-gradient(90deg, #00ff88, #0066ff, #ff00ff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: moverGradiente 4s linear infinite;
}


/* Colunas do lado direito */
.colunas-horizontais {
  flex: 2;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.coluna {
  min-width: 200px;
}

.coluna h3 {
  margin-bottom: 10px;
  color: #1c2772;
  font-size: 17px;
  display: inline-block;
  padding-bottom: 1px;
}

.coluna p {
  margin: 8px 0;
  color: #151c46;
  line-height: 1.6;
  font-size: 12px;
}


footer p a {
  text-decoration: none;
  /* remove sublinhado */
  border: none;
  /* remove bordas */
  outline: none;
  /* remove contorno padrão */
  font-style: normal;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  /* necessário para o transform funcionar bem */
  transition: all 0.4s ease;

  /* Gradiente visível desde o início */
  background: linear-gradient(90deg, #00ff88, #0066ff, #ff00ff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

footer p {
  text-decoration: none;
  /* remove sublinhado */
  border: none;
  /* remove bordas */
  outline: none;
  /* remove contorno padrão */
  font-style: normal;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  /* necessário para o transform funcionar bem */
  transition: all 0.4s ease;

  /* Gradiente visível desde o início */
  background: linear-gradient(90deg, #00ff88, #0066ff, #ff00ff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Efeito ao passar o mouse para o Link */
footer p a:hover,
footer p a:focus {
  transform: scale(1.3);
  background-position: 100% 0;
  /* faz o gradiente “mover” */
  filter: brightness(1.3);
  /* destaca as cores */
}

/* Efeito ao passar o mouse para o @ */
footer p:hover,
footer p:focus {
  transform: scale(1.3);
  background-position: 100% 0;
  /* faz o gradiente “mover” */
  filter: brightness(1.3);
  /* destaca as cores */
}

/* Melhora a acessibilidade: mostra um foco visível só quando for realmente necessário */
footer p a:focus-visible {
  outline: 3px solid rgba(0, 120, 200, 0.85);
  outline-offset: 3px;
}

/* Melhora a acessibilidade: mostra um foco visível só quando for realmente necessário */
footer p:focus-visible {
  outline: 3px solid rgba(0, 120, 200, 0.85);
  outline-offset: 3px;
}

 footer {
   background-color: #ffffff;
   padding: 15px 40px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-top: 2px solid #ccc;
   font-family: Arial, sans-serif;
   flex-wrap: wrap;
 }

 footer p {
   margin: 0;
   color: #313866;
   font-size: 14px;
   text-align: center;
   margin: 0 auto;
 }

 .icones-direita {
   display: flex;
   gap: 30px;
   align-items: center;
 }

 .item-icone {
   display: flex;
   align-items: center;
   gap: 8px;
   color: #1b2355;
   font-size: 14px;
   text-decoration: none;
   transition: color 0.3s ease;
 }

 .item-icone1 {
   color: red;
   border-bottom: none;
   /* remove qualquer borda inferior */
   text-decoration: none;

 }


 .item-icone i {
   font-size: 18px;
 }

 .item-icone:hover {
   color: #0a0e25;
 }

/* Responsividade */
@media (max-width: 768px) {
  .topo {
    flex-direction: column;
    padding: 15px;
  }

  .esquerda {
    margin-bottom: 15px;
  }

  .menu {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .menu a {
    margin: 5px;
    font-size: 14px;
  }

  .direita {
    margin-top: 10px;
  }
}