/*Paleta de colores
#805F3E
#668C8B
#E6DECA
#ffffff
*/

@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,300;1,200;1,600;1,700&display=swap');

*{
    margin:  0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Titillium Web';
}

h2{
    font-style: italic;
    text-transform: uppercase;
}

a{
    text-decoration: none;
    color: #E6DECA;
}

header{
    width: 100%;
    position: sticky;
    top: 0;
    background-color: #fff;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
}

header .contenedor{
    padding: 1em;
    background-color: aqua;
}

main {
    background:linear-gradient(180deg, #805f3e86 25%, rgba(201,60,32,0) 100%)
}

footer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
    font-size: 0.8em;  
    padding: 1em;
    color: #fff;
    background: linear-gradient(360deg, #668C8B 60%, rgba(201,60,32,0) 100%);
}

nav ul{
    
    margin-bottom: 0.5em;
}

iframe{
    width: 100vw;
    height: auto;
    aspect-ratio: 16/9;
}


.navegacion{
    padding: 1em;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-weight: bold;
    background: linear-gradient(340deg, #805f3e 25%, rgba(201,60,32,0) 100%);      
}
.navegacion img {
    max-width: 20%;
}


header nav ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    justify-content: space-between;
    text-decoration: none;
}

header li{
    padding: 0.5em;
}

#logo{
    font-size: 3em;
    padding: 0.3em;
    color: #fff;    
}

.mapa{
    width: 100vw;
    height: auto;
    padding: 1em;
    aspect-ratio: 1/1;
}

.gracias{
    padding: 1.5em;
    font-size: 2em;
    text-align: center;
    height: 50vh;
}

/* menu */

.menu{
    align-items: center;
    justify-content: center;
    position: absolute;
    background-color:hsl(30 35% 37% / 90%);
    transition: all 1s ease;
    width: 100%;
    height: 90vh;
    right: 0;
    top: 6em;
    translate: -100%;
}

.menu li a{
    font-size: 1.5em;
    line-height: 2em;
}

.menu li a:hover{
    border-bottom: .1em solid #E6DECA;
}

.menu_btn{
    width: 8em;
    margin: -1em;
    padding-right: -1em;
    cursor: pointer;
    position: fixed;
    z-index: 9000;
}

#menu_btn{
    display: none;
}

#menu_btn:checked ~ .menu{
    translate: 0;
}

/*layout inicio*/

.inicio{
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
    padding: 1em; 
    background-image:url("../imagenes/imagen-inicio.JPG");     
    background-size: cover; 
    background-position: top;
}

.inicio div {
    margin-top: 3.5em;
    margin-bottom: 3.5em;
}

.inicio div h2{
    font-size: 3.5em;
    color: white;
}
.inicio div h4 {
    font-size: 1.5em;
    color: white;
}

.headersub a{
    color: #fff;
}

.boton-inicio a{
    background-color: #E6DECA;
    color: #668C8B;    
    padding-block: 0.25em;
    padding-inline: 1em;    
    border-radius: .2em;
    position: absolute;
    font-weight: bold;
}

.actividad{
    margin: 1em;
}

.contenedoractividades {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(293px, 1fr));
    gap: 1em;
    margin: 1em;     
}

.subcontenedoractividades {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;  
    padding: 1em;      
    border-radius: .6em;
    background-color: #31817f87; 
    margin-bottom: 1em;    
}


.subcontenedoractividades p{
    color: rgb(255, 255, 255);
    font-size: 1em;
    font-weight: bold;
    
} 

.noticia{
    margin-top: 2em;
    margin-bottom: 5em;
}

.noticias{
    margin-top: 2em;
    margin-bottom: 2em;
}

.titulo_seccion{
    margin-top: 0;
    margin-bottom: 0.5em;
    padding-left: .5em;
    color: #fff;
    font-size: 2.2em;
    background-color: #805f3e;
}

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

.acumarinicio{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding: 1em;   
    gap: 1em; 
}

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

.logo_pena{
    max-width: 45%;
    margin: 2em;
}


