html, body{
    margin: 0px;
    padding: 0px;
    background-color: #F7F7F7;
}

@font-face {
    font-family: 'akira';
    src: url('../Fuentes/Akira/titulo.otf');
}

h1{
    font-family: 'akira';
    font-size: 4em;
}

@font-face {
    font-family: 'Lemon';
    src: url('../Fuentes/Lemon/LEMONMILK-Light.otf');
}

h2, h3{
    font-family: 'Lemon';
}

@font-face {
    font-family: 'Coolvetica';
    src: url('../Fuentes/Coolvetica/Coolvetica_Rg.otf');
}

p, a, input, textarea, button, ul{
    font-family: 'Coolvetica';
}

p, a, li, button{
    font-size: 1.3em;
}

/* ----- MENU ----- */
nav p, .menuPC ul{
    padding: 0px;
    margin: 0px;
}

.navbar{
    padding: 0px;
}

.menu{
    background-color: #017CA4;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    width: 100vw;
}

.logoM{
    font-size: 1.5em;
    color: #ffffff;
}

.logoM:hover{
    color: #ffffff;
}

.imgLogoM{
    width: 60px;
}

.botonMenuPeke{
    display: none;
}

.menuPC, .menuCont{
    display: flex;
    align-items: center;
}

.menuPC ul{
    display: flex;
    text-decoration: none;
    list-style: none;
    gap: 30px;
    color: #ffffff;
}

.menuPC a:hover{
    color: #F2C200;
}

.menuCont{
    display: flex;
    gap: 30px;
}

.menuCont p{
    color: #F2C200;
}

.botonContactMenu{
    background-color: #F2C200;
    border: none;
    padding: 11px 15px;
    color: black;
    text-decoration: none;
    transition: all 0.3s;
}

.botonContactMenu:hover{
    background-color: #D9AE00;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

@media (max-width: 1023px){

    .menuPC, .menuCont{
        display: none;
    }

    .botonMenuPeke{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
    }

    .botonMenuPeke p{
        color: #f2c200;
    }
}

/* ----- PORTADA ----- */
header{
    position: relative;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;
}

header::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/portada.jpeg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: blur(4px);
    transform: scale(1.1) scaleX(-1);
}

header h1{
    position: relative;
}

@media (max-width: 767px){
    header{
        height: 30vh;
    }

    h1{
        font-size: 3em;
    }
}

/* ----- CONTENT ----- */
.QEA{
    padding: 100px 0px;
    display: flex;
    justify-content: center;
}

.textoQEA{
    line-height: 1.6;
}

.textoQEA hr{
    background-color: #F2C200;
    opacity: 1;
    height: 5px;
    width: 500px;
    border: none;
}

/* ----- FOOTER ----- */
footer{
    background-color: #2B2F33;
    padding: 100px 0px;
    color: #FFFFFF;
    display: flex;
    justify-content: space-around;
}

footer h2{
    margin-bottom: 16px;
}

.div1{
    display: flex;
    flex-direction: column;
    align-items: start;
    text-align: left;
}

.footerTitulo{
    display: flex;
    align-items: center;
    gap: 10px;
}

.imgLogoF{
    width: 150px;
}

.div2{
    text-align: center;
    display: flex;
    align-items: end;
}

.div2 ul{
    list-style: none;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0px;
    font-size: 0.8em;
}

.div2 a{
    text-decoration: none;
    color: #FFFFFF;
    transition: all 0.3s;
}

.div2 a:hover{
    color: #F2C200;
}

.div3{
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content:end;
}

@media (max-width: 767px){
    .footer{
        justify-content: space-between;
        padding: 50px 25px;
    }

    .div2{
        display: none;
    }
}