@charset="utf-8";

/*fuente importada de google fonts */

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

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

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

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;
    color: rgb(124,0,0);

}

/* 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 */

.info {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
}

.info ul {
    display: flex;
    flex-direction: column;
    margin: 10px;
}

.info li {
    display: flex;
    flex-direction: column;
    font-size: 12pt;
    font-weight: 400;
}

.info b {
    color: rgb(124,0,0);
    font-weight: 600;
    font-size: 20px;
}

.icono a {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 5px;
}

.icono img {
    width: 25px;
}

#icono {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#icono span {
    font-size: 15pt;
    margin-right: .3em;
}

#icono_lugar span {
    font-size: 15pt;
}

.boton {
    display: flex;
    justify-content: center;
}

.boton a {
    text-decoration: none;
    font-weight: 400;
    font-size: 12pt;
    color: #F8F2E4;
    background-color: rgb(124,0,0);
    padding: 7px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 7em;
    margin: 20px;
}

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

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


/* Calculador de costos */

/*#calculadorDeCostos h6{
    box-sizing: content-box;
    background-color: rgba(124,0,0,.8);
    color: white;
    padding: .3em;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}*/

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

#calculadorDeCostos div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    background-color: rgba(124,0,0,.8);
    width: 90%;
    padding: .5em;
}

#calculadorDeCostos ul {
    padding: 10px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 45%;
    color: white;
}

#calculadorDeCostos h3 {
    font-size: 11pt;
    font-weight: 400;
}

#costoFinal {
    color: white;
    padding: .3em;
    font-size: 11pt;
    font-weight: 600;
}

#calculadorDeCostos select {
    width: 100%;
    margin-bottom:.4em;
    padding: .3em;
    border-radius: 20px;
    background-color: #B3B1AB;
    font-size: 10pt;
    font-weight: 200;
}

#calculadorDeCostos h6 {
    font-size: 15pt;
    color: rgb(124,0,0);
}

#calculadorDeCostos option {
    border-radius: 20px;
    margin-top: 5px;
    display: block;
    font-size: 13px;
    font-family: 'Poppins';
    font-weight: 400;
    color: black;
    line-height: 1.3;
    padding: .4em 1.4em .3em .8em;
    width: 400px;
    max-width: 100%; 
    box-sizing: border-box;
    margin: 10px auto;
    border: 1px solid #aaa;
    box-shadow: 0 1px 0 1px rgba(0,0,0,.03);
    border-radius: 20px;
    appearance: none;
    background-color: #DEDEDE;
    background-repeat: no-repeat, repeat;
    background-position: right .7em top 50%, 0 0;
    background-size: .65em auto, 100%;

}

.boton_costo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: .5em;
    padding-bottom: .5em;
}

#calculadorDeCostos button {
    margin-left: 30px;
    align-content: space-between;
    width: 40%;
    margin-right: 1em;
    font-size: 11pt;
    padding: .3em;
    border-radius: 20px;
}

/* FIN Calculador de Costos */

/* 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);
}

/* inicio mediaqueries */

@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){
     .ficha {
        width: 30%;
        height: auto;
        margin: .5em;
        padding: .5em;
}
    h2 {
        margin-left: .8em;
}
    #calculadorDeCostos div {
    width: 50%;
}
    header nav ul li {
        font-size: .95em;
}
    .barra nav a {
        padding: .5em .2em;
} 
    #logotipo img {
        width: 11em;
}
}

@media screen and (min-width: 1000px){
    .galeria {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
    #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){
    #calculadorDeCostos div {
    width: 50%;
}
    header nav ul li {
        font-size: 1em;
}
    .barra nav a {
        padding: .5em .2em;
} 
    #logotipo img {
        width: 13em;
}
}