*{
    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;
}
main{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 5% 0;
}
.img-main{
    display: flex;
    align-items: center;
    padding: 5% 5%;
}
.img-main > img{
    height: 40vh;
}
.txt-main{
    display: flex;
    flex-direction: column;
    text-align: left;
    background-color: #b7babe;
    padding: 2% 5%;
    justify-content: center;
    border-radius: 30px;
}
.dinheiro{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15% 0;
    flex-direction: column;
}
.dinheiro > a{
    text-decoration: none;
    color: white;
    padding: 4% 2%;
    background-color: #00A202;
    border-radius: 15px;
    margin-top: 5%;
}
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%;
}