.cabezalDesktop {
    height: 90px;
    z-index: 999;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cabezalMobile {
    display: none;
    width: 100%;
    height: 90px;
    position: fixed;
    background-color: white;
    z-index: 9999;
    position: fixed;
}

.divLogoMobile,
.divMenuHamb {
    position: relative;
    width: 50%;
    display: inline-block;
}

.divMenuHamb {
    text-align: right;
}

.contenedorMenuMobile {
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.logoMobile {
    width: 120px;
}

.logoHamb {
    width: 30px;
}

.logoCabezal {
    width: 120px;
    height: 45px;
    background-image: url('LogoInicio.png');
}

.contenedorLogo {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: left;
    padding-left: 40px;
}

.contenedorMenu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    min-width: 710px;
}

.contenedorHorarios {
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 40px;
}

.contenedorHorarios2 {
    width: 25%;
    display: none;
    align-items: center;
    justify-content: end;
    padding-right: 14px;
    min-width: 240px;
    position: relative;
}

.textoMenu {
    color: #FFF;
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 20px;
    font-family: 'futumd';
    font-weight: 400;
    line-height: 18pt;
    text-transform: uppercase;
    cursor: pointer;
}

.textoMenu a {
    color: #FFF;
}

.textoMenu:hover {
    text-decoration: underline;
    /* Subrayado básico */
    text-decoration-color: #FFF;
    /* Color del subrayado */
    text-decoration-thickness: 2px;
    /* Grosor del subrayado */
    text-underline-offset: 5px;
}

.divisorFechaHora {
    margin-left: 10px;
    margin-right: 10px;
}

.textoAbierto {
    color: #FFF;
    display: inline-block;
    font-size: 14px;
    font-family: 'futuhv';
    font-weight: 400;
    text-transform: uppercase;
}

.textoAbiertoGrande {
    color: #1D1D1F !important;
}

.textoHora {
    color: #FFF;
    display: inline-block;
    font-family: 'futumd';
}

.horarioApagado {
    background-color: #FFF;
    border-radius: 25px;
    padding: 25px;
    margin-top: 191px;
    border: solid 1px black;
}

.divsorHorario {
    position: relative;
    height: 30px;
}

.divsorHorarioMini {
    position: relative;
    height: 15px;
}

.localesCabezalGrande {
    font-family: 'futuhv';
    line-height: 22px;
    font-size: 14px;
}

.horasLocalesCabezalGrande {
    float: right;
    margin-right: 10px;
    font-family: 'futumd';
    font-size: 14px;
    line-height: 22px;
}

.menuSelected {
    text-decoration: underline;
    /* Subrayado básico */
    text-decoration-color: #1D1D1F;
    /* Color del subrayado */
    text-decoration-thickness: 2px;
    /* Grosor del subrayado */
    text-underline-offset: 5px;
}

.menu-container {
    position: relative;
    width: 100%;
    background: #333;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}


/* Icono hamburguesa */

.menu-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}


/* Líneas de la hamburguesa */

.bar {
    position: absolute;
    width: 30px;
    height: 4px;
    background: #1D1D1F;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    right: 0;
    top: 25px;
}

.bar:nth-child(1) {
    transform: translateY(-10px);
}

.bar:nth-child(2) {
    opacity: 1;
}

.bar:nth-child(3) {
    transform: translateY(10px);
}


/* Animación a "X" */

.contMenuHamburClick.active .bar:nth-child(1) {
    transform: rotate(45deg);
}

.contMenuHamburClick.active .bar:nth-child(2) {
    opacity: 0;
}

.contMenuHamburClick.active .bar:nth-child(3) {
    transform: rotate(-45deg);
}


/* Menú desplegable */

.menu {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: #FFF;
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    height: 100vh;
}

.menu li {
    padding: 15px;
    text-align: center;
}

.menu li a {
    color: #1D1D1F;
    text-decoration: none;
    display: block;
    font-family: 'futubk';
    font-size: 20pt;
    font-weight: 600;
}


/* Menú desplegado */

.menu.open {
    max-height: 100vh;
    /* Ajustar según el contenido */
}

.contMenuHamburClick {
    height: 50px;
    width: 50px;
    right: 0;
    position: absolute;
    top: -25px;
}

.cabezalMobileAcomodador {
    height: 100px;
    position: relative;
    display: none;
}

.cabezalMobileAcomodador {
    display: none !important;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.progress-bar {
    position: relative;
    width: 100vw;
    height: 4px;
    background: #E10000;
    border-radius: 2px;
    overflow: hidden;
}

.progress {
    position: absolute;
    height: 100%;
    width: 300px;
    /* tamaño de la "carga" */
    background: #FFDCDC;
    border-radius: 2px;
    animation: loaderMove 1.5s infinite;
}

@keyframes loaderMove {
    0% {
        left: -30%;
    }

    100% {
        left: 100%;
    }
}

.loaderGif {
    position: absolute;
    z-index: 1;
    width: 100px;
}

@media only screen and (max-width: 1094px) {
    .textoMenu {
        font-size: 18px;
    }

    .contenedorHorarios {
        padding-right: 15px;
    }

    .contenedorLogo {
        width: fit-content;
        padding-left: 15px;
    }

    .contenedorHorarios2 {
        position: absolute;
        right: 0px;
    }
}

@media only screen and (max-width: 980px) {
    .cabezalDesktop {
        display: none;
    }

    .cabezalMobile {
        display: block;
    }

    .cabezalMobileAcomodador {
        display: block;
    }
}