@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0%;
    padding: 0%;
}

:root {
    --pretao: black;
    --vermelhao: #ff3131;
    --vermelho-escuro: #ad3030;
    --brancolas: white;
    --cinzolas: #d9d9d9;
    --cinzao: #5f5f5f;
    --cinza-escuro: #181818;
    --fonte-poppins: "Poppins", sans-serif;
}

body {
    width: 100%;
    height: 200vh;
    background: linear-gradient(to right,
            white 0%,
            white 68%,
            #d9d9d9 50%,
            #d9d9d9 100%);
}


header>nav {
    width: 100%;
    height: 8vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background-color: transparent;
    gap: 180px;

}

.logo {
    font-family: var(--fonte-poppins);

}

.letra-preta {
    color: var(--pretao);
}

.letra-vermelha {
    color: var(--vermelhao);
}

.opcoes {
    display: flex;
    flex-direction: row;
    gap: 25px;
}

.opcoes-a {
    cursor: pointer;
    text-decoration: none;
    color: var(--cinzao);
    font-size: 18px;
    font-family: var(--fonte-poppins);
}

.opcoes-a:hover {
    color: var(--cinza-escuro);
    text-decoration: underline;
}



.login-logout {
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    gap: 45px;

}

.button-login {
    width: 80px;
    height: 5vh;
    background-color: var(--pretao);
    color: white;
    border-radius: 15px;
    border: none;
    font-size: 16px;
    font-family: var(--fonte-poppins);
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
}

.button-login:hover {
    background-color: var(--cinzao);
    font-size: 17px;
}

.button-login:hover {
    font-size: 18px;
}


.button-cadastro {
    width: 124px;
    height: 5vh;
    background-color: var(--vermelhao);
    color: white;
    border-radius: 15px;
    border: none;
    font-size: 16px;
    font-family: var(--fonte-poppins);
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
}

.button-cadastro:hover {
    background-color: var(--vermelho-escuro);
    font-size: 17px;
}

.informacoes {
    width: 100%;
    height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10%;

}

.informacoes-geral {
    width: 44%;
    height: 68vh;
    display: flex;
    flex-direction: column;
    gap: 5%;

    h1 {
        font-family: var(--fonte-poppins);
        font-size: 42px;
        text-align: start;
    }

    p {
        font-family: Arial, Helvetica, sans-serif;
        font-size: 21px;
        text-align: justify;
    }
}

.button-entrar {
    width: 120px;
    height: 5vh;
    background-color: var(--vermelhao);
    color: white;
    border-radius: 15px;
    border: none;
    font-size: 18px;
    font-family: var(--fonte-poppins);
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
}

.button-entrar:hover {
    background-color: var(--vermelho-escuro);
    font-size: 19px;
}

.imagem-inicial {
    width: 410px;
    height: 560px;
    box-shadow: 0 0 13px rgba(0, 0, 0, 64%);
    border-radius: 3px;
    background-color: var(--brancolas);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 7%;

    img {
        width: 100%;
        height: auto;
    }
}

.sobre-nos {
    width: 100%;
    height: 110vh;
    background-color: var(--brancolas);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: var(--fonte-poppins)
}

.logo-sobre-nos {
    font-size: 38px;
}

.info-sobre-nos {
    width: 50%;
    text-align: center;
    font-size: 21px;
}

footer {
    width: 100%;
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap:10rem;
    background-color: var(--pretao);
    color: var(--brancolas);
    font-family: var(--fonte-poppins);
    font-size: 18px;

}

.icons-footer{
    display:flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 4rem;
}

.icons {
    width: 100px;
}

.info-direitos{
    width:17%;
    text-align: center;
}