*{
    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: 7vh;
    background-color: #678CC1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.container{
    background-color: white;
    border-radius: 10px;
    width: 20%;
}
.input-wrapper{
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.input-wrapper > i{
    color: black;
}
.input-wrapper > input{
    background-color: transparent;
    width: 100%;
    border: none;
}
.input-wrapper > input:focus-visible {
    outline: none;
}
main{
    height: 85vh;
    width: 100%;
    display: flex;
    flex-direction: column;
}
main > h2{
    font-size: 22px;
    font-weight: 500;
    margin-top: 2%;
    margin-left: 5%;
}
.container-img{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}
.grupo-img{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin-top: 3%;
}
.item-img{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.item-img > img{
    height: 20vh;
    margin-bottom: 1%;
}
.item-img > a{
    text-decoration: none;
    padding: 1.5% 4%;
    background-color: #678CC1;
    color: #A3BCE2;
    border-radius: 10px;
    margin-top: 1%;
}
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%;
}