/*#region Elementos Ocultos*/
.carrusel__container {
    display: none;

}

.menu.fa-solid.fa-bars.fa-3x{
    display: none;
}



/*#endregion Elementos Ocultos*/

/*#region Elementos generales*/

* {
    box-sizing: content-box;
    color: #ccc;
}

.main__container {
    position: relative;
    width: 100%;
    height: 931px;
}



.carrusel {
    position: relative;
    width: 100%;
    max-width: 120em;
    height: 931px;
}

.carrusel .carrusel__container {
    display: block;
    width: 100%;
    height: 100%;
}

.imagen_1,
.imagen_2,
.imagen_3,
.imagen_4,
.imagen_5,
.imagen_6 {
    transition: all 0.7s ease;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
}

.imagen_4 {
    transition: all 0.7s ease;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
}

.carrusel .imagen_1 {

    background-image: linear-gradient(transparent, rgba(22, 22, 22, 1)), url(/media/1.webp);
}

.carrusel .imagen_2 {

    background-image: linear-gradient(transparent, rgba(22, 22, 22, 1)), url(/media/2.webp);
}

.carrusel .imagen_3 {

    background-image: linear-gradient(transparent, rgba(22, 22, 22, 1)), url(/media/3.webp);
}

.carrusel .imagen_4 {

    background-image: linear-gradient(transparent, rgba(22, 22, 22, 1)), url(/media/11.webp);
}

.carrusel .imagen_5 {

    background-image: linear-gradient(transparent, rgba(22, 22, 22, 1)), url(/media/7.webp);
}

.carrusel .imagen_6 {

    background-image: linear-gradient(transparent, rgba(22, 22, 22, 1)), url(/media/6.webp);
}

.carrusel .puntos {
    position: absolute;
    width: 100%;
    list-style: none;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-content: center;
    bottom: 0;
}

.carrusel .punto {
    width: 1em;
    height: 1em;
    background-color: rgba(255, 255, 255, .3);
    margin: 1em;
    border-radius: 50%;
}

.carrusel .punto.activo {
    background-color: #ccc;
}

.img-to-move .imagen_2 p,
.img-to-move .imagen_3 p,
.img-to-move .imagen_4 p,
.img-to-move .imagen_5 p,
.img-to-move .imagen_6 p {
    position: absolute;
    left: 100px;
    top: 435px;
    font-weight: 700;
    font-size: 5ch;
    text-align: left;
    transform: translateY(-50%);
}

.imagen-text {
    position: absolute;
    left: 100px;
    top: 450px;
    font-weight: 700;
    font-size: 5ch;
    text-align: left;
    transform: translateY(-50%);
}



.hades,
.consigue,
.enfrenta,
.trabaja,
.intenta,
.sesenta {
    color: #9a0000;
}


@font-face {
    font-family: BloodLust;
    src: url("/fonts/BloodLust.woff") format("opentype");
}





/*#endregion*/

