/*FONTES DE TEXTO*/

@font-face {
    font-family: "FonteMenu";
    src: url("../Fonts/Archivo-VariableFont_wdth\,wght.ttf");
}

@font-face {
    font-family: "FonteTexto";
    src: url("../Fonts/Archivo-Italic-VariableFont_wdth\,wght.ttf");
}

@font-face{
    font-family: "FonteTitulo";
    src: url("../Fonts/Neue\ Regrade\ Variable.ttf");
}

p, h2, a{
    font-family: "FonteMenu";
}
button{
    font-family: "FonteTexto";
}
h1{
    font-family: "FonteTitulo";
    font-weight: 1000;
}


html{
    scrollbar-gutter: stable;
}

*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-size: 14pt;
}


/*
ORDENADOR
*/

/*MAIN MENU*/
header{
    width: 100%;
    padding-top: 10px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    position:  fixed;
    top: 0;
    z-index: 2;
    background-color: white;
}

header nav{
    width: calc(100% - 120px);
}

.logo{
    width: 80px;
    height: 80px;
    margin-left: 40px;
}
.menu{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around
}
.menu li>a{
    color: #DC3534;
    font-family: "FonteMenu";
    font-weight: bold;
    font-size: 1.2vw;
}

.botonMenu{ 
    display: none;
}







/*
MÓBIL
*/

@media (max-width: 800px) or (orientation: portrait){
    /*MOSTRAR E DEIXAR DE MOSTRAR ELEMENTOS*/
    header nav{
        display: none;
        position: fixed;
        width: fit-content;
        right: 15px;
        top: 72px;
        background-color: white;
    }
    .menu{
        display: flex;
        flex-flow: column wrap;
        align-items: center;
        border: 2px solid #DC3534;
        border-radius: 3px;
        padding: 5px;
    }
    .menu li>a{
        font-size: 11pt;
    }

    .botonMenu{
        display: block;
        background: none;
        border: none;
        margin-right: 30px;
        width: 36px;
    }
    .botonMenu img{
        width: 100%;
        height: 100%;
    }
    .logo{
        margin-left: 20px;
    }

    /*ARREGLAR VISUALIZACIÓN HEADER*/
    header{
        justify-content: space-between
    }
}
