* {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

@font-face {
    font-family: 'horizon';
    src: url('/horizon.otf') format("opentype");
    font-weight: normal;
    font-style: normal;
}

header {
    margin: 0;
    width: 100%;
    height: 6vw;
    background-color: aliceblue;
    font-size: 2vw;
    position: sticky;
    top: 0;
}

#logo {
    float: left;
    padding: 8px;
}

#logo img {
    height: 4vw;
}

#menu ul li {
    padding: 20px;
    padding-right: 5px;
    display: flex;
    justify-content: space-around;
    float: right;
    width: max-content;
}

header a:link {
    text-decoration: none;
    color: black;
}

header a:visited {
    color: black;
}

#foto {
    width: 100%;
    margin-top: 0;
}

main {
    width: 100%;
    font-size: 20px;
}

h1 {
    font-size: 30px;
    display: flex;
    justify-content: center;
    padding: 20px;
    font-family: 'horizon';
}

#sobre1 {
    padding: 10px;
    text-align: justify;
    background-color: green;
    color: white;
    display: flex;
    align-items: center;
    gap: 80px;
}

#sobre1 h3 {
    font-family: 'horizon';
    font-size: 20px;
}

#sobre2 {
    padding: 20px;
    display: flex;
}

#sobre2 h3 {
    font-family: 'horizon';
    font-size: 16px;
}

#sobre2 p {
    padding-top: 8px;
}

#serviços {
    background-color: white;
    width: 100%;
}

#serviçosT {
    background-color: #34a996;
    text-align: center;
    margin: 0;
}

#serviçosT h2 {
    font-family: 'horizon';
    font-size: 24px;
}

#serviçosT h3 {
    font-family: 'horizon';
    font-size: 16px;
}

#foto_serviço {
    margin: 30px;
}

#serviço1 {
    padding: 1%;
    display: flex;
    align-items: center;
}

#serviço1 ul li {
    padding-top: 5px;
}

#serviço2 {
    padding: 1%;
    display: flex;
    align-items: center;
}

#serviço2 ul li {
    padding-top: 5px;
}

#serviço4 {
    padding: 1%;
    display: flex;
    align-items: center;
}

footer a:link {
    color: black;
    text-decoration: none;
}

footer a:visited {
    color: black;
    text-decoration: none;
}

footer {
    padding: 2vh;
    font-size: 20px;
    text-align: center;
    background-color: #34a996;
}

#contato {
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

footer h2 {
    font-family: 'horizon';
    font-size: 18px;
}

@media screen and (max-width: 1024px) {

    header {
        top: auto;
        height: 70px;
        background-color: aliceblue;
    }

    main {
        margin-top: 0px;
    }

    #menu ul li {
        font-size: 25px;
        display: flex;
        padding-left: 5px;
    }

    #menu {
        margin-right: 20px;
    }

    #logo img {
        height: 60px;
        padding: 0;
    }

    #logo {
        padding: 4px;
        margin-left: 20px;
    }

    h1 {
        font-size: 25px;
        font-weight: normal;
    }

    #sobre1 {
        display: flex;
        flex-direction: column;
        text-align: left;
        gap: 5px;
        padding: 8px;
    }

    #sobre1 h3 {
        padding: 2px;
        font-size: 40px;
    }

    #sobre2 {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    #sobre2 p {
        padding-top: 1px;
    }

    #sobre2 h3 {
        font-size: 20px;
        text-align: center;
    }

    #serviçosT h2 {
        font-size: 40px;
    }

    #serviçosT h3 {
        font-size: 20px;
    }

    #foto_serviço {
        margin: 130px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    #serviço1 {
        display: flex;
        flex-direction: column;
    }

    #serviço1 ul li {
        padding-top: 10px;
    }

    #serviço1 img {
        height: 50vw;
    }

    #serviço2 {
        display: flex;
        flex-direction: column;
        padding-top: 30px;
    }

    #serviço2 ul li {
        padding-top: 10px;
    }

    #serviço2 img {
        height: 50vw;
    }

    #serviço4 {
        display: flex;
        flex-direction: column;
        padding-top: 30px;
    }

    #serviço4 ul li {
        padding-top: 10px;
    }

    #serviço4 img {
        height: 50vw;
    }

    footer h2 {
        font-size: 40px;
    }

    #contato {
        display: flex;
        flex-direction: column;
        font-family: 'Roboto', sans-serif;
        font-style: normal;
        font-weight: normal;
        font-size: 40px;
    }
}