/*#region Vista Movil*/
@media screen and (max-width: 1260px) {

    /*#region HTML y body*/

    * {
        box-sizing: content-box;
        margin: 0;
        padding: 0;
    }

    html {

        font-family: "Kanit", sans-serif;
        font-weight: 300;
        scroll-behavior: smooth;

    }

    .ul__responsive-ul {
        display: none;
    }

    .body {
        position: relative;
        display: flex;
        flex-direction: column;
        background-color: rgb(22, 22, 22);
        width: 100%;
        min-height: 100%;
        
    }

    /*#endregion*/
    /*#region Header*/


    .header__container {
        display: flex;
        flex-direction: column;
        position: fixed;
        width: 100%;
        height: 0px;
        z-index: 9800;
    }

    .header__container.abajo>div {
        transition: all .5s ease;
        transform: translateY(-100%);
    }

    .header__container.abajo>.fa-bars{
        transition: all .5s ease;
        transform: translateY(-150%);
    }

    .header__container-div {
        background-color: rgba(40, 40, 40, .8);
        transition: all .5s ease;
    }

    #logo {
        width: 90px;
        padding: 15px 10px 10px 15px;
    }

    .menu.fa-solid.fa-bars.fa-3x {
        display: inline;
        width: 60px;
        height: auto;
        position: absolute;
        right: 20px;
        margin-top: 18px;
        transition: all .5s ease;
    }

    .menu.touch{
        color: #9a0000;
    }

    



    .header__container-nav {
        display: flex;
        height: 100vh;
        width: 50%;
        transform: translateX(-100%);
        transition: all 0.5s ease;
    }

    .header__container-nav-ul {
        display: flex;
        flex-direction: column;
        list-style: none;
        padding: 20px;
        height: 100%;
        width: 100%;
        background-color: rgba(40, 40, 40, .8);
    }

    @media screen and (orientation:landscape) {
        .header__container-nav {
            width: 100%;
            height: 30px;
            transition: all 0.5s ease;
        }

        .header__container-nav-ul {
            flex-direction: row;
            justify-content: space-evenly;
        }
    }

    .header__container-nav-ul li {
        padding-bottom: 55px;
    }

    .header__container-nav-ul a {
        text-decoration: none;
        
        font-size: 1.3em;

    }




    /*#endregion Header*/
    /*#region Main*/

    .main__container {
        background-image: linear-gradient(180deg, transparent, rgb(22, 22, 22) 100%), url(media/3.webp);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 86vh;
        text-align: center;
        overflow-y: auto;
    }

    .carrusel {
        position: relative;
        width: 100%;
        max-width: 120em;
        height: 86vh;

    }

    .img-to-move .imagen_2 p,
    .img-to-move .imagen_3 p,
    .img-to-move .imagen_4 p,
    .img-to-move .imagen_5 p,
    .img-to-move .imagen_6 p {
        left: 30px;
    }

    .bienvenida{
        font-size: 5ch;
    }

    .imagen-text {
        position: absolute;
        left: 30px;
        top: 450px;
        font-weight: 700;
        font-size: 5ch;
        text-align: left;
        transform: translateY(-50%);
    } 

    @media screen and (orientation: landscape) {

        .imagen-text {
        top: 190px;
    } 
    .img-to-move .imagen_2 p,
    .img-to-move .imagen_3 p,
    .img-to-move .imagen_4 p,
    .img-to-move .imagen_5 p,
    .img-to-move .imagen_6 p {
        top: 190px;
    }
    }

    /*#endregion Main*/
    /*#region Salas*/


    /*#region Configuracion Salas*/

    .desc1-dsktp,
    .desc2-dsktp,
    .desc3-dsktp,
    .dificultad1,
    .tiempo-escapar1,
    .tit-cant-pers1,
    .dificultad2,
    .tiempo-escapar2,
    .tit-cant-pers2,
    .dificultad3,
    .tiempo-escapar3,
    .tit-cant-pers3 {
        display: none;
    }

    .salas__container {
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        position: relative;
        background: rgba(22, 22, 22, 1);
        min-height: 30vh;
        padding: 30px;
        padding-top: 100px;
        transition: all .5s ease;
        z-index: 9700;
        margin-top: 150px;
    }


    .tit-sala {
        position: absolute;
        text-align: center;
        align-self: center;
        font-size: 3em;
        top: 30px;
        z-index: 5000;
        color: #9a0000;
        font-family: BloodLust, Helvetica, sans-serif;
        font-weight: 200;
    }

    /*#endregion*/
    /*#region Contenedores de salas*/
    .salas__container-div1 {
        background: linear-gradient(0deg, rgba(22, 22, 22, 1) 20%, rgba(33, 33, 33, 1) 100%);
        position: relative;
        display: flex;
        flex-direction: column;
        text-align: center;
        height: 200px;
        width: 100%;
        margin-top: 1px;
        margin-bottom: 35px;
        border-radius: 20px;
        transition: .5s;
        overflow: hidden;
        opacity: 1;
        z-index: 9750;

    }

    .ver-sala1, .ver-sala2, .ver-sala3{
        position: absolute;
        background-color: transparent;
        border: 3px solid #9a0000;
        padding: 7px;
        transform: translateX(-50%);
        bottom: 35px;
        left: 50%;
    }

    @media screen and (orientation:landscape) {
        .ver-sala1, .ver-sala2, .ver-sala3{
            position: absolute;
            background-color: transparent;
            border: 3px solid #9a0000;
            padding: 7px;
            transform: translateX(-50%);
            bottom: 80px;
            left: 51.5%;
            scale: 1.4;
        }
        
    }

    .salas__container-div2 {
        background: linear-gradient(0deg, rgba(22, 22, 22, 1) 20%, rgba(33, 33, 33, 1) 100%);
        position: relative;
        display: flex;
        flex-direction: column;
        text-align: center;
        height: 200px;
        width: 100%;
        margin-top: 1px;
        border-radius: 20px;
        transition: .5s;
        overflow: hidden;
        margin-bottom: 35px;

    }

    .salas__container-div3 {
        background: linear-gradient(0deg, rgba(22, 22, 22, 1) 20%, rgba(33, 33, 33, 1) 100%);
        position: relative;
        display: flex;
        flex-direction: column;
        text-align: center;
        height: 200px;
        width: 100%;
        margin-top: 1px;
        border-radius: 20px;
        transition: .5s;
        overflow: hidden;
        margin-bottom: 35px;

    }

    /*#endregion*/

    /*#region Sala 1*/
    .titulo1 {
        
        font-weight: 800;
        font-size: 1.5em;
    }

    .img-1 {
        background-image: url("media/El sotano-responsive.webp");
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
        width: 100%;
        min-height: 200px;
        margin: 0;
        border-radius: 20px;
        z-index: 200;
    }

    .pie-imagen1 {
        display: flex;
        justify-content: space-between;
        position: absolute;
        width: 95%;
        z-index: 500;
        
        bottom: 0;
        padding: 3px 40px 0 10px;
        background-color: rgba(44, 44, 44, .3);

    }

    .pie-imagen1 img {
        width: 20px;
        height: 20px;
    }

    .desc1 { 
        
        text-align: left;
        padding: 15px;
        opacity: 1;
        transform: translateY(0);
        position: relative;
    }

    .cant-personas1 {
        position: absolute;
        bottom: 0;
        left: 48%;
    }

    .pie-imagen-dif1 img:last-child {
        filter: grayscale(1);
    }


    /*#endregion*/

    /*#region Sala 2*/
    .titulo2 {
        
        font-weight: 800;
        font-size: 1.5em;
    }

    .img-2 {
        background-image: url("media/altillo_responsive.webp");
        background-repeat: no-repeat;
        background-position: center -200px;
        background-size: cover;
        position: relative;
        width: 100%;
        min-height: 200px;
        margin: 0;
        border-radius: 20px;
        z-index: 200;
    }
    @media screen and (position:landscape) {
        
    }

    .pie-imagen2 {
        display: flex;
        justify-content: space-between;
        position: absolute;
        width: 95%;
        z-index: 500;
        bottom: 0;
        padding: 3px 40px 0 10px;
        background-color: rgba(44, 44, 44, .3);
    }

    .pie-imagen2 img {
        width: 20px;
        height: 20px;
    }

    .desc2 {
        text-align: left;
        padding: 15px;
        opacity: 1;
        transform: translateY(0);
        position: relative;
    }

    .cant-personas2 {
        position: absolute;
        bottom: 0;
        left: 48%;
    }

    .pie-imagen-dif2 img:last-child,
    .pie-imagen-dif2 img:nth-child(5) {
        filter: grayscale(0);
    }


    /*#endregion*/

    /*#region Sala 3*/
    .titulo3 {
        
        font-weight: 800;
        font-size: 1.5em;
    }

    .img-3 {
        background-image: url("media/sala-67-no-disp-movil.webp");
        background-repeat: no-repeat;
        background-position: center -50px;
        background-size: cover;
        position: relative;
        width: 100%;
        min-height: 200px;
        margin: 0;
        border-radius: 20px;
        z-index: 200;
    }

    @media screen and (min-width: 800px) {
        .img-3 {
            background-position-y: 65%;
        }

        .img-2{
            background-position: center -350px;
        }
    }

    .pie-imagen3 {
        display: flex;
        justify-content: space-between;
        position: absolute;
        width: 95%;
        z-index: 500;
        
        bottom: 0;
        padding: 3px 40px 0 10px;
        background-color: rgba(44, 44, 44, .3);
    }

    .pie-imagen3 img {
        width: 20px;
        height: 20px;
    }

    .desc3 {
        text-align: left;
        padding: 15px;
        opacity: 1;
        transform: translateY(0);
        position: relative;
    }

    .cant-personas3 {
        position: absolute;
        bottom: 0;
        left: 48%;
    }

    .pie-imagen-dif3 img:last-child, 
    .pie-imagen-dif3 img:nth-child(5){
        filter: grayscale(1);
    }

    /*#endregion*/

    /*#endregion Salas*/
    /*#region Reservas*/


    .reservas__container {
        position: relative;
        overflow-y: auto;
        background-image: radial-gradient(transparent, rgb(22, 22, 22) 70%), url(media/1.webp);
        background-size: cover;
        background-position: center center;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        min-height: 800px;
        text-align: center;
    }

    .reservas__container-div {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;

    }

    .reservas__h3 {
        position: relative;
        top: 300px;
        font-size: 5em;
        font-weight: 200;
        line-height: 80px;
        width: 50%;
        margin: auto;
        font-family: BloodLust, Arial, Helvetica, sans-serif;
        color: #9a0000;

    }

    .boton-reserva {
        position: relative;
        border: 3px solid rgb(55, 0, 0);
        background-color: transparent;
        width: 200px;
        height: 50px;
        margin: auto;
        margin-top: 400px;
        transition: border .5s ease;
    }

    .boton-reserva #Botonreserva {
        font-family: BloodLust, Arial, Helvetica, sans-serif;
        font-size: 2.5em;
        font-weight: 300;
        text-align: center;
        text-justify: center;
        text-decoration: none;
        padding: 0px 19.2px;
        transition: all .5s ease;
    }

    .boton-reserva p{
        font-family: BloodLust, Arial, Helvetica, sans-serif;
        font-size: 2em;
        font-weight: 300;
        text-align: center;
        text-justify: center;

    }

    #Botonreserva:hover{
        color: #eee;
    }

    .boton-reserva:hover {
        transition: border .5s ease;
        border: 3px solid #9a0000;

    }
    
    
    .lospre{
        display: block;
        font-weight: 500;
        font-size: 1.1rem;
        background-image: linear-gradient(90deg, rgb(22,22,22)10%, transparent, rgb(22,22,22)90%);
        background-color: #2c2c2c;
        pointer-events: none;
        user-select: none;
        margin-top: 20px;
        padding: 5px;
    }




    /*#endregion Reservas*/
    /*#region Como se juega*/

    .como-se-juega {
        position: relative;
        width: 100%;
        max-width: 1400px;
        height: 900px;
        background-color: #161616;
    }

    .como-se-juega img {
        width: 150px;
        height: auto;
        transform: translateX(-50%);
    }

    .funciona {
        position: absolute;
        width: 100%;
        text-align: center;
        font-weight: 500;
        font-size: 5ch;
        font-family: BloodLust, Arial, Helvetica, sans-serif;
        color: #9a0000;
    }

    .investiga {
        position: absolute;
        top: 80px;
        left: 50%;
    }

    .resuelve {
        position: absolute;
        top: 330px;
        left: 50%;
    }


    .escapa {
        position: absolute;
        top: 580px;
        left: 50%;
        height: auto;
    }

    .investiga p {
        position: absolute;
        font-size: 2ch;
        text-align: center;
        width: 200px;
        transform: translateX(-50%);
    }

    .resuelve p {
        position: absolute;
        font-size: 2ch;
        text-align: center;
        width: 250px;
        transform: translateX(-50%);
    }

    .escapa p {
        position: absolute;
        font-size: 2ch;
        text-align: center;
        width: 200px;
        transform: translateX(-50%);
    }

    .inv-sala {
        font-size: 2.1ch;
        color: #9a0000;
    }

    .res-ace {
        font-size: 2.1ch;
        color: #9a0000;
    }

    .int-esc {
        font-size: 2.1ch;
        color: #9a0000;
    }


    /*#endregion*/
    /*#region Mapa*/

    .mapa__container {
        overflow-y: auto;
        width: 100%;
        height: 800px;
        text-align: center;
        background-color: #161616;
    }

    .frase-estamos {
        color: #9a0000;
        font-size: 3em;
        font-weight: 500;
        font-family: BloodLust, Arial, Helvetica, sans-serif;
    }

    .mapa__container-direccion {
        font-weight: 500;
        font-size: .8em;
        margin-bottom: 5px;
    }

    .mapita {
        height: 350px;
        width: 90%;
    }

    /*#endregion Mapa*/
    /*#region Horarios y Precios*/

    .art {
        overflow-y: hidden;
        position: relative;
        display: flex;
        width: 100%;
        min-height: 300px;
        padding-bottom: 30px;
        overflow-x: hidden;
    }

    .art__horarios {
        position: absolute;
        display: flex;
        width: 50%;
    }

    .art__horarios-p {
        text-align: center;
        width: 100%;
        font-family: BloodLust;
        font-size: 3em;
        color: #9a0000;

    }

    .art__horarios-p-dias {
        position: absolute;
        width: 50%;
        height: 100px;
        left: 0;
        white-space: pre-line;
        text-align: left;
        margin-top: 30px;
        margin-left: 25px;
        line-height: 35px;
    }

    .art__horarios-p-horas {
        position: absolute;
        width: 50%;
        height: 100px;
        right: 0;
        white-space: pre-line;
        text-align: center;
        margin-top: 30px;
        margin-left: 10px;
        line-height: 35px;
    }

    .art__precios {
        position: absolute;
        display: flex;
        flex-direction: column;
        width: 50%;
        right: 0;
        white-space: pre;
    }

    .art__precios-p {
        position: absolute;
        text-align: center;
        width: 100%;
        font-family: BloodLust;
        font-size: 3em;
        color: #9a0000;
    }

    .art__precios-p-personas {
        position: absolute;
        width: 50%;
        height: 100px;
        left: 0;
        white-space: pre-line;
        text-align: left;
        margin-top: 30px;
        margin-left: 25px;
        line-height: 35px;
    }

    .art__precios-p-precios {
        position: absolute;
        width: 50%;
        height: 100px;
        right: 0;
        white-space: pre-line;
        text-align: center;
        margin-top: 30px;
        margin-left: 10px;
        line-height: 35px;
    }


    .sep__horarios-precios {
        position: absolute;
        background-color: #222;
        height: 30%;
        width: 2px;
        border-radius: 50%;
        right: 48%;
        margin: 55px 0;

    }

    @media screen and (orientation: landscape){
        .sep__horarios-precios {
            margin: 60px 40px;
            height: 242px;
            align-items: center;
        }
    }



    /*#endregion Fin seccion horarios y precios*/
    /*#region Footer*/


    footer img {
        width: 20px;
        height: 20px;
    }


    footer {
        position: relative;
        height: 250px;
        width: 100%;
        background-image: linear-gradient(rgba(22, 22, 22, .8), rgba(22, 22, 22, .8)), url(media/footer3.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        
        transition: all .3s ease;
    }

    .copy {
        position: absolute;
        bottom: 0px;
        left: 50%;
        text-align: left;
        transform: translateX(-50%);
        pointer-events: none;
        user-select: none;
    }

    .author {
        position: absolute;
        left: 0;
        bottom: 0;
        opacity: .03;
        pointer-events: none;
        user-select: none;
    }

    .hianooto {
        position: absolute;
        bottom: 5px;
        right: 5px;
        opacity: .2;
        pointer-events: none;
        user-select: none;
    }

    .div__logo {
        position: absolute;
        left: 17px;
        top: 38px;
    }

    .div__logo img {
        display: none;
    }

    .div__interes {
        position: absolute;
        left: 0px;
        top: 20px;
    }

    .div__interes p:first-child {
        text-decoration: underline;
        pointer-events: none;
        user-select: none;
    }

    .div__interes p {
        margin-bottom: 10px;
        text-align: left;
    }

    .div__interes ul {
        list-style: square;
        padding-left: 20px;
    }

    .div__interes ul li a {
        text-decoration: none;
        
        transition: all .5s ease;
    }

    .div__interes ul li:hover,
    .div__interes ul li a:hover {
        transition: all .5s ease;
        color: #9a0000;
    }

    .div__direccion {
        position: absolute;
        left: 155px;
        top: 20px;
    }

    .div__direccion p:first-child {
        text-decoration: underline;
        pointer-events: none;
        user-select: none;
    }

    .div__redes {
        position: absolute;
        right: 10px;
        top: 20px;
    }

    .div__redes p {
        text-decoration: underline;
        margin-bottom: 10px;
        pointer-events: none;
        user-select: none;
    }

    .div__redes img {
        transform: translateY(25%);
        margin-right: 15px;
        pointer-events: none;
        user-select: none;
    }

    .div__redes ul {
        list-style: none;
    }

    @media screen and (orientation:landscape) {
        .div__logo {
            top: 50%;
            transform: translateY(-50%);
        }

        .div__logo img {
            display: block;
            width: 130px;
            height: auto;
        }

        .copy {
            top: 67%;
            left: 10%;
            width: 130px;
        }

        .div__interes {
            margin-left: 180px;
        }

        .div__redes {
            margin-right: 70px;
        }

        .div__direccion {
            margin-left: 310px;
        }

        .div__contacto {
            margin-left: 350px;
        }
    }

    .div__redes ul li a {
        text-decoration: none;
        
        transition: all .5s ease;
    }

    .div__redes ul li img {
        filter: grayscale(1);
    }

    .div__redes ul li img:last-child {
        filter: brightness(0.2);
    }

    .div__redes ul li:hover>img,
    .div__redes ul li:hover>a {
        filter: grayscale(0);
        transition: all .5s ease;
        color: #9a0000
    }

    .div__redes ul li:last-child:hover>img,
    .div__redes ul li:last-child:hover>a {
        filter: brightness(5);
    }

    .div__contacto {
        position: absolute;
        left: 0px;
        top: 140px;
    }

    .div__contacto p:first-child {
        text-decoration: underline;
        pointer-events: none;
        user-select: none;
    }

    .div__contacto p:nth-child(2) {
        display: inline-block;
        padding-right: 40px;
        pointer-events: none;
        user-select: none;
    }

    .div__contacto p:nth-child(3) {
        display: inline;
    }

    .div__contacto p:nth-child(4) {
        display: inline-block;
        padding-right: 15px;
        pointer-events: none;
        user-select: none;
    }

    .div__contacto p:nth-child(5) {
        display: inline-block;
    }

    /*#endregion Footer*/
    /*#region boton volver arriba*/
    .volver-arriba {
        scale: 0;
        position: fixed;
        right: 0;
        bottom: 0;
        padding: 30px;
        transition: .5s;
        z-index: 9997;

    }

    .volver-arriba img {
        width: 30px;
    }

    .volver-arriba.activado {
        scale: 1;
        transition: .5s;
    }

    /*#endregion*/
}

