*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
body{
    overflow-x: hidden;
    display: grid;
    grid-template-rows: 9vh 1fr;
}
header{
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2%;
}
header > img{
    height: 8vh;
}
.barraDireita {
    display: flex;
    width: 700px;
    justify-content: space-between;
}

.barraDireita > div{
    display: flex;
    width: 80%;
    justify-content: space-between;
    align-items: center;
}
.barraDireita > div > a{
    text-decoration: none;
    color: black;
    font-size: 16px;
    font-weight: 500;
}
.barraDireita > a > svg{
    height: 3vh;
}

.sobreBarra {
    width: 90px;
}
section{
    width: 100%;
    height: 30vh;
    background-color: #678CC1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
section > h2{
    color: white;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.3;
}
main{
    height: 50vh;
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    text-align: left;
}
.txt-main{
    width: 70%;
    margin-top: 7%;
}

main > p{
    font-size: 14px;
    color: black;
}
footer{
    width: 100%;
    height: 35vh;
    background-color: #A3BCE2;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
article{
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3%;
}
article > img{
    height: 10vh;
    margin-left: -3%;
}
article> div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
article > div > h2{
    font-size: 18px;
    margin-bottom: 1%;
}
article > div > p{
    font-size: 14px;
}
article > div > a{
    padding: 1.5% 3%;
    text-decoration: none;
    color: #B9CDEB;
    background-color: #678CC1;
    border-radius: 10px;
    margin-top: 4%;
    font-size: 14px;
}
.icons-footer{
    display: flex;
    align-items: center;
    flex-direction: row;
}
.icons-footer> a{
    color: black;
    text-decoration: none;
}
.icons-footer i{
    font-size: 24px;
    margin: 4vh 8px;
}
.txt-footer{
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    font-size: 12px;
    margin-top: 4%;
}