/*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/NeueHaasDisplayMediu.ttf");
}

p, h2, a, i, b{
    font-family: "FonteMenu";
}
button{
    font-family: "FonteTexto";
}
h1{
    font-family: "FonteTitulo";
    font-weight: 500;
}


html{
    scrollbar-gutter: stable;
}

*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    font-size: 14pt;
}


/*
ORDENADOR
*/

.menu a:hover{
    text-decoration: underline;
}

/*MAIN MENU*/
header{
    width: 100%;
    padding-top: 10px;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: space-between;
    position:  fixed;
    top: 0;
    z-index: 2;
    background-color: white;
}

header nav{
    width: 50%;
    margin-right: 80px;
}

.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){

    /*ARREGLAR VISUALIZACIÓN HEADER*/
    header{
        justify-content: space-between;
    }
    /* header.aberto{
        background-color: rgba(255, 255, 255, 0.95);
        transition: backgorund-color 0s ease;
    } */

    /*MOSTRAR E DEIXAR DE MOSTRAR ELEMENTOS*/
    header nav{
        max-height: 0;
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 90px;
        background-color: rgba(255, 255, 255, 0.95);
        transition: max-height 0.6s ease;
    }
    .menuContainer.aberto{
        max-height: 100%;
    }
    .menu{
        display: flex;
        flex-flow: column wrap;
        align-items: center;
        justify-content: space-around;
        height: 300px;
        padding: 5px;
    }
    .menu li{
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .menu li>a{
        font-size: 20px;
    }

    .botonMenu{
        display: block;
        background: none;
        border: none;
        margin-right: 30px;
        width: 36px;
    }
    .botonMenu img{
        content: url("../Links/menu_img.svg");
        width: 100%;
        height: 100%;
    }
    .botonMenu.activo img{
        content: url("../Links/cerrarPlaceholder.svg");
    }

    .logo{
        margin-left: 20px;
    }
}
