body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.spee {
    position: absolute;
    left: 0;
    top: 0;
}

.nav {
    display: flex;
    justify-content: center;
    margin: auto;
}

.header {
    position: relative;
 
    background-image: url(../Imagens/escritorio-privado.png);
    background-size: cover;
    height: 50vh;
    background-position: center;
}

.header-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.header-content > h1 {
    font-size: 50px;
    margin: 0;
}

.header > h1 {
    position: relative;
    top: 35%;
    color: white;
    font-size: 50px;
    text-align: center;
}



.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.container > h1 {
    font-size: 28px;
    text-align: center;
    position: relative;
    bottom: 10px;
}

.container > p {
    text-align: justify;
    line-height: 1.5;
}

.galeria {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.image {
    margin: 10px;
    flex: 0 0 calc(23% - 10px);
    max-width: calc(23% - 10px);
}

.image img {
    width: 100%;
    height: auto;
}

.container-li {
    display: flex;
    justify-content: space-around; 
}

.lista {
    flex: 1; 
    margin-right: 20px; 
}

.lista ul {
    list-style: none; 
    padding: 0;
    
}
.lista ul {
    list-style: none;
    padding: 0;
}

.lista ul li {
    margin-bottom: 10px;
}

footer {
    background-color: black;
    padding: 20px 0;
}

footer > img {
    display: block;
    margin: 0 auto;
}

footer > p {
    color: gray;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .header > h1 {
        font-size: 36px;
    }

    .image {
        flex: 0 0 calc(48% - 10px);
        max-width: calc(35% - 10px);
    }

    .container > h1 {
        font-size: 24px;
    }

    .lista {
        margin-bottom: 10px;
    }

    footer > p {
        font-size: 14px;
    }

    footer > img{
       max-width: 50%;
    }
}
