@charset="utf-8";

/*fuente importada de google fonts */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

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

html {
    height: -webkit-fill-available;
}
/*TAMAÑO DE FUENTES*/

body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    font-family: "poppins", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
}

/* inicio barra nav */

header {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background-color: rgb(124,0,0);
}

.barra {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    margin: 0 auto;
    padding: 1em;
}

#isotipo img {
    width: 4em;
    margin-right: 1em;
}

#logotipo img {
    width: 12em;
}

.barra nav a {
    color: white;
    padding: .5em 1em;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
} 

.barra li:hover {
    background-color: rgba(124,0,0,0.6);
}

header nav ul {
    background-color: rgba(0,0,0,0.8);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 50%;
    height: 100vh;
    padding-top: 6em;
    transition: all .6s ease;
    z-index: 9990;
}

header nav ul li {
    font-size: 1.3em;
    padding: .2em .4em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

header nav ul li .material-icons {
    margin: .2em;
    font-size: 22px;
    line-height: 1;
    display: inline-block;
}

.visible {
    left: 50%;
    transition: all .3s ease;
}

#llamamenu {
    color: rgb(124,0,0);
    cursor: pointer;
    height: 2.5em;
    width: 2.5em;
    display: flex;
    position: relative;
    z-index: 9999;
    cursor: pointer;
    margin-left: 2.4em;
}

#llamamenu i {
    padding: 0;
    margin: auto;
}

/* fin barra nav */

#titulo {
    background-color: #7F7D76;
    padding: 10px;
    margin: 10px;
}

#titulo h1 {
    font-size: 22pt;
    color: white;
    font-weight: 600;
    margin-left: .3em;
}

#titulo h6 {
    font-size: 10pt;
    color: white;
    font-weight: 200;
    margin-left: .7em;
}

/* inicio migajas */

.volver {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-left: 10px;
    margin-bottom: .5em;
    margin-top: .5em;
}

.volver a {
    color: rgb(124,0,0);
    font-size: 10pt;
    font-weight: 400;
    margin-right: .2em;
    margin-left: .2em;
}

.volver .material-icons {
    color: rgb(124,0,0);
    font-size: 12pt;
}

.seccion {
    color: rgb(124,0,0);
    font-size: 10pt;
    font-weight: 600;
}

/* fin migajas */


/* Contenedor de fichas */

.contenedor {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Ficha de info */

.ficha {
    width: 100%;
    height: auto;
    background-color: rgb(124,0,0,0.8);
    margin: 1em;
    padding: 1em;
    box-shadow: 7px 9px 16px -6px rgba(0,0,0,0.75);
}

.ficha img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: .5em;
}

.ficha p {
    font-size: 10pt;
    font-weight: 100;
}

.ficha h3 {
    font-size: 20pt;
    font-weight: 400;
}

h6 {
    margin-left: 1em;
    margin-bottom: .5em;
    font-size: 14pt;
    font-weight: 500;
}

.contenedora {
    padding: 1em;
    max-width: 100%;
}

.texto {
    display: block;
    align-items: center;
    max-width: 100%;
    padding: 10px;
    margin-top: 0px;
    color: black;
    line-height: normal;
    text-align: left;
}

/* Tambien te puede interesar */

#interes {
    padding: 2em;
}

#secciones {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#interes h4 {
    border-style: solid;
    border-color: #7F7D76;
    border-width: 2px;
    border-top-style: none;
    border-left-style: none;
    border-right: none;
    width: 100%;
    margin-bottom: .5em;
    font-size: 15pt;
}

#secciones ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: .1em;
    padding-bottom: .2em;
    width: 100%;
}

#secciones li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: .1em;
    margin-left: .1em;
    width: 50%;
    height: 2.2em;
    font-size: 10pt;
    color: white;
    cursor: pointer;
    border-top-right-radius: 3em;
    border-bottom-right-radius: 3em;
}

#secciones a {
    color: white;
    cursor: pointer;
}

#secciones .contacto {
    background-color: rgb(124,0,0,0.8);
}

#secciones .reserva {
    background-color: rgb(0,0,20,0.5);
}

#secciones .cuenta {
    background-color: rgb(0,0,20,0.5);
}

#secciones .horarios {
    background-color: rgb(124,0,0,0.8);
}

/*Footer*/
footer {
    background-color: rgb(124,0,0);
    color: white;
    font-size: .6em;
    padding: 10px;  
    text-align: center;
}

footer a {
     text-decoration: none;
    color: beige;   
}

@media screen and (min-width: 700px){
    #llamamenu {
        display: none;
}
    header nav ul {
        display: flex;
        flex-wrap: wrap;
        background: none;
        position: relative;
        height: auto;
        width: 100%;
        left: auto;
        padding-top: 0;
}
    .visible {
        left: 0;
}
    header nav ul li {
        font-size: .8em;
}
    .barra nav a {
    padding: .5em .2em;
} 
    #isotipo {
        display: none;
}
    #logotipo img {
        width: 10em;
}  
}

@media screen and (min-width: 800px){
    header nav ul li {
        font-size: .95em;
}
    .barra nav a {
        padding: .5em .2em;
} 
    #logotipo img {
        width: 11em;
}
}

@media screen and (min-width: 1000px){
    #secciones {
    flex-direction: row;
}
    #secciones .cuenta {
    background-color: rgb(124,0,0,0.8);
}

    #secciones .horarios {
    background-color: rgb(0,0,20,0.5);
}
    h2 {
    margin-left: 1.5em;
}
    header nav ul li {
        font-size: 1em;
}
    .barra nav a {
        padding: .5em .2em;
} 
    #logotipo img {
        width: 13em;
}
}

@media only screen and (min-width: 1200px){
    header nav ul li {
        font-size: 1em;
}
    .barra nav a {
        padding: .5em .2em;
} 
    #logotipo img {
        width: 13em;
}
}