
/*
PARA ORDENADOR
*/

/*CONTAINER*/
.container{
    display: flex;
    flex-flow: row wrap;
}

/*HEADER*/
header{
    background: none;
}
.menu .inicio>a{
    text-decoration: underline;
}


/*FOTO FONDO*/
#fotoInicio{
    width: 50%;
    height: 100%;
    position: fixed;
    overflow: hidden;
}

#fotoInicio img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*MAIN CONTENT*/
section{
    width: 50%;
    display: flex;
    flex-flow: column wrap;
    margin-left: 50%;
}

.fondoSuperiorD{
    height: 94px;
    width: 100%;
    background-color: white;
    position: fixed;
    top: 0;
    z-index: 1;
}
.fondoSuperiorI{
    height: 94px;
    width: 50%;
    background-image: url("../Links/INICIOIMAXE.png");
    background-size: 50% 100%;
    background-attachment: fixed;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
}

section .title{
    position: relative;
    left: -40px;
    top: 60px;
}

section .title img{
    width: 46vw;
}

.texto{
    position: relative;
    top: -30px;
    padding-left: 12vw;
    padding-right: 6vw;
    padding-bottom: 2vw;
}

.texto p, .texto a{
    margin-bottom: 1.5vw;
    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){


    /*MOSTRAR E DEIXAR DE MOSTRAR ELEMENTOS*/
    #fotoInicio{
        display: none;
    }
    .fondoSuperiorD, .fondoSuperiorI{
        display: none;
    }

    /*FONDO*/
    header{
        background-color: white;
    }
    /* .container{
        background-image: url("../Links/1_FOTO_INICIO.jpg");
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
    } */
    /* .container.scroll-blanco {
      background: white !important;
    } */
    /* header{
        background-image: url("../Links/1_FOTO_INICIO.jpg");
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
    } */
    /* header.scroll-blanco {
      background: white !important;
    } */
    /* header nav{
        background-image: url("../Links/1_FOTO_INICIO.jpg");
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
    } */
    /* header nav.scroll-blanco {
      background: white !important;
    } */

    /*Arreglar visulización section*/
    section{
        margin: 0;
        width: 100%;
    }

    section .title{
        margin-left: 3.5vw;
        padding-top: 120px;
        position: static;
        top: auto;
        left: auto;
    }

    section .title img{
        width: 85vw;
    }

    .texto{
        padding-right: 12vw;
        top: 0;
    }

    .texto p, .texto a{
        font-size: 10pt;
        margin-bottom: 15px;
    }

    section video{
        margin: 5vw 0 8vw 0;
    }

}