*{
    margin: 0;
    padding: 0;
    font-family: 'Times New Roman';
}
body{
overflow-x: hidden;}
header{
    height: 14vh;
    display: flex;
    justify-content: center;
    align-items: center;

}
.conteiner-menu{
    width: 80vw;
    background-color: white;
    display: flex;
    flex-direction: row;
    justify-content:space-between;
    align-items: center;

}
.nome{
 width: 20%;
 margin-left: 5%;
}
.menu{ 
    width: 60%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;

}
.redessociais{
    width: 20%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    margin-right: 5%;
    gap: 10px;
}
.link{
    text-decoration: none;
    color:black;
}
main{
    
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}
.titulo{
    margin: 5px;
}
.conteiner{
    width: 80%;  
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    
}
.section{
    width: 100%;  
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;

}
.text-im{
    margin-bottom: 3%;
}
figure{
    width: 100%;  
    height: 40%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}
.FT{
     width: 100%;  
    height: 10%;
    display: flex;
    justify-content: center;
}
.text-img{
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  

}


.movel{
    display:none ;
}
.menu-lateral{
 display: none;
    left: -50%;
    width: 50%;
    transition: left  0.5s ease-in-out;
    flex-direction: column;
    align-items: center;
    z-index: 999;
    position: absolute;
    top: 0%;
   
    background-color: rgb(255, 255, 255);
    height: 100vh;
   
}
.imagem{
  width: 50%;
 }

footer{
    height: 14vh;
    display: flex;
    justify-content: center;
    color: black;
    width: 100%;
    margin-top: 4%;
}


.conteiner-temas{
    background-color: rgb(97, 97, 93);
    margin-top: 5%;
    width: 20%;
    height: 30%;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    position: relative;
}


.janela{
    display: none;
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 999;
    justify-content: center;
    
}
.caixa-idioma{
    width: 100%;
    height: 90%;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}
.caixa-sair{
    height: 10%;
    width: 20%;
    position: absolute;
    margin-top: 0%;
    display: flex;
    justify-content: end;
    align-items: end;

   
}
.btn-sair{
    background-color:red;
    padding: 10px 13px;
    border-radius: 5px;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    .menu-lateral{
        display: flex;
    }
    .conteiner-menu{
   
    display: none;
    

    }
       header{
        width: 100vw;
        justify-content: center;
    }
    .movel{
        display: flex;
        width: 82%;
       
        justify-content: space-between;
        align-items:center;
    }
    .redessociais{
        justify-content: flex-end;

    }
    .text-img,.text-im{
        width: 100%;
        text-align: justify;
    }
    .figure{
        display: flex;
        flex-direction: column;

    }
    .imagem{
        width: 100%;
        height: 50%;
    }
    .titulo{
        text-align: center;
    }
 }