@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&family=Noto+Sans:wght@100;300;400;600;900&family=Sono:wght@200;300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

html {
    height: -webkit-fill-available;
}

.menu ul {
    display: flex;
    flex-direction: column;
}



header {
    background-color: black;
    top: 0;
    z-index: 8000;
    position: sticky
}


h1 {
    font-family: 'noto sans', sans-serif;
    font-weight: 900;
    color: rgb(255, 255, 255);
    padding: 0.5em;
}

h2 {
    font-family: sans-serif;
    font-weight: 900;
    color: rgb(0, 0, 0);
    margin: 0.7em;
    text-align: start;
}

/* HOME */

h2.ultimasn {
    color: #575757;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 900;
    margin-top: 2em;
    border-bottom: 0.1em solid rgb(0, 0, 0)
}

h3 {
    font-family: 'Noto Sans', sans-serif;
    color: #575757;
}

p {
    font-family: 'Noto sans', sans-serif;
    color: blank;
}

.menu-btn {
    top: 1.5em;
    right: 1em;
    z-index: 9000;
}

.contenedor {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
}

.menu-btn .btn-linea {
    width: 25px;
    height: 3px;
    margin: 4px 0 4px 0;
    background: rgb(255, 255, 255);
    transition: all 0.3s ease-out;
    position: relative;
    z-index: 9000;
}

.menuVisible .menu-btn .btn-linea {
    transform: rotate(180deg);
}

.menuVisible .menu-btn .btn-linea:nth-child(1) {
    transform: rotate(45deg) translate(4px, 6px);
}

.menuVisible .menu-btn .btn-linea:nth-child(2) {
    opacity: 0;
}

.menuVisible .menu-btn .btn-linea:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -6px);
}

nav ul {
    opacity: 0;
    width: 100%;
    visibility: hidden;
    position: absolute;
    background-color: #aa1818;
    right: 0rem;
    top: calc(0em + 4em);
    z-index: 9999;
    transition: all .5s ease;
}

.menuVisible ul {
    visibility: visible;
    opacity: 100%;
    transition: all .5s .2s ease;
}

header nav ul li a {
    color: white;
    display: block;
    font-family: 'Noto sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9em;
    text-align: center;
    gap: 1em;
    padding: 1.2em;
    text-decoration: none;
    border-bottom: solid 1px white;
}

nav ul li a:hover {
    color: #909090;
}

ul,
ol {
    list-style: none;
}

.contenedor div a img {
    min-width: 20%;
    max-width: 30%;
    height: auto;
    object-fit: cover;
}


.notaprincipal {
    background-image: url(../imagenes/imagen-guernica.jpg);
    background-size: cover;
    max-height: 50em;
    padding-bottom: 10em;
    padding-top: 10em;
}

.textoprincipal {
    background-color: rgba(0, 0, 0, 0.800);
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    max-width: 30em;
    text-align: left;
}

.textolectura {
    color: rgb(255, 255, 255);
    line-height: 1.5em;
    font-family: 'Noto sans', sans-serif;
    padding-left: 2em;
    padding-right: 2em;
}

.botonleermas {
    text-align: center;
    padding: 2em;
}

a.leermas {
    font-family: 'Noto sans', sans-serif;
    font-weight: 600;
    color: white;
    text-decoration: none;
    padding: 0.75em 2.25em;
    background-color: #aa1818;
}


.noticiassecundarias {
    margin: 1em;
    display: grid;
    gap: 1em;
}

.noticias {
    display: grid;
    gap: 2em;
    overflow: hidden;
    grid-template-columns: repeat(auto-fit, minmax(20em, 1fr));
}

.noticias figure {
    display: grid;
    width: min (100%, 30em);
    aspect-ratio: 1;
    max-width: 30em;
    max-height: 30em;
    position: relative;
    overflow: hidden;

}

.noticias img {
    width: 100%;
    cursor: pointer;
    transition: 0.5s;
    border-radius: 0.2em;
}

