@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap");


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {

   height: auto;       /* não fixe altura */
  min-height: 100%;   /* pelo menos altura da tela */
  overflow-x: hidden; /* só impede rolagem horizontal */
  overflow-y: auto; 
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.head {
  display: block;
}

.head-mobile {
  display: none;
}

/* ------ TEXTOS ------ */

.titulo {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 2rem;

}

p {
  font-size: 16px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.cabecalho0 { 
  position: fixed; 
  left: 0;
  width: 100%;
  height: 110px;
  background-color: #004D2F;
  padding: 5px 10% 0 10%;
  align-items: center;
  justify-content: flex-start;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 10px 10px rgba(49, 46, 46, 0.512);
  z-index: 20; 
  display: flex;
}

.cabecalho0 .logo-amarelo{ 
  width: 125px; 
  margin-top: 15%;
  margin-right: 20px;
}

.conteudo0 { 
  width: 100%;
  height: 100%;
  display: flex; 
  margin-bottom: -10px;
  text-align: center;
  justify-content: center;
}

.conteudo0 .menu0{
  display: flex;
  width: 100%;
  height: 90%;
  text-align: center;
  align-items: center;
  justify-content: flex-start; 
}

.conteudo0 .menu0 a img{  
  display: flex;
  width: 35px;
  padding: 1%;
  margin-right: 10px;
  background: #004D2F;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.conteudo0 .menu0 a:nth-child(4) {
  display: flex;
  width: 220px;
  padding:  5px 5px 5px 6px;
  color: #ffffff;
  margin-left: auto;
  margin-right: 10px;
  border-radius: 30px;
  background: #149424;
  align-items: center;
  text-align: center;
}

.conteudo0 .menu0 a:hover:nth-child(4){ 
  opacity: 0.79;
  color: #ffffff;
}

.cabecalho0 .conteudo0 .menu0 .activo{
  margin-left: 30px; 
  border-bottom: solid #05e323 ;
  width: 30px;
}

.conteudo0 .menu0 a {
  color: #ffffff;
  margin-left: 15px;
  padding-bottom: -10px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
}

.conteudo0 .menu0 a:hover{  
   color: #bce8c2;
}
.conteudo0 .menu0 a:nth-child(2){  
  margin:  0 25px 0 0;
  padding: 0 0 3px 0;
  display: flex;
  align-items: center;
  text-align: center; 
  background: transparent;
}


main{

  padding-top: 20px;
}


.proximo {
  margin-top: 8%;
  padding: 5px 80px 30px 80px; 
}



/* Container horizontal para foto e conteúdo */
.proximo .eventos {
  display: flex;                         
  align-items: stretch;  

 
}

/* Foto ocupa 60% */
.proximo .photo {
  flex: 0 0 65%;           /* largura fixa 60% */
  height: 550px;
  overflow: hidden;             /* mantém a imagem dentro do border-radius */
}

.proximo .photo img {
  width: 90%;
  height: 100%;
  object-fit: cover;       /* ajusta a imagem dentro do container */
  display: block;
    border-radius: 10px; 
}

/* Conteúdo ocupa 40% */
.proximo .cont {

  display: flex;
  align-items: center;     /* centra verticalmente o texto */
  justify-content: center; /* centra horizontalmente se quiser */
  padding: 5px;
  overflow: hidden;             /* mantém a imagem dentro do border-radius */
}
.proximo .cont h1{
  margin: 10px;
color: #036d00;
 font-size: 1.8rem;
 font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.proximo .cont p {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #000;
}

.todas{
   font-size: 1.1rem;
  line-height: 1.5;
  color: #000;
  align-items: first baseline;
}


/* Container da página */
.pagina {
  width: 100%;
 
  padding: 10px 80px 30px 80px;
}

/* Título da seção de notícias */
.pagina > .noticias > h2,
.pagina > .titulo {
  font-size: 30px;
  cursor: pointer;
  color: #036d00;
}
.titulo1 {
    font-size: 30px;
  cursor: pointer;
  color: #036d00;
  font-size: 1.3rem;
  margin-top: 10px;
}
.pagina > .noticias > h2:hover,
.pagina > .titulo:hover {
  text-decoration: underline;
}

/* Container dos cards */
.pagina > .caixatexto {
  width: 100%;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-content: center;

}

.novocards a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.pagina > .caixatexto > .novocards a .img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px;
}

.pagina > .caixatexto > .novocards a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pagina > .caixatexto > .novocards:hover a .img img {
  transform: scale(1.08);
}

.pagina > .caixatexto > .novocards a .titulo {
  padding: 15px;
  font-size: 13px;
  line-height: 1.3;
  color: #333;
}

.pagina > .caixatexto > .novocards a .titulo .texto p {
  font-size: 15px;
  cursor: pointer;
  color: #000;
}


/* SUB RODAPÉ COM INFORMACOES ESCOLAR */











/* SUB RODAPÉ COM INFORMACOES ESCOLAR */

.endereco {
  width: 100%;
  line-height: 1.5;
  color: #149424;
  padding-bottom: 80px;
  text-align: center;
  justify-content: center;
  background: #D1E5D1;
}

.endereco img{ 
  width: 18%; 
  margin: auto;
  padding: 2%;
  justify-content: center;
  align-items: center;
}

.endereco p{
  font-size: 25pt;
  line-height: 1.5;

}

.rodape{
  flex: 1 1 100vw;
  margin: 0;
  padding: 10px;
  border: none;
  font-weight: 500;
  color: #ffffff;
  justify-content: center;
 background-color: #004D2F;
 text-align:center;
}