/*FONTES*/

/*Archivo*/
/*Source Serif 4*/
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

/*Marcar páxina*/
.menu .inicio>a{
    text-decoration: underline;
    text-decoration-thickness: 4px !important;
}

/*CONTAINER*/
.container{
    display: flex;
    flex-flow: row wrap;
}

/*HEADER*/
header{
    background: none;
    transition: 0.5s;
}
header.scroll{
    background-color: white;
    transition: background-color 0.6s ease;
}


/*FOTO FONDO*/
#fotoInicioMobil{
    display: none;
}

#fotoInicio{
    width: 100%;
    height: 100%;
    position: fixed;
    overflow: hidden;
    z-index: -1;
}

#fotoInicio img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
#fotoInicio.scroll img{
    opacity: 0%;
    transition: opacity 0.6s ease;
}


/*MAIN CONTENT*/
section{
    width: 80%;
    margin: auto;
    display: flex;
    flex-flow: column wrap;
}

section .title{
    position: relative;
    left: 5vw;
    top: -3vw;
}

section .title img{
    width: 60vw;
}



/*DESTACADA*/


.destacada{
    z-index: 1;
    width: 60%;
    margin-top: 150px;
    padding: 0.5vw 0 0.5vw 0;
    align-self: center;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}
.destacada .titular{
    font-family: "Source Serif 4", serif;
    font-weight: 800;
    font-size: 1.6vw;
    text-align: center;
    color: black;
}
.destacada .categoria{
    font-family: "Archivo", sans-serif;
    font-weight: 300;
    font-size: 1.3Svw;
    color: rgb(128, 128, 128);
}
.destacada .perfil{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}
.destacada .autora{
    font-family: "Archivo", sans-serif;
    font-weight: 500;
    font-size: 1.1vw;
    margin-right: 1vw;
    color: rgb(128, 128, 128);
}
.destacada .fotoPerfil{
    width: 1.1vw;
    border-radius: 50px;
}

.destacada .titular:hover{
    color: #DC3534;
    transition: 0.3s;
}


/*TEXTO*/
.texto{
    margin-top: 10vw;
    position: relative;
    padding-left: 14vw;
    padding-right: 8vw;
    padding-bottom: 10vw;
}

.texto p, .texto a{
    margin-bottom: 1.5vw;
    font-size: 1.3vw;
    text-align: justify;
}
.texto a{
    color: #DC3534;
    text-decoration: underline;
}

section video{
    margin: 1vw 0 4vw 0;
    width: 100%;
    align-self: center;
}




/*
PARA MOBIL
*/

@media (max-width: 800px) or (orientation: portrait){

    #fotoInicio{
        display: none;
    }
    #fotoInicioMobil{
        display: block;
        width: 90%;
        margin: auto;
    }
    #fotoInicioMobil img{
        width: 100%;
        object-fit: cover;
    }

    /*Arreglar visulización section*/
    section{
        margin: 0;
        width: 100%;
    }

    section .title{
        margin-left: 3.5vw;
        /* padding-top: 120px; */
        padding-top: 4vh;
        margin-bottom: 4vh;
        position: static;
    }

    section .title img{
        width: 90vw;
    }


    .destacada{
        /* margin-top: 10vh; */
        margin-top: 120px;
        width: 80%;
    }
    .destacada .titular{
        font-size: 6vw;
        margin-bottom: 5px;
    }
    .destacada .categoria{
        font-size: 4vw;
        margin-bottom: 5px;
    }
    .destacada .perfil{
        width: 50%;
    }
    .destacada .autora{
        font-size: 4vw;
    }
    .destacada .fotoPerfil{
        width: 4vw;
    }

    .texto{
        padding-left: 10vw;
        padding-right: 10vw;
        top: 0;
        margin-top: 15vh;
        margin-bottom: 10vh;
    }

    .texto p, .texto a{
        font-size: 5vw;
        margin-bottom: 15px;
    }

    section video{
        margin: 5vw 0 8vw 0;
    }

}