@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Pacifico&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


*{
    margin: 0px;
    box-sizing: border-box;
}

body{
    font-family: roboto;
}

.cabecalho {
    background: url(img/cabecalho_fundo.jpg);
    background-size: cover;
    
    background-position: bottom;
    font-family: bungee;
}

.transparente{

    background: rgba(14,94, 9, 0.5);
    height: 280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-shadow: 2px 2px 4px black;
    line-height: 40px;
    text-transform: uppercase;

}

.transparente h1{
    text-align: center;
}

.menu{
    background-color: #3a513a;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.menu a{
    color: #fff;
    text-decoration: none;
    
    padding: 8px 25px 8px 25px;

}

.menu a:hover{
    background-color: #fff;
    color: #3a513a;
}

.boas_vindas{
    background-color: #d2d0d0;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
    font-family: pacifico;

}

.boas_vindas img{
    width: 150px;
    height: 150px;
}

.conteudo{
    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 60px 0px 60px 0px;


}

.card{

    margin: 20px;


}

.card img{
    width: 300px;
    border-radius: 25px;

}

.card img:hover{
    border: 5px solid #d2d0d0;
    opacity: 0.5;

}

.documentos {
    background: linear-gradient(rgb(252, 249, 249), #215a21);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 40px 60px 40px 60px;
   
    
}

.prancheta {
    
    display: flex;
   
    justify-content: center;
    align-items: center;
}

.prancheta img{
    width: 80%;
    flex 20%;
}

.textdoc {    
    flex: 60%;

}

.textdoc h3{
    padding-bottom: 15px;
}

/*
.textdoc a{
    padding-top: 30px;
}
    */

.rodape{
    background: linear-gradient(#1b5628, #061f0a);
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 40px 60px;
}

.logo_rodape img{

    width: 80px;
    height: 80px;
    margin-right: 40px;
}

.social img{
    width: 20px;
    height: 20px;
    margin-right: 20px;
    margin-top: 20px;

}

.endereço{
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    

}

.social{
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.social img{
    border-radius: 5px;
}


.botao{
    color: #fff;
    background: linear-gradient(rgb(14, 128, 24),rgb(9, 43, 10));
    text-decoration: none;
    font-size: 16px;
    padding: 5px 20px 5px 20px;
    border-radius: 10px;
}

.botao:hover{
    background: #fff;
    color: #061f0a;
}

.whatsapp {

    position: fixed;
    bottom: 10px;
    right: 10px;

}

.whatsapp img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

@media (max-width: 768px) {

.transparente h1{
    font-size: 22px;;
}

.menu{
    flex-direction: column;
}

}