@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto:wght@700&family=Sarabun:wght@300&display=swap');

* { /* Reset */
    box-sizing: border-box;
    margin: 0;
    border: none;
    padding: 0;
    font-family: 'Poppins', 'Sarabun', sans-serif;
} /* Reset */

a { /* Design */
    color: #2e3661;
    text-decoration: none;
} 

ul {
    list-style-type: none;
} /* Design */

hr {
    border: 1px solid gray;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 13vh;
    padding: 0 40px;
}

.menu ul {
    display: flex;
    gap: 1rem;
}
.menu a {
    font-weight: bold;
}
.menu a:hover {
    border-bottom: #db7a55 3px solid;
}

main {
    justify-content: space-between;
    height: 74vh;
    margin-bottom: 90rem;
}

#space {
    margin-bottom: 5rem;
}

main article {
    width: 50vw;
  /*  margin-left: 40px;*/
   /* margin-bottom: 50px;*/
   /* margin-top: 5vh;*/
}


h1 {
    padding: 0 0 15px;
    font-size: 25px;
    font-weight: bold;
    font-family: 'Roboto' sans-serif;
    color: #2e3661;
}

h2 {
    font-size: 40px;
    margin: 17px;
}

.button {
    display: inline-block;
    border-radius: 5px;
    padding: 1rem;
    text-transform: uppercase;
    text-align: center;
    font-size: large;
    font-family: 'Roboto';
    color: white;
    background-color: #db7a55;
}
.menu li:hover, .button:hover, .social li:hover {
    transition: 0.2s ease-in-out;
    transform: scale(1.1) translateY(2px);
}

#figure {
    z-index: -10;
    width: 15%;
}

footer {
    background-color: rgb(0, 0, 0);
    display: inline-flex;
    justify-content: space-between;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
}

.cool{
    padding: 20px;
    height: 13vh;
    gap: 1rem;
    display: inline-flex;
}

#um, #dois, #tres, #quatro, #cinco {
    filter: invert(100%);
    list-style-type: none;
}

.social {
    display: flex;
    align-items: center;
    height: 13vh;
}
.social a {
    gap: 1rem;
    padding: 15px;
}
/*
.colaboradores{
    filter: invert(100%);
    display: flex;
    justify-content: right;
}
*/
@media screen and (max-width: 900px) {
    header {
        flex-direction: column;
        height: auto;
    }

    main {
        height: auto;
        margin-bottom: 5vh;
    }

    main article {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90vw;
        margin: auto;
        text-align: center;
    }

    #title {
        font-size: 40px;
    }

    #figure {
        display: none;
    }

    .social {
        justify-content: center;
    }
}

@media screen and (max-width: 600px) {
    .menu ul {
        align-items: center;
        flex-direction: column;
    }
}

#h1 {
    margin-left: 2.5rem;
    padding-top: 5rem;
}

#sec-1 {
    width: 60vw;
    margin-left: 40px;
}

.row {
    display: flex;
}
.row .button {
    width: 100%;
}
.row article {
    padding: 35px;
}

#obj {
    background-color: #e0e1e2;
}

#topicos {
    margin: 2rem;
    padding-top: 2rem;
}

#logo-container {
    background-color: #3c446c;
}