/*diseño de letras*/

:is(p,h1,h3,h4,h5,h6){
    margin-bottom: 0.7em;
    margin-top: 0.8em;
}

:is(h3) {
     font-size: 1.5em;
     font-weight: 700;
    
}

.horariosyprecios{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(293px, 1fr));
    padding: 1em;
    align-items: center;
    gap: 1em;    
}


/*layout museo */


.historia {    
    font-size: 1em;
}

.historia, h4{
    padding: 0em 1em;
}

.contHistoria{
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
    justify-content: center;
}

.lineadetiempo {
    height: 100%;
    width: 20em;
    color: #E6DECA;    
    padding: .5em .5em;
    background-color: rgb(0, 0, 0, 60%);
    margin-bottom: 1em;
    border-radius: .5em;
}

img {
    max-width: 100%;
    aspect-ratio: 1;
}


/*visitas*/
.planifica{
    padding-left: 1em;
}

/*Educación*/

.fotos{
    object-fit: cover;
}

/* contacto */

.contacto{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.infoContacto{
    padding: .5em;
}

/* formularios */

input[type="text"],
input[type="search"],
input[type="tel"],
input[type="email"],
input[type="date"] {
    width: 15em;
    max-width: 20em;
    margin: .5em;
    background-color: #fff;
    border: 0;
    border-radius: .6em;
    font-size: 1em;
    padding: .5em .3em;
    color: #575757;
}

input[type="submit"]{
    cursor: pointer;
    font-size: 1.5em;
    color: #4c6b6a;
    background-color: #fff;
    padding: .5em;
    margin-top: .5em;
    margin-left: 3em;
    border-style: none;
    font-weight: bold;
    border-radius: .6em;
}

.select_css {
    display: block;
    color: #575757;
    font-size: 1em;
    padding: .7em .3em;
    width: 15em;
    max-width: 20em;
    box-sizing: border-box;
    margin: 1.2em .7em;
    outline: none;
    border: 0;
    border-radius: .3em;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
}

.asterisco{
    color: #000;
}

.form_visitas{
    margin-left: auto;
    margin-right: auto;
    padding: 1.5em;
    background-color: #805f3e;
    color: #E6DECA;
    border-radius: 1em;
    width: 20em;
}

.form_visitas h2{
    text-align: center;
    font-size: 1.7em;
}


/*cambios a partir de los 706px */
@media (max-width: 44em){
    .menu_btn{
        width: 8em;
        margin: -1em;
        padding-right: -1em;
        cursor: pointer;
        position: fixed;
        z-index: 9000;
    }

    .menu{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    iframe{
        width: 100vw;
        height: auto;
        aspect-ratio: 16/9;
    }

    .contacto{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .infoContacto{
        padding: 1em;
    }

}

/* cambios a partir de los 960px */
@media (min-width: 60em) {

    footer{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .menu_btn{
        display: none;
    }

    .menu{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
        transition: none;
        background-color: transparent;
        height: 100%;
        top: 0;
        left: 100%;
    }

    .menu li a{
        font-size: 1.3em;
        padding: 0 .5em;
    }

    .menu li a:hover{
        border-bottom: none;
    }

    .acumarinicio{
        display: flex;
        flex-wrap: wrap;
    }

    .videoAcumar{
        width: 100vh;
        height: auto;
    }

    .lineadetiempo{
        width: calc(80% - 22em);
    }

    iframe{
        width: 100vw;
        height: auto;
        aspect-ratio: 16/9;
        padding: 2em;
    }

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

    .contContacto{
        display: flex;
        flex-direction: column;
    }

    
    .infoContacto{
        padding: 1em;
    }

    .mapa{
        width: 50%;
        height: auto;
        aspect-ratio: 1;
        margin-bottom: 2em;
    }

    .contacto, .mapa{
        flex-basis: 50%;
    }

    .gracias{
        font-size: 3em;
    }



}



/* cambios a partir de los 1200px NOTEBOOK - DESKTOP */
@media (min-width: 75em) {}