body{
    background-color: rgb(242, 242, 242);
    font-family: Verdana;
}


/*CABEÇALHO PARA CELULAR DESATIVADO*/
@media only screen and (min-width: 700px) and (min-height: 600px){
    .cabecalho{
        display: none;
    }
    }
    /*CABEÇALHO DESKTOP...*/
    @media only screen and (max-width: 700px) and (min-height: 300px){
    .cabecalho1{
        display: none;
    }
    }
    /*CABEÇALHO DESKTOP...*/
    @media only screen and (max-height: 599px){
    .cabecalho1{
        display: none;
    }
    }


    /*PRIMEIRA PARTE DO CABEÇALHO*/
.nav-cabecalho{
    background-color: whitesmoke;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 10vh;
}

/*PRIMEIRA PARTE DO CABEÇALHO PARA TABLET*/
@media only screen and (max-height: 600px){
.nav-cabecalho{
padding: 10px;
}
}


/*ICONES DA PRIMEIRA PARTE DO CABEÇALHO*/
.nav-list{
    list-style: none;
    display: flex;
    font-size: 18px;
}

.nav-list li {
    letter-spacing: 10px;
}

.nav-list i{
    color: black;
}

.pequena{
    width: 35px;
    height: 35px;
}
@media only screen and (min-width: 700px) and (min-height: 600px){
.pequena{
    width: 150px;
    height: 50px;
 }
 }

/* NAV MENU CELULAR E DESKTOP*/
.menu {
    background-color: whitesmoke;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 10vh;
}

/*LINKS DO MENU CELULAR E DESKTOP*/
.menu a{
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 11px;
    text-align: center;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #006837;
    padding-bottom: 4px;
}
@media only screen and (min-width: 700px) and (min-height: 600px){
.menu a{
    font-size: 18px;
}
}

/*estilizei a imagem do banner com largura 100% para seguir o padrao e alinhar com o cabeçalho*/
.banner img{
    width: 100%;
    height: auto;
}

main{
    display: inline-block;
    justify-content: center;
  
    align-items: center;
}
@media only screen and (max-width: 700px) and (min-height: 300px){
    main{
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    }

.titulo{
    box-sizing: border-box;
    /*width: 900px; Essa largura nao estava alinhando com a pagina*/
    height: 70px;
    padding: 5px;
    border-radius: 30px 0;
    background-color: #348F0D;
    text-align: center;
    color: white;
    margin-top: 50px;
    margin-bottom: 25px;
}

@media only screen and (max-width: 700px) and (min-height: 300px){
  .titulo h3{
        font-size: 14px;
    }
}

.text{
    display: inline-block;
    font-size: 18px;
    color: rgb(60, 60, 60);
    margin: 25px 80px;
    text-align: center;
}
@media only screen and (max-width: 700px) and (min-height: 300px){
    .text{
        margin-left: 0;
        margin-right: 0;
    }
}


.link-acreditar{
    border-radius: 15px 0 15px 0;
    background-color: #348F0D;
    padding: 10px 0;
    font-size: 18px;
    margin: 30px auto;
    width: 40%;
    max-width: 200px;

}

.link-acreditar a{
    color: white;
    font-weight: bold;
}


.img{
    margin: 50px auto;
    
}

.img img{
    width: 100%;
    
}

.content{
    display: inline-block;
    width: 400px;
    height: 300px;
    margin: 2% 0 0 2%;
    text-align: center;
    justify-content: space-between;
    align-items: center;
}


@media only screen and (max-width: 700px) and (min-height: 300px){
    .content{
        width: 100%;
        margin: 15px 0;
    }
    }


.content a{
    color: rgb(60, 60, 60);
}

.content iframe{
    height: 250px;
    width: 350px;
    padding-top: 50px;
    border: none;
}

.mobile{
    text-align: center;
}


/*RODAPE*/
footer{
    text-align: center;
    background-color:whitesmoke;  
    padding: 20px 0;
    margin-top: 10px;
}

footer p{
    margin-top: 10px;
}

/*RODAPE LOGOMARCA*/
footer img{
    width: 100px;
    height: 35px;
}
@media only screen and (min-width: 700px) and (min-height: 600px){
footer img {
    width: 300px;
    height: 100px;
}
}