html {
    @media screen and(max-width: 650px) {
        font-size: 12px;
    }
}

a {
    text-decoration: none;
}

.header {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}

.content {
    max-width: 36rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin: auto;
    text-align: center;
}

.header-video {
    position: fixed;
    z-index: -100;
    top: 0;
    left: 0;
    overflow: hidden;
}

#imgcafe {
    display: none;
}

@media (min-aspect-ratio: 16/9) {
    .header-video video {
        width: 100vw;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .header-video video {
        width: auto;
        height: 100vh;
    }
}

.header-content {
    z-index: 2;
}

.header-content h2 {
    font-size: 50px;
    margin-bottom: 0;
}

.header-content h1 {
    font-size: 70px;
    margin-bottom: 0;
}

.header-content span {
    color: #a45e4d;
}

.header-content p {
    display: block;
}

body {
    overflow-x: hidden;
}

#body-content {
    width: 100vw;
    height: 100vh;
}

#headerarrow img {
    width: 70%;
    height: auto;
}

div#textoanima {
    height: 50vh;
    background-size: 100% 100%;
    background-image: url(../img/Izquierdo_sup.png);
    background-position: center center;
    display: flex;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

div#textosanta {
    height: 50vh;
    background-size: 100% 100%;
    background-image: url(../img/Cuadro_inferior_central.png);
    background-position: center center;
    display: flex;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

div#textodon {
    height: 50vh;
    background-size: 100% 100%;
    background-image: url(../img/Cuadro_superior_derecho.png);
    background-position: center center;
    display: flex;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

div#imagenmenu, div#imagenmenu1, div#imagenmenu2 {
    height: 50vh;
    background-color: white;
    display: flex;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

div#imagenmenu img, div#imagenmenu1 img, div#imagenmenu2 img {
    max-width: 100%;
    height: auto;
}

#body-content div p {
    font-size: 1rem;
    color: white;
    display: flex;
    vertical-align: middle;
}

.flecha_bajo, .flecha_bajo3 {
    position: relative;
}

.flecha_bajo2 {
    position: relative;
    display: none;
}

.center {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.enviar {
    width: 60%;
}

.precio {
    color: green;
    font-size: calc(1.1em + 1vw);
    text-align: center;
    margin-bottom: 0;
}

.close {
    position: absolute;
    color: black;
    font-size: 2rem;
    margin-top: -0.5rem;
    margin-right: 0.5rem;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #111111bd;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity .6s .9s;
    --transform: translateY(-100vh);
    --transition: transform .8s;
}

.modal--show {
    opacity: 1;
    pointer-events: unset;
    transition: opacity .6s;
    --transform: translateY(0);
    --transition: transform .8s .8s;
    z-index: 1000;
}

.modal__container {
    margin: auto;
    width: 80%;
    max-height: auto;
    border-radius: 6px;
    padding: 3em 2.5em;
    display: flex;
    gap: 1em;
    place-items: center;
    grid-auto-columns: 100%;
    transform: var(--transform);
    transition: var(--transition);
    flex-direction: column;
    align-items: flex-end;
}

.modal__container img {
    width: 100%;
    margin-bottom: -5%;
}

.modal__close {
    display: flex;
    justify-content: center;
    transition: background-color .3s;
}

.modal__close img {
    width: 30%;
}

div#imagenmenu1 {
    display: none;
}

@media screen and (max-width: 800px) {
    .modal__container {
        width: 90%;
    }
}

@media screen and (max-width: 650px) {
    .col {
        width: 100%;
        height: auto;
    }

    .modal__container {
        width: 100%;
    }

    div#imagenmenu1 {
        display: flex;
    }

    div#imagenmenu2 {
        display: none;
    }

    .flecha_bajo {
        display: none;
    }

    .flecha_bajo2 {
        display: initial;
    }

    .close {
        font-size: 1.5rem;
    }
}