@import url('https://fonts.googleapis.com/css2?family= Ubuntu :wght@300;400;500 & display=swap');

body {
    font-family: 'Ubuntu', sans-serif;
    background-color: #000;
    color: #ffffff;
}

body::before {
    content: "";
    background-image: url(../image/fundo.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -1;
    opacity: 0.4;
}

.cabecalho {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    position: fixed;
    transition: 0.3s ease-in-out;
}

.cabecalho-logo {
    width: 200px;
    cursor: pointer;
}

.cabecalho-menu {
    display: flex;
    gap: 32px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-item {
    list-style: none;
}

.cabecalho-menu-item {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.cabecalho-menu-item::after {
    content: "";
    width: 0%;
    height: 3px;
    background-color: #3b8526;
    position: absolute;
    bottom: -3px;
    left: 0;
    transition: 0.3s ease-in-out;
}

.cabecalho-menu-item:hover::after {
    width: 100%;
}

.cabecalho-botao-conectar {
    background-color: #3b8526;
    width: 180px;
    height: 45px;
    border: none;
    box-shadow: inset 0 4px #52a535, inset 0 -4px #2a641c, 0 4px #00000040;
    text-shadow: 0px 2px 0px #2a631c;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
}

.cabecalho-botao-conectar:hover {
    background-color: hsl(107, 56%, 30%);
    transform: scale(1.03);
    cursor: pointer;
}

.hamburguer {
    display: none;
    cursor: pointer;
}

.bar {
    background-color: #ffffff;
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 2px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
}

header.rolagem {
    background-color: #ffffff;
    padding: 10px;
}

header.rolagem a {
    color: #212121;
}

.conteudo {
    padding: 90px;
}

.conteudo-principal {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.conteudo-principal-escrito {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.conteudo-principal-escrito-titulo {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 60px;
}

.conteudo-principal-escrito-subtitulo {
    font-weight: 400;
    font-size: 20px;
}

.conteudo-principal-botao {
    background-color: #3b8526;
    width: 320px;
    height: 72px;
    border: none;
    box-shadow: inset 0 4px #6bc349, inset 0 -4px #2a631c, 0 4px rgba(0, 0, 0, .25);
    text-shadow: 0 1px 0 #2a631c;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 24px;
    color: #ffffff;
}

.conteudo-principal-botao:hover {
    transform: scale(1.01);
    cursor: pointer;
    background: rgb(59, 55, 54);
    background: linear-gradient(180deg, rgb(59, 55, 54) 0%, rgb(33, 33, 33) 95%);
    box-shadow: none;
    border: 0.1px solid #fff2e75b;
}

.conteudo-principal-imagem {
    height: 380px;
    margin-top: 10px;
}

.conteudo-segundario {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 48px;
}

.conteudo-segundario-titulo {
    border-top: 0.4px solid #fff2e7b8;
    padding-top: 48px;
    font-weight: 500;
    font-size: 30px;
    margin-bottom: 15px;
}

.conteudo-segundario-lista {
    font-weight: 400;
    font-size: 20px;
}

.rodape {
    font-size: 18px;
    font-weight: 300;
    padding: 20px;
    text-align: center;
}

.rodape a {
    color: #3b8526;
    text-decoration: none;
}