*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.grip-site{
    height: 100vh;
}

.header{
    display: flex;
    flex-direction:row;
    grid-area: "header";
    align-self: center;
    justify-content: space-between;
    align-items: center;
    height: 120px;
    width: 100vw;
    padding-left: 64px;
    padding-right: 64px;
    background-color: blue;
    position: fixed;
    top: 0;
}

.header > img{
    height: 100%;
}

.pages-list{
    display: flex;
    align-items: center;
    gap: 32px;
    height: 100%;
    list-style-type: none;
}

.content{
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-area: "content";
    background-color: bisque;
    padding-top: 120px;
    padding-bottom: 90px;
    height: 100vh;
}

.footer{
    grid-area: "footer";
    background-color: brown;
    text-align: center;
    padding: 10px;
    height: 90px;
    position: fixed;
    bottom: 0;
    width: 100vw;
}

#logo-grande{
    width: 100%;
}
.div-rede-social-logos{
    display: flex;
    justify-content: center;
    gap: 50px;
}

.rede-social-logo{
    width: 6ch;
}

.div-segment-content{
    display: flex;
}

h1{
    margin: 20px;
}
