@font-face {
    font-family: 'Neo';
    src: url('/assets/neosans.woff2') format('woff2');
}
body, html{
    display: flex;
    flex-direction: column;
    margin: 0;
    border: 0;
    padding: 0;
    font-family: 'Neo';
    scroll-behavior: smooth;
    min-height: 100vh;
}
a{
    text-decoration: none;
    color: black;
}
header{
    display: flex;
    position: sticky;
    top: 0;
    align-items: center;
    width: 100%;
    height: 70px;
    background-color: white;
    z-index: 1;
}
#headerLogo{
    margin-left: 40px;
    width: 160px;
    height: 40px;
}
#headerButtons{
    display: flex;
    margin-left: auto;
    margin-right: 40px;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 100%;
}
.buttons{
    text-decoration: none;
    color: #de0000;
    font-size: 20px;
    transition: 0.2s;
}
.buttons:hover{
    color: #8e0000;
    transform: scale(1.1);

}
#contentCarrocel{
    display: flex;
    align-items: center;
    width: 100%;
    height: 500px;
    overflow: hidden;
    transition: opacity 0.5s ease-in-out;
}
#contentText{
    position: absolute;
    left: 5%;
    color: white;
    text-shadow: 0px 1px 10px black;
}
#contentImgs{
    width: 100%;
    height: auto;
}
.ocultar {
    opacity: 0;
}
#contentFlecha{
    position: absolute;
    display: flex;
    top: 450px;
    left: 50%;
    justify-content: center;
    width: 100px;
    height: 100px;
    animation: animacaoFlecha 1s infinite;
    cursor: pointer;
}
@keyframes animacaoFlecha {
    0% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}
#escolher, #projetos{
    width: 100%;
    margin-top: 100px;
    padding-bottom: 100px;
}
#escolherTitulo, #projetosTitulo{
    text-align: center;
}
#escolherinfos{
    display: flex;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 90%;
}
.escolherTextos{
    gap: 20px;
    display: flex;
    p{margin: 0;}
}
span{
    background-color: #de0000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    color: white;
    font-size: 30px;
}
#projetosImgs{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
}
.projetosImgs{
    width: 150px;
    height: 150px;
    transition: 0.2s;
}
.projetosImgs:hover{
    transform: scale(1.1);
}
.projetosLabel{
    display: flex;
    justify-content: center;
}
footer {
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    color: white;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: wrap;
}
footer p{
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 800px){
   #headerLogo{
        margin-left: 20px;
        width: 100px;
        height: 25px;
   }
   #headerButtons{
        margin-right: 20px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        height: 100%;
    }
    .buttons{
        font-size: 14px;
    }
    #contentImgs{
        width: 760px;
        height: 507px;
    }
}