/*#endregion Vista Movil*/

/*#region Vista Escritorio 16:9*/
@media screen and (min-width: 1261px) {

    /*#region Body y HTML*/
    * {
        box-sizing: content-box;
        margin: 0;
        padding: 0;
    }

    html {

        font-family: "Kanit", sans-serif;
        font-weight: 300;
        scroll-behavior: smooth;
        background-color: #161616;
    }

    .body {
        position: relative;
        display: flex;
        flex-direction: column;
        background-color: rgb(22, 22, 22);
        width: 100%;
        min-height: 100%;
        color: #ccc;
        
    }

    /*#endregion*/
    /*#region Boton de volver al principio*/
    .volver-arriba {
        scale: 0;
        position: fixed;
        right: 0;
        bottom: 0;
        padding: 30px;
        transition: .5s;
        z-index: 9997;

    }

    .volver-arriba img {
        width: 30px;
    }

    .volver-arriba.activado {
        scale: 1;
        transition: .5s;
    }

    /*#endregion Boton de volver al principio*/
    /*#region Header-Desktop*/

    .header__container {
        display: flex;
        flex-direction: row;
        position: fixed;
        width: 100%;
        height: 0;
        z-index: 9800;
        background-image: linear-gradient(0deg, transparent, rgba(40, 40, 40, .8));
        width: 100%;
        height: 100px;
        justify-content: space-between;
        transition: all .5s ease;
    }

    .header__container.abajo {
        transition: all .5s ease;
        transform: translateY(-100%);
    }

    #logo {
        width: 100px;
        padding: 15px 10px 10px 35px;
    }

    .ul__responsive-ul {
        display: flex;
        flex-direction: row;
        margin-right: 20px;
        align-items: center;
    }

    .menu {
        display: none;
    }

    .header__responsive-container-nav {
        display: flex;
        flex-direction: row;
        justify-self: end;
    }

    .ul__responsive-ul li {
        list-style: none;


    }

    .ul__responsive-ul a {
        text-decoration: none;
        
        font-weight: 500;
        font-size: 1.2em;
        margin: 15px;
        transition: all 0.5s ease;
    }

    .ul__responsive-ul a:hover {
        transition: all 0.5s ease;
        color: #9a0000;
    }

    .header__container-nav-ul {
        display: none;

    }

    /*#endregion Header-Desktop*/
    /*#region Main-Desktop*/

    .main__container {
        margin-bottom: 50px;
    }

    .bienvenida{
        font-size: 6em;
    }

    .img-to-move:first-child p {
        font-size: 6em;
    }

    .imagen_1 .imagen-text p {
        font-size: 10em;
    }

    .imagen-text p {
        font-size: 7em;
    }

    .imagen-text p {
        font-size: 7em;
    }

    .imagen-text p {
        font-size: 7em;
    }

    .imagen-text p {
        font-size: 7em;
    }

    /*#endregion  Main-Desktop*/
    /*#region Salas-Deskotop*/

    /*#region Contenedor Salas*/
    .tit-sala {
        width: 100%;
        height: 50px;
        text-align: center;
        color: #9a0000;
        font-size: 6em;
        font-family: BloodLust, Arial, Helvetica, sans-serif;
        padding-top: 80px;
        font-weight: 500;
        margin-bottom: 100px;
    }

    .salas__container {
        position: relative;
        display: flex;
        overflow: hidden;
        overflow-y: auto;
        width: 100%;
        min-width: 100%;
        margin: auto;
        min-height: 98vh;
        flex-direction: column;
        justify-content: space-between;
        background-image: linear-gradient(0deg, rgba(22, 22, 22, 1) 0%, rgba(22, 22, 22, 0) 20%, rgba(22, 22, 22, 0) 80%, rgba(22, 22, 22, 1) 100%), url(media/fondo-salas.webp);
        align-content: center;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }

    /*#endregion*/

    /*#region Contenedores de salas*/

    .salas__container-div1 {
        display: flex;
        position: relative;
        align-self: center;
        max-width: 1400px;
        min-width: 1400px;
        width: 100%;
        height: 450px;
        overflow: hidden;
        pointer-events: none;
        background-image: linear-gradient(90deg, rgba(0, 0, 0, .8) 40%, rgba(255, 255, 255, 0) 80%);
        margin-bottom: 50px;
        border-radius: 20px;
        transition: all 0.5s ease;
        order: 1;
    }

    .salas__container-div2 {
        display: flex;
        position: relative;
        align-self: center;
        max-width: 1400px;
        min-width: 1400px;
        width: 100%;
        height: 450px;
        overflow: hidden;
        pointer-events: none;
        background-image: linear-gradient(-90deg, rgba(0, 0, 0, .8) 40%, rgba(255, 255, 255, 0) 80%);
        margin-bottom: 50px;
        border-radius: 20px;
        transition: all 0.5s ease;
        order: 2;
    }

    .salas__container-div3 {
        display: flex;
        position: relative;
        align-self: center;
        max-width: 1400px;
        min-width: 1400px;
        width: 100%;
        height: 450px;
        overflow: hidden;
        pointer-events: none;
        background-image: linear-gradient(90deg, rgba(0, 0, 0, .8) 40%, rgba(255, 255, 255, 0) 80%);
        margin-bottom: 150px;
        border-radius: 20px;
        transition: all 0.5s ease;
        order: 3;
    }

    @media screen and (max-width:1800px) {

        .salas__container-div1,
        .salas__container-div3 {
            margin-left: 200px;
        }

        .salas__container-div2 {
            margin-right: 200px;
        }
    }

    /*#endregion */

    /* #region Sala 1 */


    .titulo1 {
        position: absolute;
        width: 100%;
        height: 1.6em;
        order: 1;
        top: 15%;
        left: 320px;
        font-weight: 600;
        font-size: 2em;
    }

    .img-1 {
        position: relative;
        width: 50%;
        min-width: 280px;
        min-height: 450px;
        max-width: 300px;
        background-image: url(media/El-sotano.webp);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        order: 0;
        opacity: 1;
        border-radius: 20px;
    }

    .pie-imagen1 {
        width: 100%;
        height: 30px;
        bottom: 0;
        display: flex;
        flex-flow: row nowrap;
        justify-content: start;
        order: 3;
        padding-bottom: 10px;
        text-align: center;
        left: 20%;
    }

    .dificultad1 {
        position: absolute;
        bottom: 70px;
        left: 360px;
        font-weight: 500;
    }

    .pie-imagen-dif1 {
        position: absolute;
        bottom: 20px;
        left: 320px;
    }

    .pie-imagen-dif1 img,
    .pie-imagen-dif2 img,
    .pie-imagen-dif3 img {
        width: 25px;
        height: 25px;
    }


    .pie-imagen-dif1 img:last-child {
        filter: grayscale(1);
    }


    .tit-cant-pers1 {
        position: absolute;
        width: 50px;
        bottom: 70px;
        left: 510px;
        font-weight: 500;
    }

    .cant-personas1 {
        position: absolute;
        width: 50px;
        bottom: 27px;
        left: 531px;
        text-align: center;
        font-weight: 500;

    }

    .tiempo-escapar1 {
        position: absolute;
        width: 50px;
        bottom: 70px;
        left: 650px;
        font-weight: 500;
    }

    .minutos1 {
        position: absolute;
        bottom: 27px;
        left: 650px;
        font-weight: 500;
    }

    .desc1 {
        display: none;
    }

    .desc1-dsktp {
        position: absolute;
        height: 100%;
        width: 30%;
        top: 25%;
        overflow: hidden;
        left: 320px;
        order: 4;
        text-align: left;
        transition: width 0.5s ease;
    }

    .ver-sala1 {
        position: absolute;
        right: 450px;
        bottom: 30px;
        font-size: 1.5em;
        font-weight: bold;
        padding: 10px 15px;
        border: 3px solid rgb(85, 0, 0);
        
        background-color: transparent;
        transition: 0.3s;
        transition: right 0.5s ease;
        pointer-events: all;
        z-index: 9700;
        transition: all .5s ease;
        cursor: pointer;
    }

    .ver-sala1:hover {
        transition: all .5s ease;
        border-color: #9a0000;
        color: #eee;
    }

    /* #endregion */

    /* #region Sala 2 */
    .titulo2 {
        position: absolute;
        width: 100%;
        height: 1.6em;
        order: 1;
        top: 15%;
        left: 660px;
        font-weight: 600;
        font-size: 2em;
    }

    .img-2 {
        position: absolute;
        right: 0;
        width: 50%;
        min-width: 280px;
        min-height: 450px;
        max-width: 300px;
        background-image: url(media/altillo_responsive.webp);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        order: 0;
        opacity: 1;
        border-radius: 20px;
    }

    .pie-imagen2 {
        width: 100%;
        height: 30px;
        bottom: 0;
        display: flex;
        flex-flow: row nowrap;
        justify-content: start;
        order: 3;
        padding-bottom: 10px;
        text-align: center;
        left: 20%;
    }

    .dificultad2 {
        position: absolute;
        bottom: 70px;
        left: 520px;
        font-weight: 500;
    }

    .pie-imagen-dif2 {
        position: absolute;
        bottom: 20px;
        left: 480px;
    }

    /*.pie-imagen-dif2 img:last-child,
    .pie-imagen-dif2 img:nth-child(5){
        filter: grayscale(0);
    }*/


    .tit-cant-pers2 {
        position: absolute;
        bottom: 70px;
        left: 690px;
        font-weight: 500;
    }

    .cant-personas2 {
        position: absolute;
        width: 50px;
        bottom: 27px;
        left: 709px;
        text-align: center;
        font-weight: 500;
    }

    .tiempo-escapar2 {
        position: absolute;
        width: 50px;
        bottom: 70px;
        left: 844px;
        font-weight: 500;
    }

    .minutos2 {
        position: absolute;
        bottom: 27px;
        left: 847px;
        font-weight: 500;
    }

    .desc2 {
        display: none;
    }

    .desc2-dsktp {
        position: absolute;
        height: 100%;
        width: 30%;
        top: 25%;
        overflow: hidden;
        right: 320px;
        order: 4;
        text-align: left;
        transition: width 0.5s ease;
    }

    .ver-sala2 {
        position: absolute;
        right: 325px;
        bottom: 30px;
        font-size: 1.5em;
        font-weight: bold;
        padding: 10px 15px;
        border: 3px solid rgb(85, 0, 0);
        color: #bbb;
        background-color: transparent;
        transition: right 0.5s ease;
        pointer-events: all;
        z-index: 9700;
        transition: all .5s ease;
        cursor: pointer;
    }

    .ver-sala2:hover {
        transition: all .5s ease;
        border-color: #9a0000;
        color: #eee;
    }


    /* #endregion Sala 2 */

    /* #region Sala 3 */
    .titulo3 {
        position: absolute;
        width: 100%;
        height: 1.6em;
        order: 1;
        top: 15%;
        left: 320px;
        font-weight: 600;
        font-size: 2em;
    }

    .img-3 {
        position: relative;
        width: 50%;
        min-width: 280px;
        min-height: 450px;
        max-width: 280px;
        background-image: url(media/Sala-67-no-disp.webp);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
        order: 0;
        opacity: 1;
        border-radius: 20px;
    }

    .pie-imagen3 {
        width: 100%;
        height: 30px;
        bottom: 0;
        display: flex;
        flex-flow: row nowrap;
        justify-content: start;
        order: 3;
        padding-bottom: 10px;
        text-align: center;
        left: 20%;
    }

    .dificultad3 {
        position: absolute;
        bottom: 70px;
        left: 360px;
        font-weight: 500;
    }

    .pie-imagen-dif3 {
        position: absolute;
        bottom: 20px;
        left: 320px;
    }

    .pie-imagen-dif3 img:last-child,
    .pie-imagen-dif3 img:nth-child(5) {
        filter: grayscale(1);
    }

    .tit-cant-pers3 {
        position: absolute;
        width: 50px;
        bottom: 70px;
        left: 510px;
        font-weight: 500;
    }

    .cant-personas3 {
        position: absolute;
        width: 50px;
        bottom: 27px;
        left: 531px;
        text-align: center;
        font-weight: 500;

    }

    .tiempo-escapar3 {
        position: absolute;
        width: 50px;
        bottom: 70px;
        left: 650px;
        font-weight: 500;
    }

    .minutos3 {
        position: absolute;
        bottom: 27px;
        left: 650px;
        font-weight: 500;
    }

    .desc3 {
        display: none;
    }

    .desc3-dsktp {
        position: absolute;
        height: 100%;
        width: 30%;
        top: 25%;
        overflow: hidden;
        left: 320px;
        order: 4;
        text-align: left;
        transition: width 0.5s ease;
    }

    .ver-sala3 {
        position: absolute;
        right: 450px;
        bottom: 30px;
        font-size: 1.5em;
        font-weight: bold;
        padding: 10px 15px;
        border: 3px solid rgb(85, 0, 0);
        color: #aaa;
        background-color: transparent;
        transition: 0.3s;
        transition: right 0.5s ease;
        pointer-events: all;
        z-index: 9700;
        transition: all .5s ease;
        cursor: pointer;
    }

    .ver-sala3:hover {
        transition: all .5s ease;
        border-color: #9a0000;
        color: #eee;
    }


    /* #endregion Sala 3 */



    /*#endregion Salas-Desktop*/
    /*#region Reservas*/

    .reservas__container {
        position: relative;
        overflow-y: auto;
        background-image: radial-gradient(transparent, rgb(22, 22, 22) 70%), url(media/1.webp);
        background-size: cover;
        background-position: center center;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        height: 900px;
        min-height: 800px;
        text-align: center;
    }

    .reservas__container-div {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;

    }

    .reservas__h3 {
        position: relative;
        top: 100px;
        font-size: 15ch;
        font-weight: 200;
        line-height: 190px;
        width: 657px;
        margin: auto;
        font-family: BloodLust, Arial, Helvetica, sans-serif;
        color: #9a0000;

    }

    @media screen and (max-width:1800px) {
        .reservas__h3 {
            width: 670px;
        }
    }

    .boton-reserva {
        position: relative;
        border: 4px solid #9a0000;
        background-color: transparent;
        width: 230px;
        height: 80px;
        margin: auto;
        margin-top: 250px;
        transition: all .5s ease;
    }

    .boton-reserva #Botonreserva {
        font-family: BloodLust, Arial, Helvetica, sans-serif;
        
        font-size: 3em;
        font-weight: 300;
        text-align: center;
        text-justify: center;
        text-decoration: none;
        color: #999;
        padding: 12px 19.2px;
        transition: all .5s ease;
        cursor: pointer;
    }

    .boton-reserva:hover {
        transition: all .5s ease;
        border-color: #9a0000;
    }

    .boton-reserva:hover>a {
        transition: all .5s ease;
        border-color: rgb(255, 0, 0);
        color: #aaa;
    }

    #Botonreserva:hover {
        transition: all .5s ease;
        color: #eee;
    }
    
    .lospre{
        display: block;
        font-weight: 500;
        font-size: 1.3rem;
        background-image: linear-gradient(90deg, rgb(22,22,22)40%, transparent, rgb(22,22,22)80%);
        background-color: #2c2c2c;
        pointer-events: none;
        user-select: none;
    }

    /*#endregion*/
    /*#region Como se juega*/

    .como-se-juega {
        position: relative;
        width: 100%;
        max-width: 1400px;
        height: 500px;
        margin: auto;
    }

    .como-se-juega img {
        width: 150px;
        height: auto;
    }

    .escapa img {
        filter: brightness(2);
    }

    .funciona {
        position: absolute;
        width: 100%;
        text-align: center;
        font-weight: 500;
        font-size: 6em;
        font-family: BloodLust, Arial, Helvetica, sans-serif;
        color: #9a0000;

    }

    .investiga {
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

    .resuelve {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }


    .escapa {
        position: absolute;
        top: 50%;
        left: 1400px;
        height: auto;
        transform: translateX(-100%) translateY(-50%);
    }

    .investiga p {
        position: absolute;
        font-size: 2ch;
        text-align: center;
        width: 200px;
        left: -25px;
    }

    .resuelve p {
        position: absolute;
        font-size: 2ch;
        text-align: center;
        width: 224px;
        left: -38px;
    }

    .escapa p {
        position: absolute;
        font-size: 2ch;
        text-align: center;
        width: 230px;
        left: -36px;

    }

    .inv-sala {
        font-size: 2.1ch;
        color: #9a0000;
    }

    .res-ace {
        font-size: 2.1ch;
        color: #9a0000;
    }

    .int-esc {
        font-size: 2.1ch;
        color: #9a0000;
    }

    /*#endregion*/
    /*#region Mapa*/
    .mapa__container {
        position: relative;
        width: 100%;
        height: 900px;
        text-align: start;
    }

    .frase-estamos {
        color: #9a0000;
        font-size: 6em;
        font-weight: 500;
        font-family: BloodLust, Arial, Helvetica, sans-serif;
        text-align: center;
        transform: translateY(33px);
    }

    .mapa__container-direccion {
        position: absolute;
        width: 50%;
        margin-left: 369px;
        font-weight: 500;
        font-size: 1.2em;
        top: 140px;
        margin-bottom: 5px;
        overflow-y: auto;
        transition: all 0.5s ease;
    }

    .mapita {
        margin-top: 70px;
        margin-left: 190px;
        width: 50vw;
        height: 75%;
        transition: all .5s ease;
    }

    @media screen and (max-width:1800px) {

        .mapita {
            scale: .8;
            margin-left: 22px;
            margin-top: 85px;
        }

        .sep__horarios-precios {
            transition: scale 0.5s ease;
            scale: .9;
        }

        .mapa__container-direccion {
            transition: all 0.5s ease;
            margin-left: 88px;
            top: 210px;
            font-size: 1em;


        }
    }

    /*#endregion*/
    /*#region Horarios y Precios*/

    .art__horarios {
        display: block;
        position: absolute;
        width: 300px;
        height: 400px;
        top: 182px;
        right: 190px;
    }

    .art__horarios-p {
        text-align: center;
        width: 100%;
        font-family: BloodLust;
        font-size: 3em;
        color: #9a0000;

    }

    .art__horarios-p-dias {
        position: absolute;
        width: 25%;
        height: 100%;
        left: 0;
        white-space: pre-line;
        text-align: left;
        margin-left: 25px;
        line-height: 35px;
        top: 27px;
    }

    .art__horarios-p-horas {
        position: absolute;
        width: 91px;
        height: 250px;
        right: 0px;
        white-space: pre-line;
        text-align: center;
        margin-left: 1px;
        line-height: 35px;
        top: 27px;
    }

    .art__precios {
        position: absolute;
        display: flex;
        flex-direction: column;
        width: 320px;
        right: 171px;
        white-space: pre;
        top: 544px;
    }

    .art__precios-p {
        position: absolute;
        text-align: center;
        width: 100%;
        font-family: BloodLust;
        font-size: 3em;
        color: #9a0000;
    }

    .art__precios-p-personas {
        position: absolute;
        width: 25%;
        height: 100%;
        left: 0;
        white-space: pre-line;
        text-align: left;
        margin-top: 30px;
        margin-left: 25px;
        line-height: 35px;
    }

    .art__precios-p-precios {
        position: absolute;
        width: 25%;
        height: 100%;
        right: 0;
        white-space: pre-line;
        text-align: center;
        margin-top: 30px;
        margin-left: 10px;
        line-height: 35px;
    }


    .sep__horarios-precios {
        position: absolute;
        background-color: #9a0000;
        height: 658px;
        width: 4px;
        border-radius: 50%;
        right: 647px;
        top: 525px;
        transform: translateY(-50%);
        transition: scale 0.5s ease;
    }

    /*#endregion*/
    /*#region Footer*/

    footer img {
        width: 20px;
        height: 20px;
    }


    footer {
        position: relative;
        height: 250px;
        width: 100%;
        background-image: linear-gradient(rgba(22, 22, 22, .8), rgba(22, 22, 22, .8)), url(media/footer3.webp);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        
        transition: all .3s ease;
    }

    .copy {
        position: absolute;
        top: 204px;
        left: 283px;
        text-align: left;
        transform: translateX(-50%);
        pointer-events: none;
        user-select: none;
    }

    .author {
        position: absolute;
        left: 0;
        bottom: 0;
        opacity: .03;
        pointer-events: none;
        user-select: none;
    }

    .hianooto {
        position: absolute;
        bottom: 5px;
        right: 5px;
        opacity: .2;
        pointer-events: none;
        user-select: none;
    }

    .div__logo {
        position: absolute;
        left: 171px;
        top: 38px;
    }

    .div__logo img {
        width: 233px;
        height: auto;
        pointer-events: none;
        user-select: none;
    }

    .div__interes {
        position: absolute;
        left: 42.7%;
        top: 20px;
    }

    .div__interes p:first-child {
        text-decoration: underline;
        pointer-events: none;
        user-select: none;
    }

    .div__interes p {
        margin-bottom: 10px;
        text-align: left;
    }

    .div__interes ul {
        list-style: square;
        padding-left: 20px;
    }

    .div__interes ul li a {
        text-decoration: none;
        
        transition: all .5s ease;
    }

    .div__interes ul li:hover,
    .div__interes ul li a:hover {
        transition: all .5s ease;
        color: #9a0000;
    }

    .div__direccion {
        position: absolute;
        left: 42.7%;
        top: 150px;
    }

    .div__direccion p:first-child {
        text-decoration: underline;
        pointer-events: none;
        user-select: none;
    }

    .div__redes {
        position: absolute;
        right: 460px;
        top: 20px;
    }

    .div__redes p {
        text-decoration: underline;
        margin-bottom: 10px;
        pointer-events: none;
        user-select: none;
    }

    .div__redes img {
        transform: translateY(25%);
        margin-right: 15px;
        pointer-events: none;
        user-select: none;
    }

    .div__redes ul {
        list-style: none;
    }

    .div__redes ul li a {
        text-decoration: none;
        
        transition: all .5s ease;
    }

    .div__redes ul li img {
        filter: grayscale(1);
    }

    .div__redes ul li img:last-child {
        filter: brightness(0.2);
    }

    .div__redes ul li:hover>img,
    .div__redes ul li:hover>a {
        filter: grayscale(0);
        transition: all .5s ease;
        color: #9a0000
    }

    .div__redes ul li:last-child:hover>img,
    .div__redes ul li:last-child:hover>a {
        filter: brightness(5);
    }

    .div__contacto {
        position: absolute;
        right: 240px;
        top: 150px;
    }

    .div__contacto p:first-child {
        text-decoration: underline;
        pointer-events: none;
        user-select: none;
    }

    .div__contacto p:nth-child(2) {
        display: inline-block;
        padding-right: 40px;
        pointer-events: none;
        user-select: none;
    }

    .div__contacto p:nth-child(3) {
        display: inline;
    }

    .div__contacto p:nth-child(4) {
        display: inline-block;
        padding-right: 15px;
        pointer-events: none;
        user-select: none;
    }

    .div__contacto p:nth-child(5) {
        display: inline-block;
    }



    /*#endregion Footer*/
}

/*#endregion 16:9*/

