*{
    margin: 0;
    padding: 0;
}

body{
    font-family: verdana;
    font-size: 11px;
    align-items: center;
}

/*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;
    }
    }

.banner{
    width: 100%;
}

main{ /* CORPO da PÁGINA */
    display: table;
    width: 100%;
    background-color: #f7f1ea;
    padding: 00px;
    /*margin-bottom: nao existe margin none; era 20px */ 
    text-align: center;
}

.col1{ /*Formatação largura da coluna/dias*/
    width: 50px;
    text-align: center;
    padding-left: 20px;
    font-weight: bold;
}

.col2{ /*Formatação largura da coluna/dias*/
    width: 300px;
    text-align: left;
    padding-left: 20px;
    /*font-weight: none; nao existe font none, pode ser regular, normal, bold(negrito)...*/

}

.foto1{
    width: 112px;
    height: 122px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-color: #f7f1ea; /* Deveria alterar o fundo da imagem */
}

.separador{
    display: flex;
    
}
@media only screen and (max-width: 700px) and (min-height: 300px){
.separador{
    flex-wrap: wrap;
}
}

thead{
    /*color: none;*/
	font-weight: bold;
    text-align: center;
    line-height: 1.5em;
    font-size: 18px;
    /*align-items: left; nao tem left no align*/
}

p{
    text-align: center;
}

.card{/* BLoco de cada mês*/
    height: 300px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    border: none;
    color: black;
    background-color: #f7f1ea;
}
@media only screen and (max-width: 700px) and (min-height: 300px){
    .card{
        height: auto;
        align-items: center;
    }
}

.container{
    width: auto;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    /*-webkit-flex-flow: row wrap; essa propriedade nao existe*/
    flex-flow: row wrap;
}

.card{
    margin: 15px;
    display: flex;
    flex-basis: 45%;
   
}

@media (max-width: 727px){ /* */
    .card{
        margin: 15px 0;
    }
}

.card img{
    text-align: left;
}

.card table{
    margin-bottom: 10px;
    margin-top: 10px;
}


.nav-cabecalho { /* PRIMEIRA PARTE DO CABEÇALHO */
    background-color: whitesmoke;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 10vh;
}


.nav-list{ /* ICONES DA PRIMEIRA PARTE DO CABEÇALHO */
    list-style: none;
    display: flex;
    font-size: 18px;
}

.nav-list li {
    letter-spacing: 10px;
}

.nav-list i{
    color: black;
}
.nav-list a{
    height: 150px;
}

/* LOGOMARCA NO CABEÇALHO*/
.pequena{
    width: 35px;
    height: 35px;
}
@media only screen and (min-width: 700px) and (min-height: 600px){
.pequena{
    width: 150px;
    height: 50px;
}
}

.menu { /* NAV MENU */
    background-color: whitesmoke;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 5vh;
}

/* LINKS DO MENU */
.menu a{ 
    color: rgb(0, 0, 0);
    font-weight: bold;
    font-size: 10px;
    text-align: center;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #df995d;
    padding-bottom: 4px;
}

@media only screen and (min-width: 700px){ /* links menu */
    .menu a{
        font-size: 18px;
    }
}
h2{
    padding: 15px;
    text-align: center;
    font-size: 18px;
}

h3{
    font-weight: bold;
    font-size: 25px;
    text-align: center;
}

h4{
    margin: 25px auto;
    text-align: center;
    font-size: 18px;
}
@media only screen and (max-width: 700px) and (min-height: 300px){
h4{
    font-size: 11px;
    margin: 15px;
}
}

.formulario{
    padding: 20px;
    background-color: #9FC94C;
}

.formulario p{
    margin: 15px;
    font-size: 13px;
    text-align: center;
}


form div{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.sobre{ /* SOBRE NOS */
    margin: 30px auto;
    text-align: center;
}

.sobre a{
    font-size: 18px;
    text-align: center;
    color: white;
    background-color: #006837;
    padding: 7px 10px;
    border-radius: 15px 0;
    text-decoration: none;
}

footer{
    height: 20px;
    text-align: center;
    background-color: #F5F5F5;  
    padding: 20px;
}

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;
}
}