html{
    scroll-behavior:smooth;
}

body{
    margin: 0;
    font-family: "Jost", sans-serif;
    font-weight: 400;
}

main {
    background-color: #FFF;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

header{
    display: flex;
    flex-wrap: wrap;
    height: 157px;
    align-content: center;
    width: 1140px;
}

header > img{
    height: 90px;
}

section{
    width: 100%;
    display: flex;
    justify-content: center;
}

section:nth-child(even) {
    background-color: #f6f7f9;  
}

.conteudo{
    width: 1140px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#sobre{
    display: flex;
    flex-wrap: wrap;
}

.div-titulo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* height: 100px; */
    margin-top: 50px;
    margin-bottom: 50px;
}

.div-titulo span{
    text-align: center;
    width: 450px;
    font-size: 24px;
}

.div-article {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 1140px;
    margin-bottom: 20px;
}

.div-article article{
    display: flex;
    flex-wrap: wrap;
    width: 350px;
    align-content: flex-start;
    /* background-color: #23262D; */
}

.div-article .subtitulo{
    font-weight: 500;
}

.div-article .texto{
    font-size: 16px;
}

section > div{
    width: 1140px;
    /* background-color: #193982; */
}

/*MENU*/
header > nav{
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
}
header > nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

header > nav ul li {
    float: left;
}

header > nav ul li a {
    display: block;
    color: #000;
    text-align: center;
    padding: 12px 30px;
    text-decoration: none;
}

header > nav ul li .button a {
    color: #fff;
}

.button {
    background-color: #193982; /* Green */
    border: none;
    color: white;
    padding: 0px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 28px;
}

button.button{
    padding: 12px 30px;
}

button.button:disabled{
    background-color: #A7B0C1;
    font-style: italic;
}

.bold{
    font-weight: bold;
}

/*FORM*/

form {
    display: flex;
    flex-direction: column;
    align-items: center;
   
  }
  
.flex-container {
display: flex;
justify-content: space-between;
width: 100%;
}

label {
margin-right: 1rem;
}

input, textarea {
    padding: .5rem;
    border: 1px solid #A7B0C1;
    border-radius: .25rem;
    width: 300px;
    margin: 1px;
}

textarea {
    height: 10rem;
}

footer{
    display: flex;
    margin-top: 15px;
    color: #fff;
    background-color: #23262D;
    height: 300px;
    flex-wrap: nowrap;
    justify-content: center;
}


footer > div{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 200px;
    margin-top: 50px;
}

footer div:first-child{
    width: 500px;
}

footer ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

footer a{
    color: #80858F;
    text-decoration: none;
    margin: 5px;
}

footer a:hover{
    text-decoration: underline;
}

footer > div > img{
    height: 40px;
    margin-bottom: 10px;
}   

@media(max-width: 1100px) {
    footer{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        height: 100%;
    }

    footer div:first-child{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        align-items: center;
    }

    footer > div{
        width: 300px;        
    }


    header{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
    }

    header > img{
        height: 70px;
    }
    
    .div-article{
        width: 600px;
    }

    .div-article article{
        margin-bottom: 30px;
    }
    .div-titulo span {
        width: 360px;
    }

    
    input, textarea {
        width: 200px;
    }

    /* TESTE */
    .conteudo{
        width: 100%;
    }

}