/* estilo gerais */
*{
    margin: 0;
    padding: 0;
   box-sizing: border-box ;
   
  font-family: "Montserrat", sans-serif;
  font-family: "Roboto Condensed", sans-serif;
 

}

body{
  
    height: 100vh;
}
section {
  height: 100vh;
  scroll-snap-align: start;
}

/* menu topo esta exondido */
.topo {
  position: fixed;
  top: -100px; /* escondido inicialmente */
  left: 0;
  right: 0;
  z-index: 1000;
  align-items: center;
  justify-content: space-between;
  padding: 6px 20px;
  background-color: #fff;
  height: 70px;
  transition: top 0.4s ease;
  box-shadow: 2px 2px 8px rgba(29, 28, 28, 0.2);
}

/* quando o usuário rolar mais de 450px */
.topo.visivel {
  top: 0; /* aparece suavemente */
}




.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: 10px;     /* deixa os itens lado a lado */
}

.menu li {
  margin: 0 1px;

}

.menu a {
  font-size: 13px;
  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;
}
.login1{
  border: solid 1px #fff;
  border-radius: 40px;
  padding: 5px;
}

.conteudo-principal {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 50px;
}

.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;
}


.interface1{
   max-width: 1280px;
   margin: 0 auto;
   margin-left: 60px;
   margin-right: 40px;
   

}





/* estilo do cabecario */
#topo .logo img{
height: 60px;
width: 90px;
}

#topo a{
 text-decoration: none;
 color: #5e5b5b;
 display: inline-block;
 font-size: 13.5px;
transition: 0.7s;

}
.avatar {
   height: 30px;
   width: 30px;
   vertical-align: middle; /* alinha com o texto */
   margin-right: 5px; /* espaço entre a imagem e o texto */
}


header nav ul{
    list-style-type: none;
}

header nav ul li{
    display: inline-block;
    padding: 0 20px;

}

.topo-do-site > a:hover{
   color: #a18b00;
   transform: scale(1.1);    
   text-decoration: none;
}

.topo-do-site {
  background: rgba(161, 139, 6, 0.6); /* 70% opaco, 30% transparente */
  backdrop-filter: blur(4px);          /* opcional: dá leve suavidade */
  -webkit-backdrop-filter: blur(4px);  /* compatível com Safari */
  height: 100vh;
 padding: 20px 50px 0 50px;
}

.rodap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin: 40px auto;
  flex-wrap: wrap;
    

  background: rgba(161, 139, 6, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 30px 20px;
  width: 100%;
  height: 150px;
  
}


.profe {
  background: var(--color);
  color: white;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 320px;
  height: 60px;
  padding: 0 25px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);

}

