/* 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;
}


.contacte {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom,  #08c62e, #097f44);
  border-radius: 15px;
  overflow: hidden;
  padding: 20px;
  color: #fff;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-left: 30px;
  margin-right: 30px;
}

.imagem-lado img {
  width: 300px;
  height: auto;
  
  object-fit: cover;
}

.conteudo-contacto {
  flex: 1;
  min-width: 300px;
}

.conteudo-contacto h2 {
  margin-bottom: 10px;
  font-size: 22px;
  text-align: center;
}

.conteudo-contacto p {
  margin-bottom: 10px;
  text-align: center;
}

.conteudo-contacto hr {
  border: 0;
  border-top: 1px solid #ccc;
  margin: 10px 0;
}

.info-contato span {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 15px;
}

@media (max-width: 768px) {
  .contacte {
    flex-direction: column;
    text-align: center;
  }

  .imagem-lado img {
    width: 100%;
    max-width: 300px;
  }
}

.pergunta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  gap: 20px;
}

.formulario {
  flex: 1;
  min-width: 300px;
  max-width: 48%;
  background-color: #0cb312;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.formulario h2 {
  color: #000000;
  font-size: 24px;
  margin-bottom: 10px;
}

.formulario .aspas {
  font-size: 30px;
  color: #000000;
}

.formulario p {
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 20px;
}

.formulario input,
.formulario textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 14px;
  outline: none;
}

.formulario button {
  background-color:#ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  color: #000000;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.formulario button:hover { 
  background-color:#cfcdcd;
}

.faq {
  flex: 1;
  min-width: 300px;
  max-width: 48%;
  background-color: #f1f5ff;
  padding: 20px;
  border-radius: 10px;
}

.faq h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 20px;
}

.pergunta-frequente {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.pergunta-frequente img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.pergunta-frequente strong {
  color: #002e6d;
}

.pergunta-frequente small {
  color: #666;
}

.pergunta-frequente p {
  font-size: 14px;
  margin-top: 5px;
}



.local {
  padding: 50px 20px;


  text-align: center;
}

.local-info h2 {
  font-size: 28px;
  color: #002e6d;
 
}

.local-info .subtitulo {
  font-size: 16px;
  color: #002e6d;
  margin-bottom: 10px;
}

.local-info .endereco {
  font-size: 16px;

  color: #002e6d;;
  margin-bottom: 30px;
}

.mapa iframe {
  width: 1800px;
  max-width: 1000px;
  height: 350px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}



/* .logo1 {
  width: 150px;        
  height: auto;
  margin-left: 150px;  
  margin-top: 40px;
  display: block;   

} */

 .footer-conten {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      background-color: #f8f8f8;
      padding: 40px;
      font-family: Arial, sans-serif;
      color: #101327;
    }

    /* Lado esquerdo: texto + QR + contatos + ícones */
     .coluna-esquerda {
      flex: 1;
      min-width: 250px; 
      margin: 0px 0px ;
      padding: 0px 0px ; 
      border-radius: 15px;
      color: #080a14;
      font-size: 12px;
    }

    .coluna-esquerda p {
      font-weight: bold;
      text-align: center;
 
    }


.QR {
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  margin: 0 auto; /* <-- Centraliza horizontalmente */
}


    .QR img {
      width: 90%;
      height: 90%;
      text-align: center;
    }

    @keyframes girar {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

.footer-conten {
  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;
}
/* RODAPÉ */
 footer {
      background-color: #ffffff;
      padding: 15px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center; 
      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;
  }
}