@import url('https://fonts.googleapis.com/css2?family=Bungee&family=Pacifico&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
}

body{
    
    font-family: 'roboto';
    color: #271E12;
}

.cabecalho{
    background: url(img/cabecalho_fundo.jpg);
    background-size: cover;
    background-position: bottom;
    
    
}   

.trans{
    background: rgba(14, 94, 9, 0.5);
    height: 280px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: aliceblue;
    text-shadow: 2px 2px 10px #021502;
    font-family: 'Bungee';
    
}

.menu{
    background-color: #3a513a;
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
}   

.menu a{
     color: white;
    text-decoration: none;
    padding: 14px 40px;
       
}

.menu a:hover{
    background-color: #fff;
    color: #041b04;
}


@media screen and (max-width:500px) {
    .menu {
        flex-direction: column;
        text-align: center;
    }
    
}

.boa{
    background-color: #d2d0d0;
    padding: 60px;
    text-align: center;
    font-family: 'pacifico';
   /* font-weight: 100;*/
    
}

.boa img{
    width: 150px;
    height: 150px;
}

.conteudo{
    
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 20px;
    justify-content: center;
    height: 600px;
    align-items: center;
}

.cards {
    flex-grow: 1;
    height: 300px;
    margin: 1%;
    text-align: center;
}

.cards img{
    width: 450px;
    border-radius: 8%;
    
}

.cards img:hover{
    border: 5px solid #0b260b;
    opacity: 0.5;
}


.documentos{
    display: flex;
    flex-flow: row wrap;
    background: linear-gradient(#ffffff, #9dd1bb);
    height: 400px;
    padding: 40px 60px 40px 60px;
    justify-content: center;
    align-items: center;
    
}

.documentos img{
    
   width: 80%;
   flex: 30%;
    
}



footer{
    display: flex;
    background: linear-gradient(rgb(37, 76, 51), rgb(3, 19, 5));
    color: white;
    padding: 20px 30px;
    flex-wrap: wrap;
    text-align: center;

}

footer img{
    width: 80px;
    height: 80px;
}


.social img{

    width: 20px;
    height: 20px;
    margin-left: 20px;
    margin-top: 20px;
}


.whatsapp{
    position: fixed;
    bottom: 10px;
    right: 10px;    
}

.whatsapp img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.button {
    color: white;
    background: linear-gradient(rgb(145, 231, 124), rgb(12, 37, 12));
    text-decoration: none;
    font-size: 16px;
    padding: 5px 20px 5px 20px;
    border-radius: 10px;
}

.button:hover{
    color: rgb(6, 30, 6);
    background: linear-gradient(rgb(145, 231, 124), rgb(227, 235, 227));
    padding: 6px 21px 6px 21px;
    

}