.profe:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.titulo {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge {
  background: white;
  color: var(--color);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* --- MODAL --- */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
  animation: showModal 0.4s ease;
}

@keyframes showModal {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.close {
  float: right;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

.btn-enviar {
  margin-top: 15px;
  padding: 10px 20px;
  border: none;
  background: #1d3557;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-enviar:hover {
  background: #457b9d;
}




.text-topo-site{
    display: flex;
    align-items: center;
    justify-content: space-between;


}

main ul{
    list-style-type: none;
      border: 1.5px solid #ffffff;
      border-radius: 15px;
      padding: 5px 8px;
}

main .login{
    border: 1.5px solid #fff9f9;
    border-radius: 20px;
    padding: 3px 8px;
}

main ul li{
    display: inline-block;
     padding: 0 20px;
}

main a{
    text-decoration: none;
    color: #f3e3e3;
    font-size: 13.5px;
transition: 0.7s;
}

main a:hover{
    color:  #e9d555;
    padding: 8px 14px;
    transform: scale(1.1);
}
.login{
    margin-left: 20px;
}
.logo-topo{
 margin-top: 8px;
height: 120px;
width: 150px;
}

.img-topo-site{
     display: flex;
    align-items: center;
    justify-content: space-between;
}
.img-topo-site > img{
    height: auto;
    width: 500px;
}
.menu >h1{
    font-weight: 700;
    font-size: 36px;
  color: #fff;

    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.menu > p{
    font-size: 20px; 
      color: #fff2f2;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.menu > .saber-mais{
    margin-top: 40px;
 
}
button{
    font-size: 15px;
    background-color: yellow;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
}
.img-topo-site img{
    position: relative;
    animation: flutuar 2s ease-in-out infinite alternate;
}

@keyframes flutuar {
   0%{
    top: 0px;
   }    
   100%{
    top:33px
   }
}
.ultimas .interface{
    display: flex;
    align-items: center;


 padding-bottom: 80px;
padding: 120px 50px 0 0px;

}
.noticias {
  padding: 20px 0;
  background: #f9f9f9;
}

.noticias h4 {
  text-align: center;
  font-size: 15px;
  color: #002244;
  margin-bottom: 30px;
  position: relative;
  font-family: "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
}

.noticias h4::before,
.noticias h4::after {
    content: "";
    width: 100px;    /* ← diminui o comprimento da barra */
    height: 1px;
    background: #002244;
    margin: 0 12px;
}

.noticias h4 {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Container das fotos */
.noticias .fotos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* Cada card de notícia */
.card-noticia {
  width: 280px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.card-noticia:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.card-noticia img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-noticia h3 {
  font-size: 15px;
  color: #a18b00;
  margin: 10px 15px 5px 15px;
  font-family: "Segoe UI", Roboto, sans-serif;
}

.card-noticia p {
  font-size: 13px;
  color: #494B0A;
  margin: 0 15px 15px 15px;
  line-height: 1.4;
  font-family: "Segoe UI", Roboto, sans-serif;
}

/* Link sem sublinhado e com cor herdada */
.noticias a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Responsividade */
@media (max-width: 768px) {
  .card-noticia {
    width: 100%;
    max-width: 350px;
  }
}

.eventos h4 {
    text-align: center;
    font-size: 15px;
    margin: 20px 0;
    color: #002244; /* cor do texto */
    position: relative;
    display: flex;
    align-items: center;
     margin-right: 20px;
    justify-content: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.eventos{
  border: solid 1px #000;
  border-radius: 10px;
  padding: 15px;
  margin-right: 20px;
}

.eventos h4::before,
.eventos h4::after {
    content: "";
    width: 80px;    
    height: 1px;             /* espessura da linha */
    background: #002244;   
}

.eventos h4::before {
    margin-right: 10px;      /* espaço entre a linha e o texto */
}

.eventos h4::after {
    margin-left: 10px;       /* espaço entre a linha e o texto */
}


/* EVENTOS */

.galeria-eventos-vertical {
  max-height: 400px;
  overflow-y: auto;
  width: 420px;
  padding: 20px;
  border-radius: 10px;
}

/* Caixa do evento */
.evento-box {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

/* Imagem com posição relativa para posicionar a data */
.imagem-com-data {
  position: relative;
}

.imagem-com-data img {
  width: 140px;
  height: auto;
  border-radius: 8px;
  margin-right: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Dia e Mês no canto superior direito */
.data-canto-superior {
  position: absolute;
  top: 5px;
  right: 5px;
  text-align: center;
  border-radius: 5px;
  overflow: hidden;
}

.data-canto-superior .dia {
  display: block;
  background: #002244; /* Azul escuro */
  color: white;
  font-weight: bold;
  padding: 2px 6px;
  font-size: 14px;
}

.data-canto-superior .mes {
  display: block;
  background: #002244; /* Azul escuro */
  color: white;
  font-size: 12px;
  padding: 1px 6px;
}

/* Ano no canto inferior direito */
.ano-canto-inferior {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: #ccc; /* Cinzento */
  color: black;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 5px;
}

/* Texto do evento */
.link-evento {
  font-size: 13px;
  color: #030d9c;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.link-evento p{
  margin-top: 5px;
  font-size: 6px;
    color: #4752eb;

}

.link-evento:hover {
  color: #004488;
}

/* Scroll personalizado */
.galeria-eventos-vertical::-webkit-scrollbar {
  width: 4px;
}

.galeria-eventos-vertical::-webkit-scrollbar-thumb {
  background-color: #ffff00;
  border-radius: 10px;
}

.galeria-eventos-vertical::-webkit-scrollbar-track {
  background-color: #eee;
}

/* Responsivo */
@media (max-width: 768px) {
  .bloco-imagens {
    flex-direction: column;
  }


  .noticias-header {
    flex-direction: column;
    gap: 10px;
  }
}

.planea {
  position: relative;
  width: 100%;
  height: 600px; /* altura fixa */
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('../imagem/estud.jpg');
  background-size: 110% auto; /* aumenta a largura/altura da imagem */
  background-position: top center; /* ajusta a posição vertical */
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  color: #fff;
margin-top: 100px;
}


.botao-contato {
  background-color: #1E90FF; /* azul */
  color: #fff;
}

.botao-contato:hover {
  background-color: #187bcd;
}


.ensino{
  background-color: #F5F5DC;
  padding-top: 20px;
  padding-bottom: 60px;
height: 800px;


  margin-bottom: 150px;
}


.conteudo-direita {

  text-align: center;
  z-index: 2; /* garante que fique acima do background */
  margin: 250px 180px;

}

.conteudo-direita h1 {
  font-size: 3.5rem;
 
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.conteudo-direita p {
  font-size: 1.3rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.conteudo {
  text-align: center;        /* Centraliza conteúdo dentro */
  margin: 40px auto;         /* Centraliza horizontalmente o bloco */
  max-width: 800px;          /* Limita largura */
  color: #a18b00;
}

.conteudo .compromisso {
  display: inline-block;              /* Linha acompanha apenas o texto */
  border-bottom: 2px solid #1d1d36;   /* Linha azul */
  padding-bottom: 5px;                
  margin-bottom: 15px;                
  font-size: 28px;                    /* Título maior */
  font-weight: bold; 
  margin-left: 30%;
                   /* Destacar */
}
.conteudo > p{
  margin-left: 20%;
}
/* Container principal */
.silder {
  position: relative;
  width: 100%;
  max-width: 1000px; /* largura máxima no desktop */
  height: 500px;     /* altura no desktop */
  margin: 40px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Esconde os radios */
.silder input {
  display: none;
}

/* Slides */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .8s ease-in-out;

}

.slide img {
  width: 100%;
  height: 100%;
 object-fit: cover;         /* preenche o slide */
  object-position: top;      /* mostra mais o topo */
  /* ou object-position: 50% 20%; → x%, y% */
}

/* Quando radio estiver marcado, mostra o slide correspondente */
#radio:checked ~ .firsyt,
#radio1:checked ~ .slide:nth-of-type(2),
#radio2:checked ~ .slide:nth-of-type(3) {
  opacity: 1;
  z-index: 1;
}

/* Navegação (bolinhas embaixo) */
.nav-bary {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.nav-bary label {
  width: 15px;
  height: 15px;
  border: 2px solid #007bff;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: all .3s;
}

.nav-bary label:hover {
  background: #007bff;
}

/* Responsividade */
@media (max-width: 768px) {
  .silder {
    height: 300px; /* menor altura no tablet */
  }
}

@media (max-width: 480px) {
  .silder {
    height: 200px; /* menor altura no celular */
  }
}

.disciplinas{
  padding: 20px;
  margin-top: 80px;
 
}
/* Comeco do carrossel */


.carousel-container {
  width: 100%;
  overflow: hidden;
  margin: 10px 0;
  padding: 0 10px; /* remove espaço nas laterais */
  box-sizing: border-box;
}

.cards-carousel {
  display: flex;
  gap: 20px;
  animation: scroll 15s linear infinite; /* mais rápido que 20s */
 
}

.card {
  min-width: 250px;
  flex-shrink: 0;
  background-color: #494B0A;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  color: white;
}

.card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
}

.card-footer {
  background-color: #ffcb00;
  color: black;
  font-weight: bold;
  padding: 10px;
  border-radius: 4px;
  margin-top: 10px;
}

/* Animação contínua */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* metade da largura do conteúdo duplicado */
  }
}


section.disciplinas {
  min-height: 100vh;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

h2.disciplina {
  text-align: center;
  color: #a18b00;
  font-size: 28px;
  margin-bottom: 25px;
  font-weight: 600;
}

/* ======= ÁREA ======= */
.carrossel-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

/* ======= CARROSSEL ======= */
.carousel-container {
  overflow: hidden;
  width: 90%;
  max-width: 1100px;
  position: relative;
  z-index: 2;
}

.cards-carousel {
  display: flex;
  gap: 25px;
  transition: transform 0.6s ease-in-out;
}

.card {
  flex: 0 0 250px;
  height: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.card-footer {
  padding: 10px;
  font-weight: 600;
  color: #002244;
}

/* ======= DESCRIÇÃO ======= */
.analise-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1000px;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 25px;
  gap: 25px;
  min-height: 250px;
  position: relative;
  z-index: 1;
}

.conteudo-texto h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #000;
}

.conteudo-texto p {
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: 15px;
  color: #444;
}

.conteudo-imagem {
  width: 380px;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
}

.conteudo-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======= RESPONSIVO ======= */
@media (max-width: 768px) {
  .analise-box {
    flex-direction: column;
    text-align: center;
  }
  .conteudo-imagem {
    width: 100%;
    height: 200px;
  }
}


.super {
  padding: 20px 0;        /* espaço interno em cima e embaixo */
  margin: 30px 0;         /* espaço externo separando de outras seções */
      /* centraliza o conteúdo */
}

.analisar {
  width: 100%;
  height: auto; 
  margin-bottom: 100px;          /* deixa a altura se ajustar automaticamente */
}

.analisar img {
  width: 100%;             /* imagem ocupa 80% da largura da tela */
  height: auto;
  display: block;
  margin: 0 auto;         /* centraliza horizontalmente */
  
}

.depoimentos {
  padding: 0 20px 60px;       /* menos espaço em cima, mais embaixo */
  text-align: center;
  background: #fdfdfd;           /* fundo leve e limpo */
}

.depoimentos > h2 {
  font-size: 26px;
  color: #a18b00;
  margin-bottom: 35px;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  text-transform: uppercase;     /* título mais institucional */
  letter-spacing: 1px;
}

.depoimento-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;                /* centraliza os cards */
}

.card-depoimento {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 22px;
  width: 310px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-depoimento:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.card-depoimento p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #333;
  line-height: 1.6;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.autor {
  display: flex;
  align-items: center;
  gap: 10px;
}

.autor img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.autor strong {
  font-size: 16px;
  color: #142b6c;
  display: block;
}

.autor span {
  font-size: 13px;
  color: #666;
}

@media (max-width: 768px) {
  .depoimentos {
    padding: 30px 10px 50px;
  }

  .depoimentos > h2 {
    font-size: 22px;
  }

  .card-depoimento {
    width: 90%;
  }
}

.imag {
  height: 400px;
  width: 100%;
  overflow: hidden;
  padding: 40px;
  margin-top: 300px;

}

.imag img {
  height: 100%;
  width: 100%;
  object-fit: cover; /* Garante que preencha sem distorcer */
  display: block;
}

.fundo {
  position: relative;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #c2c200 100%), url("imagem/fundo.png");
  background-size: cover;
  background-position: center;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
    margin-top: 40px;
    margin-bottom: 100px;
}

.conteudo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  padding: 0 40px;
  gap: 40px;
  flex-wrap: wrap;
  
}

.modelo {
  width: 423px;
  max-width: 100%;
  margin-bottom: 25px;
}

.texto {
  
  max-width: 500px;
  
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.texto h2 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #a18b00;
  text-align: left; /* <-- Garante que não fique centralizado */
}

.btn-navegar {
 width: 20%;
  text-decoration: none;
  padding: 10px 24px;
  font-weight: bold;
  border-radius: 6px;
  box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
  display: inline-block;
  margin-right: 500px;
   background: #a18b00; /* azul */
  color: #fff;  

}

section {
  padding: 60px 0; /* Cria um espaço bonito acima e abaixo de toda a seção */
}

/* ======== CABEÇALHO ======== */
.cabecalho-jgm {
  text-align: center;
  margin-bottom: 35px; /* dá ar de respiro antes do bloco de contato */
}

.cabecalho-jgm .logo {
  height: 130px;
  margin-bottom: 15px;
  margin-top: 140px;
  margin-right: 0; /* retirado deslocamento lateral */
  margin-left: 10px;
}

.cabecalho-jgm h2 {
  font-size: 26px;
  color: #a18b00;
  line-height: 1.5;
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ======== BLOCO DE CONTATO ======== */
.comentario {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #a18b00;
  padding: 50px 60px;
  flex-wrap: wrap;
  border-radius: 16px;
  margin: 0 auto 60px auto;
  max-width: 1100px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.comentario-esquerda {
  flex: 1;
  max-width: 480px;
  color: #fff;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.comentario-esquerda h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 600;
}

.comentario-esquerda h4 p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.juntos {
  color: #ffff53;
}

/* FORMULÁRIO */
.comentario-esquerda input,
.comentario-esquerda textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
}

.comentario-esquerda textarea {
  height: 110px;
  resize: vertical;
}

.comentario-esquerda button {
  background-color: #ffff00;
  color: #4b4b4b;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
}

.comentario-esquerda button:hover {
  background-color: #ffeb3b;
  transform: translateY(-2px);
}

/* ======== IMAGEM DIREITA ======== */
.comentario-direita {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 450px;
  margin-top: 20px;
}

.comentario-direita img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

/* ======== RESPONSIVIDADE ======== */
@media (max-width: 900px) {
  .comentario {
    flex-direction: column;
    padding: 40px 25px;
  }

  .comentario-direita {
    margin-top: 30px;
  }

  .cabecalho-jgm h2 {
    font-size: 22px;
  }
}

.rodape {
  background-color: #ffffff;
  border-top: 3px solid #ccc;
  padding: 50px 60px 25px;
  font-family: system-ui, sans-serif;
  color: #1c2772;
}

/* CONTEÚDO PRINCIPAL DO RODAPÉ */
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 25px;
}

/* COLUNA ESQUERDA */
.coluna-esquerda {
  min-width: 220px;
  text-align: center;
}

.QR img {
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
}

.no-break {
  white-space: nowrap;
  font-size: 13px;
  color: #444;
}

.linha {
  width: 80%;
  border: none;
  border-top: 2px solid #ccc;
  margin: 10px auto;
}

/* COLUNAS CENTRAIS */
.colunas-horizontais {
  display: flex;
  flex: 2;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.coluna h3 {
  color: #1c2772;
  font-size: 17px;
  margin-bottom: 8px;
  border-bottom: 2px solid #a18b00;
  display: inline-block;
  padding-bottom: 4px;
}

.coluna p {
  font-size: 14px;
  margin: 6px 0;
  color: #151c46;
  cursor: pointer;
  transition: 0.3s;
}

.coluna p:hover {
  color: #a18b00;
  transform: translateX(3px);
}

/* REDES SOCIAIS */
.redes-sociais {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 15px;
  margin: 30px 30px;
}

.redes-sociais a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #1c2772;
  color: white;
  font-size: 20px;
  transition: all 0.3s ease;
}

.redes-sociais a:hover {
  background: #a18b00;
  transform: scale(1.15);
}

/* RODAPÉ INFERIOR */
footer {
  border-top: 1px solid #ccc;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  color: #313866;
}

footer p {
  margin: 0;
  text-align: center;
  flex: 1;
}

/* BOTÕES INFERIORES */
.botoes-footer {
  display: flex;
  gap: 15px;
}

.btn-footer {
  background-color: #1c2772;
  color: white;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 13px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-footer:hover {
  background-color: #a18b00;
  transform: translateY(-2px);
}

/* RESPONSIVIDADE */
@media (max-width: 850px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  footer {
    flex-direction: column;
    gap: 15px;
  }

  .botoes-footer {
    justify-content: center;
  }
}
