* {
    box-sizing: border-box;
    margin: 0;
    list-style: none;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
    scroll-padding-top: 200px;

}


.app {
    display: flex;
    flex-flow: column;
    align-items: center;

}

header {
    position: fixed;
    background-color: white;
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    flex-flow: column;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.034);

}


.barra-contato {
    /* background-color: darkcyan; */
    width: 100%;
    height: 40px;

}

.barra-nav {
    /*   background-color: cadetblue; */
    display: flex;
    width: 80%;
    height: 100%;

}

nav {
    width: 100%;
    height: 100%;

}

nav>ul {
    display: flex;
    height: 100%;
    justify-content: space-evenly;
    align-items: center;
}

li>a {
    padding: 10px;
    /*  background-color: #A0A0A0; */
    /*  botons */
    border-radius: 10px;
    color: black;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
}

li>a:hover {
    color: #137dd3;
}

.wrapper-logo {
    width: 330px;
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;

}

.wrapper-logo>img {
    width: 150px;

}

main {
    display: flex;
    flex-flow: column;
    align-items: center;



}

.quemsomos {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    width: 800px;
    height: 100vh;
}

.portfolio {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    height: 100vh;

}

.fotos {
    width: 1440px;
    display: flex;
    flex-flow: wrap;
    margin-top: 30px;


}

h1 {
    font-size: 5rem;
    font-weight: bold;
    font-style: italic;

}


.servicos {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    width: 800px;
    height: 100vh;
}

.servicos ul {
    margin-top: 30px;
}

.servicos ul li {
    text-align: center;
    font-size: 20px;
}

.contato {
    padding: 50px;
}

footer {
    background-color: #137dd3;
    color: white;
    display: flex;
    gap: 20px;
    flex-flow: column;
    padding: 30px;
    align-items: center;
    justify-content: center;
    height: 300px;
    width: 100%;
}

footer img {
    width: 70px;
}