/*Marcar páxina*/
.menu .novidades a{
    text-decoration: underline;
}



/*CONTIDO*/


/*V1*/
/* section{
    display: grid;
    grid-template-columns: 30% 30% 30%;
    row-gap: 4vw;
    justify-content: space-around;
    padding: 160px 3vw 0 3vw;
} */
 section{
    display: flex;
    padding-top: 200px;
    flex-flow: column wrap;
    align-items: center;
 }

section .noticia{
    width: 80%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-flow: row wrap;
    margin-bottom: 20px;
    border-bottom: 3px solid #DC3534;
}
section .noticia:hover img, section .noticia:active img{
    opacity: 100%;
    transition: 0.5s;
}

.noticia .imaxeNoticia{
    width: 50%;
}
.noticia .textoNoticia{
    width: calc(50% - 3vw);
    display: flex;
    flex-flow: column wrap;
    justify-content: end;
    padding: 1vw 1vw 1vw 2vw;
}
.noticia img{
    opacity: 20%;
    position: relative;
    width: 100%;
    height: 400px;
    object-fit: cover;
    z-index: 0;
}

.noticia h2, .noticia p{
    position: relative;
    z-index: 1;
    
}

.noticia h2{
    font-family: "FonteMenu";
    color: #DC3534;
    font-weight: 850;
    font-size: 1.4vw;
    text-decoration: underline;
    margin-bottom: 20px;
}
.noticia p{
    font-family: "FonteMenu";
    color: black;
    font-size: 1.1vw;
}



@media (max-width: 800px) or (orientation: portrait){
    section .noticia{
        width: 85%;
        aspect-ratio: 16/9;
        flex-flow: column wrap;
        align-items: center;
        justify-content: center;
        border: none;
        padding: 4vw 0 2vw 0;
    }
    .noticia img{
        position: absolute;
        height: 100%;
        top: 0;
        left: 0;
    }
    .noticia .textoNoticia{
        width: 80%;
        padding: 0;
    }
    .noticia h2{
        font-size: 4vw;
        margin-bottom: 0;
        text-decoration: none;
    }
    .noticia p{
        font-size: 3vw;
    }
    section .noticia:hover h2, section .noticia:hover p{
        opacity: 0;
        transition: 0.5s;
    }

}