* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto Condensed", sans-serif;
}

html, body {

  width: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;


    height: 100vh;

}

.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 */
}

.logo {
  height: 60px; /* reduz o tamanho da logo */
  margin-left: 190px;
  width: auto;
  margin-top: 10px;
  margin-bottom: 10px;
}

.menu ul {
  list-style: none;   /* tira as bolinhas do ul */
  margin: 0;
  padding: 0;
  display: flex; 
  margin-right: 80px;     /* deixa os itens lado a lado */
}

.menu li {
  margin: 0 8px;

}

.menu a {
  font-size: 14px;
  text-decoration: none;
  color: #333;
  display: inline-block;      /* necessário p/ animar transform */
  transition: all 0.3s ease;  /* deixa suave */
}

.menu a:hover {
  color: #a18b00;
  transform: scale(1.1); /* animação vai funcionar agora */
    text-decoration: none;
}

.login {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.login:hover {
  color: #a18b00;
  transform: scale(1.1);
  text-decoration: none;
}
.conteudo-principal {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
 
}

.img-container-noticia {
  width: 100%;
  height: 100%;
  position: relative;
}

.img-container-noticia img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* mantém proporção e cobre todo espaço */
  object-position: center; /* centraliza a imagem (não fica puxada para direita ou esquerda) */
  display: block;
}

.carousel-item img {
  height: 600px;
object-fit: cover;         /* preenche o slide */
  object-position: top; 
  object-position: top;
  width: 100%; 
}
.carousel-caption > h2{
    font-size: 40px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 700;

}
.carousel-caption > p{
    font-size: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    

}
.corpo{
 background-color: #ccc;
 padding-top: 10px;
 padding-bottom: 10px;

}
.servico{
  border: solid 1px #a18b00;
  border-radius: 10px;
  margin: 0 10px;
 padding-left: 40px;
 margin: 40px;


}
.servicos{

 display: flex;

}
.servicos >.comenta{
  /* background-color: #a18b00; */
  height: 450px;
  width: 40%;
  margin: 110px 0 40px  0;
  padding: 5px;
  text-align:justify;
  color: #000;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  padding:50px 10px;
   
}
.servicos >.comenta > h1{
  font-weight: 700;
  font-size: 30px;
  text-align: center;
}

.servicos >.foto{
  /* background-color: #a18b00; */
  height: 480px;
  width: auto;
  margin: 60px 0 0 140px;
  overflow: hidden;
   margin-right: 30px;
}
.servicos >.foto img {
  height: 100%;
  width: 100%;
  object-fit: top; /* mantém proporção e preenche toda a área */

  margin: 0; /* remove margens extras */
   display: block; /* remove espaçamento branco */
  box-shadow: 0 4px 8px rgba(58, 56, 56, 0.5); /* sombra suave e elegante */

}


.segunda{

 display: flex;
 margin-bottom: 50px;
}
.segunda >.comenta{
  /* background-color: #a18b00; */
  height: 450px;
  width: 40%;
  margin: 110px 0 0 80px;
  margin-right: 30px;
  padding: 5px;
  text-align:end;
  color: #000;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  padding:50px 10px;
}
.segunda > .comenta > h1{
  font-weight: 700;
  font-size: 30px;
  text-align: end;

}

.segunda >.foto{
  /* background-color: #a18b00; */
  height: 480px;
  width: auto;
  margin: 60px 0 0 40px;
 
  overflow: hidden;
}
.segunda >.foto img {
  height: 100%;
  width: 100%;
  object-fit: top; /* mantém proporção e preenche toda a área */

  margin: 0; /* remove margens extras */
   display: block; /* remove espaçamento branco */
  box-shadow: 0 4px 8px rgba(58, 56, 56, 0.5); /* sombra suave e elegante */

}


.comentario {
  display: flex;
  justify-content: space-between;
  background-color: #a18b00;
  padding: 40px;
  flex-wrap: wrap;
  border-radius: 12px;

}

.comentario-esquerda {
  flex: 1;
  max-width: 500px;
}

.comentario-esquerda {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 16px;
 
  text-align: left;
}

.juntos{
color: #ffff53;
}



.comentario-esquerda input,
.comentario-esquerda textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  margin-top: 10px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
}

.comentario-esquerda textarea {
  height: 100px;
  resize: vertical;
}

.comentario-esquerda button {
  background-color: #ffff00;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #8f8c8c;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}


.comentario-direita {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  margin-top: 20px;
}

.comentario-direita img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
}

.rodape{
  padding-top: 80px;
  background-color: #ccc;
}

.footer-conten {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;

  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;

  text-align: center;
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

    /* RODAPÉ */
 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;
    }

    

    .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;
  }
}




/* Melhora a acessibilidade: mostra um foco visível só quando for realmente necessário */