.noticias img {
    object-fit: cover;
    object-position: left center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.noticias figcaption {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1em;
    color: #ffffff;
    padding: 0.5em;
    line-height: 1em;
    position: absolute;
    inset: 0;
    transform: translateY(calc(100% - 2.3em));
    transition: all 1s ease;
    text-align: left;
    padding-inline: 2em;
}

.noticias figcaption strong {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1em;
    color: #ffffff;
}

.noticias figure:hover figcaption {
    background-color: #000000ce;
    transition: all .3s ease;
    transform: translateY(0);
    display: grid;
    text-align: left;
    place-content: center;
    padding-inline: 2em;
}


.noticias figcaption span {
    display: block;
    font-size: 1em;
    color: #ffffff;
    margin-block-start: 0.5em;
    text-transform: none;
    font-weight: 400;
    line-height: 1.5em;
    padding-block: 1em;
}

.noticias figcaption a {
    display: inline-block;
    margin-block-start: 0.5em;
    border: solid 1px white;
    border-radius: 5em;
    color: white;
    padding: 0.75em 1.5em;
    border-radius: 3em;
    text-decoration: none;
    font-weight: 400;
}

.noticias figcaption a:hover {
    background-color: black;
    border: solid 1px black;
}


.visitas {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    padding: 1em;
    gap: 25px;
}

.visitas>* {
    flex: 1 1 15em;
}

.visitas img {
    border-radius: 10px;
    width: 100%;
    height: 100%;
}

.visitainfo {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
}

h2.visitar {
    color: #575757;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 100;
    margin-top: 2em;
}

.visitainfo h3 {
    color: #aa1818;
    margin-bottom: 3em;
    font-family: sans-serif;
    font-size: 2rem;
    border-bottom: 0.1em solid black;
}

.visitainfo p {
    color: #575757;
    margin-bottom: 1em;
    font-family: sans-serif;
    font-weight: 100;
}

.visitainfo a {
    font-family: 'Noto sans', sans-serif;
    display: inline-block;
    margin-block-start: 0.5em;
    border: solid 1px rgb(0, 0, 0);
    border-radius: 5em;
    color: rgb(0, 0, 0);
    padding: 0.75em 1.5em;
    text-decoration: none;
    text-align: center;
}


.visitainfo a:hover {
    background-color: #aa1818;
    border: solid 1px #aa1818;
}


.cronograma {
    background-color: rgb(244, 244, 244);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1em;
    margin-top: 2em;
}

.cronograma>h2 {
    flex: 1 1 20em;
    text-align: center;
}

.encuentros {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
}

.encuentros>div {
    flex: 1 1 20em;
}

.encuentros div {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px rgb(0, 0, 0) solid;
    padding: 10px;
    gap: 30px;

}

.encuentros h2 {
    font-family: 'Noto sans', sans-serif;
    font-size: 400%;
    margin: initial;
    color: #aa1818;
}

h3 {
    font-family: sans-serif;
    color: #575757;
}

p {
    font-family: 'Noto sans', sans-serif;
    color: blank;
}




/*EL PUENTE*/

.imagenhistoria {
    background-image: url(../imagenes/viejo-puente-puetrredon.jpg);
    max-height: 50em;
    padding-bottom: 10em;
    padding-top: 10em;
}

.introduccion {
    max-width: 45em;
    margin: 0 auto;
    padding-left: 1em;
    padding-right: 1em;
}

.titulouno {
    background-color: rgba(0, 0, 0, 0.800);
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    max-width: 60em;
    text-align: left;
    font-size: 2.2em
}

h1.titulohistoria {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 100;
    color: #000000;
    padding: 0;
    padding-bottom: 1em;
    margin-top: 2em;
}

.introduccion p {
    margin-top: 1em;
}

h2.puente {
    font-weight: 900;
    color: #575757;
}

.lineadetiempo1 {
    max-width: 45em;
    margin: 0 auto;

}

.lineadetiempo2 {
    max-width: 45em;
    margin: 0 auto;
}


h2.año {
    color: #000000;
    font-family: 'Noto Sans', sans-serif;
}

p.info {
    padding: 1em;
    line-height: 1.5em;
}

.fondovideo {
    background-color: #aa1818;
}

.fondovideo {
    margin: 0 auto;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 4em;
    padding-bottom: 2em;
}

.fondovideo h2 {
    color: #ffffff;
    font-family: 'Noto Sans', sans-serif;
    text-transform: uppercase;
    font-size: 2em;
    text-align: center;

}

.videotango {
    max-width: 45em;
    margin: 0 auto;
    padding-left: 1em;
    padding-right: 1em;
}

.videotango iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

/*para no olvidar*/
.imagenparanoolvidar {
    background-image: url(../imagenes/octubre-marcha.jpg);
    max-height: 50em;
    padding-bottom: 10em;
    padding-top: 10em;
}


.titulodos {
    background-color: rgba(0, 0, 0, 0.800);
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    max-width: 60em;
    text-align: left;
    font-size: 2.2em
}

.infodeimg h3 {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 100;
    color: #000000;
    padding: 0;
    padding-bottom: 1em;
}

.infodeimg p {
    margin-top: 1em;
    line-height: 1.5em;
    font-family: 'Noto Sans', sans-serif;
    color: #aa1818;

}

.infodeimg {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    gap: 25px;
    padding-left: 1em;
    padding-right: 1em;
}

.infodeimg img {
    aspect-ratio: 1;
    object-fit: cover;
    width: 100%;
    height: 100%;
    margin-top: 2em;
}

.infodeimg>* {
    flex: 1 1 15em;
}

.infodeimg {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.infodeimg div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}


div.relato {
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 3em;
    padding-bottom: 3em;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
}

div.relato p {
    margin-top: 2em;
}

p.destacar {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 900;
    color: #575757;

}

p.final {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 900;
    font-size: 2em;
    color: #aa1818;
    border-bottom: 0.1em solid black;
}


/*poesia*/

.arte {
    background-color: #909090;
    padding: 1em;
    display: grid;
    gap: 1em;
}

.poesia {
    display: grid;
    justify-content: center;
    gap: 2em;
    overflow: hidden;
    grid-template-columns: repeat(auto-fit, minmax(20em, 1fr));
}


.arte h2 {
    margin: 0;
}

.arte h3 {
    color: #ffffff;
    font-size: 2em;
}



.poesia figure {

    display: grid;
    aspect-ratio: 1;
    max-width: 30em;
    max-height: 30em;
    position: relative;
    overflow: hidden;
}

.poesia img {
    object-fit: cover;
    object-position: left center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.poesia figcaption {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1em;
    color: #000000;
    padding: 0.5em;
    line-height: 1em;
    position: absolute;
    inset: 0;
    transform: translateY(calc(100% - 2.3em));
    transition: all 1s ease;
    text-align: left;
}

.poesia figcaption strong {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1em;
    color: #aa1818;
    margin-bottom: 2em;
}

.poesia figure:hover figcaption {
    background-color: #000000ce;
    transition: all .3s ease;
    transform: translateY(0);
    display: grid;
    text-align: left;
    place-content: center;
    padding-inline: 2em;
}

.poesia figcaption span {
    display: block;
    font-size: 1.5em;
    color: #ffffff;
    margin-block-start: 0.5em;
    text-transform: none;
    font-weight: 400;
    line-height: 1.5em;
    padding-block: 1em;
}

.poesia figcaption a {
    display: inline-block;
    margin-block-start: 0.5em;
    border: solid 1px white;
    border-radius: 5em;
    color: white;
    padding: 0.75em 1.5em;
    border-radius: 3em;
    text-decoration: none;
    font-weight: 400;
}

.noticias figcaption a:hover {
    background-color: black;
    border: solid 1px black;
}


/*contacto*/

.contacto {
    text-align: center;
    display: flex;
    flex-direction: column;
    margin: 3em;
}

.titulo h1 {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 900;
    font-size: 3em;
    color: #aa1818;
    padding: 0.3em;
    text-align: center;
}

.contacto h3 {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 2em;
    color: #909090;
    border-bottom: 0.1px solid black;
}

.cuadro {
    background-color: rgb(244, 244, 244);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1em;
    margin-top: 2em;
}

.cuadro h2 {
    text-align: center;
    color: #000000;
}

.transportes {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
}

.transportes div {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    border-top: 1px rgb(0, 0, 0) solid;
    padding: 10px;
    gap: 30px;
}

.transportes>div {
    flex: 1 1 14em;
}


.transportes h2 {
    font-family: 'Noto sans', sans-serif;
    font-size: 400%;
    margin: initial;
    color: #aa1818;
}

.mapa {
    background-color: #aa1818;
    text-align: center;
}

.mapaubi {
    width: 100%;
    display: block;
    margin: auto;
}


/*VISITAR*/

.imagenvisitar {
    background-image: url(../imagenes/muralevento.jpg);
    max-height: 50em;
    padding-bottom: 10em;
    padding-top: 10em;
}

.titulotres {
        background-color: rgba(0, 0, 0, 0.800);
        margin: 0 auto;
        justify-content: center;
        align-items: center;
        max-width: 60em;
        text-align: left;
        font-size: 2.2em
}

h5 {
    font-family: 'Noto Sans', sans-serif;
    color: #575757;
    padding-left: 1em;
    padding-right: 1em;
    padding-top: 1em;
    padding-bottom: 1em;

}

.paseos {
    padding-top: 3em;
    display: grid;
    gap: 1em;
    padding: 1em;
}


.visitar {
    display: grid;
    justify-content: center;
    gap: 2em;
    overflow: hidden;
    grid-template-columns: repeat(auto-fit, minmax(20em, 1fr));
}


.paseos h2 {
    margin: 0;
}

.paseos h3 {
    color: #aa1818
}



.visitar figure {

    display: grid;
    aspect-ratio: 1;
    max-width: 30em;
    max-height: 30em;
    position: relative;
    overflow: hidden;
}

.visitar img {
    object-fit: cover;
    object-position: left center;
    width: 100%;
    height: 100%;
    text-align: center;
}

.visitar figcaption {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1em;
    color: #000000;
    padding: 0.5em;
    line-height: 1em;
    position: absolute;
    inset: 0;
    transform: translateY(calc(100% - 2.3em));
    transition: all 1s ease;
    text-align: left;
}

.visitar figcaption strong {
    font-family: 'Noto Sans', sans-serif;
    font-size: 1em;
    color: #aa1818;
    margin-bottom: 2em;
}

.visitar figure:hover figcaption {
    background-color: #000000ce;
    transition: all .3s ease;
    transform: translateY(0);
    display: grid;
    text-align: left;
    place-content: center;
    padding-inline: 2em;
}

.visitar figcaption span {
    display: block;
    font-size: 1.5em;
    color: #ffffff;
    margin-block-start: 0.5em;
    text-transform: none;
    font-weight: 400;
    line-height: 1.5em;
    padding-block: 1em;
}

.visitar figcaption a {
    display: inline-block;
    margin-block-start: 0.5em;
    border: solid 1px white;
    border-radius: 5em;
    color: white;
    padding: 0.75em 1.5em;
    border-radius: 3em;
    text-decoration: none;
    font-weight: 400;
}

figcaption a:hover {
    background-color: black;
    border: solid 1px black;
}



/*formulario*/

.completar {
    margin-top: 2em;
    }
    
    .completar h2 {
        text-align: center;
    }
    .formulario {
        align-items: center;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 3em;
        gap: 0.5em;
        padding-inline: 3em;
    }
    
    label {
        cursor: default;
        font-family: 'Noto Sans', sans-serif;
        font-weight: 400;
        color: #000000;
    }
    
    input {
        writing-mode: horizontal-tb !important;
        font-family: 'Noto Sans', sans-serif;
        text-rendering: auto;
        color: black;
        line-height: normal;
        text-align: start;
        appearance: auto;
        -webkit-rtl-ordering: logical;
        cursor: text;
        background-color: #cfcfcf;
        padding: 4px 6px;
        border-width: 1px;
        border-style: inset;
        border-color: black;
    }
    
    .formu {
        display: flex;
        flex-direction: column;
    }
    
    .reserva {
        display: inline-block;
        font-family: 'Noto Sans', sans-serif;
        font-weight: 600;
        margin-block-start: 0.5em;
        border: solid 1px #aa1818;
        background-color: #aa1818;
        color: #ffffff;
        padding: 0.75em 1.5em;
        text-decoration: none;
    }
    
    a.reserva :hover {
        background-color: #0000002d;
    }
    
    .comentario {
        width: 100%;
        height: 150px;
        padding: 12px 20px;
        box-sizing: border-box;
        outline: 1px solid #ccc;
        background-color: #f8f8f8;
    }
    
    .mail {
        width: 100%;
        box-sizing: border-box;
        outline: 1px solid #ccc;
        background-color: #f8f8f8;
    }
    
    /*formulariocompleto*/
    
    .correcto {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1em;
        margin: 3em;
    }
    
    .correcto h1 {
        font-family: 'Noto Sans', sans-serif;
        font-weight: 900;
        color: #000000;
    }
    
    .correcto p {
        font-family: 'Noto Sans', sans-serif;
        font-weight: 100;
        color: #000000;
    }
    
    .botoninicio {
        background-color: #aa1818;
        color: white;
        padding: 1em 1em;
        cursor: pointer;
        text-transform: uppercase;
        font-size: 1em;
        font-family: 'Noto Sans',sans-serif;
        text-decoration: none;
    }
    


h4.guernica {
    margin: 1em;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 100;
    color: #000000;
}

h2.guernica {
    border-bottom: 0.1em solid black;
}






/*footer*/


footer {
    background-color: #000000;
    color: #ffffff;
    padding: 0.5em;
    text-align: center;
}

.logosfooter {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
}

.logosfooter img {
    min-width: 5%;
    max-width: 10%;
    height: auto;
}

footer h4 {
    font-family: sans-serif;
    font-size: 0.5em;
}



















/*media*/

@media (min-width: 992px) {

    header.contenedor {
        display: flex;
        flex-direction: row;
        margin: 0 auto;
    }

    .menu-btn {
        position: absolute;
        opacity: 0%;
    }

    .menu ul {
        display: flex;
        flex-direction: row;
        opacity: 1;
        visibility: visible;
    }

    nav ul {
        position: relative;
        top: 0em;
        z-index: 9999;
        display: flex;
        padding: 0em;
        flex-direction: row;
        background-color: black;
        color: white;
        opacity: 100%;
    }

    header nav ul li a {
        width: max-content;
        border-bottom: 0;
        padding-top: 0.5em;
        padding-bottom: 0.5em;
    }

    .noticiassecundarias {
        padding-left: 0;
        padding-right: 0;
    }


    .visitas {
        display: flex;
        width: 100%;
        padding: 10px;
        gap: 25px
    }


    .visitas img {
        border-radius: 10px;
        width: 50%;
        height: 100%;
    }

    .visitainfo {
        width: 50%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}


@media (min-width: 970px) {

    .introduccion {
        max-width: 85vw;
    }

    .lineadetiempo1 {
        max-width: 85vw;
    }

    .lineadetiempo2 {
        max-width: 85vw;
    }

    .lineadetiempo1 {
        position: relative;
        padding: 3em;
        height: 100%;
    }

    .lineadetiempo2 {
        position: relative;
        padding: 3em;
        height: 100%;
    }

    .lineadetiempo1:before {
        content: '';
        position: absolute;
        left: 50%;
        width: 4px;
        height: 82%;
        background: #aa1818;
    }

    .lineadetiempo2:before {
        content: '';
        position: absolute;
        left: 50%;
        width: 4px;
        height: 89%;
        background: #aa1818;
    }

    .dato {
        position: relative;
        width: 45%;
        box-sizing: border-box;
    }

    .dato:nth-child(even) {
        left: 55%;
    }

    .dato::after {
        content: '';
        position: absolute;
        top: 0;
        right: calc(-12.11% - 11.5px);
        height: 1.75em;
        width: 1.75em;
        background-color: #aa1818;
        border-radius: 50%;
    }

    .dato:nth-child(even)::after {
        left: calc(-11.11% - 12.5px);
    }

    h2.puente br {
        br: none;
    }



}