@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


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

body {
    background: linear-gradient(180deg, #07121C 2%, #07121C 26.33%, #000000 100%);
}


header {
    height: 10vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

section,
header,
footer {
    padding: 0 10%;
}

.logo {
    width: auto;
    height: 42px;
}


.menu {}

.lista-menu {
    display: flex;
    gap: 20px;
}

.item-lista-menu {
    list-style: none;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    color: #ffffff;
}

.item-lista-menu:hover {
    cursor: pointer;
}

.botoes-header {
    display: flex;
    gap: 20px;
}

.botao-header {
    padding: 9px 16px 9px 16px;
    border: 2px solid #ffffff;
    border-radius: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
}

.botao-entrar {
    background-color: transparent;
    color: #ffffff;
}

.botao-cadastrar {
    background-color: #ffffff;
    color: #000000;
}

.botao-entrar:hover {
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
}

.botao-cadastrar:hover {
    color: #ffffff;
    background-color: transparent;
    cursor: pointer
}

.banner {
    height: 80vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto;
    grid-template-areas:
        "conteudo imagem";

}

.conteudo-banner {
    grid-area: conteudo;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.titulo-banner {
    font-family: "Montserrat", sans-serif;
    font-size: 40px;
    font-weight: 700;
    text-align: left;
    color: #FFFFFF;
}

p {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    text-align: left;
    color: #FFFFFF;

}

.imagem-banner {
    grid-area: imagem;
    background-image: url(../img/navio-de-pontos.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}

.sobre-nos {
    display: flex;
}

.img-sobre-nos {
    width: 35%;
}

.conteudo-sobre-nos {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 30px;
}

.item-sobre-nos {
    width: 580px;
    height: 216px;
    background: #1229404D;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 12px;
    padding: 32px 16px;
}

.recuado {
    margin-right: 40px;
}

h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 31.2px;
    text-align: left;
    color: #FFFFFF;

}


.funcionalidades {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 50px;
    margin: 120px 0;
    padding-top: 80px;
    padding-bottom: 80px;
}

h2 {
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 38.4px;
    text-align: center;
    color: #FFFFFF;
}

.item-funcionalidades {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.img-funcionalidades {
    width: 100px;
    height: auto;
}

.texto-funcionalidades {
    text-align: center;
}


.colaboradores {
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 50px;
}

.item-colaboradores {
    width: 18%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 16px;
    border-radius: 12px;
    background: #1229404D;
}

.img-colaboradores {
    width: 124px;
    height: auto;
}

.nome-colaboradores {
    width: 100%;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    color: #FFFFFF;

}

i {
    font-size: 25px;
    color: #ffffff;
}

footer{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    padding: 20px 0;
    gap: 10px;
}