/* VARIABLES Y REGLAS BASE */
:root {
    --colorBar: #d61a22;
    --fuente: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    --colorFondo: rgb(250, 250, 250);
    --fondoFooter: #363636;
}

.material-symbols-outlined {
    font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}

* {
    margin: 0;
    padding: 0;
    font-family: var(--fuente);
    font-weight: 400;
    transition: all 300ms;
    font-display: swap;
}

body {
    background-color: var(--colorFondo);
}

/* CONTENEDOR DE INFORMACION */
.contenedor_info {
    background-color: var(--colorBar);
    padding: 5px 0;
}

.contenedor_info a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    padding: 0 10px;
}

/* NAVEGACIÓN */
.nav_container {
    background-color: white;
    padding: 10px 0;
    box-shadow: 0 0 10px 0 rgba(255, 0, 0, 0.315);
    display: flex;
}

.nav_container.sticky {
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.951);
}

.nav_container nav {
    display: flex;
}

.nav_content,
.imgNavContainer,
.nav_container nav {
    display: flex;
}

#menuICON {
    display: none;
}

.img_nav {
    margin-left: 10px;
    width: 100px;
}

.img_nav.sticky {
    width: 60px;
}

.img_nav img {
    width: 100%;
}

.options_nav {
    margin: auto 15px;
}

.options_nav a {
    position: relative;
    font-size: 25px;
    margin: 0 15px;
    text-decoration: none;
    color: rgb(27, 27, 27);
}

.options_nav a:hover {
    color: var(--colorBar);
    text-decoration: none;
}

.options_nav a::before {
    content: "";
    position: absolute;
    bottom: -2px;
    width: 100%;
    height: 1.4px;
    background-color: var(--colorBar);
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.options_nav a:hover::before {
    transform: scaleX(1);
}

.navA.sticky {
    font-size: 20px;
}

/* MENU DIARIO */
.contenedor_Principal {
    margin: auto;
}

.menuDia_container {
    margin: 40px 0;
    text-align: center;
}

.titleMenuDia {
    font-size: 30px;
    margin-top: 30px;
    text-align: center;
    position: relative;
    color: var(--colorBar);
}

.titleMenuDia h2:before,
.title_gal h2:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 95%;
    height: 3px;
    background-color: var(--colorBar);
    z-index: -1;
}

.titleMenuDia h2 span,
.title_gal h2 span {
    background: var(--colorFondo);
    padding: 0 15px;
}

.fechaMenuDia h2 {
    font-size: 25px;
    color: var(--colorBar);
}

.preciosMenu_container {
    display: inline-block;
    padding: 5px 10px;
    border-left: 3px solid #ff8b91;
    border-right: 3px solid #ff8b91;
    font-size: 15px;
    color: rgba(136, 136, 136, 0.808);
}

.categ_container {
    display: block;
    margin: 20px auto;
    position: relative;
    z-index: 0;
}

/* OVERLAY Y ELEMENTOS OCULTOS */
.overlay-container {
    display: block;
    color: var(--colorBar);
    font-weight: 700;
    font-size: 4vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(250, 250, 250, 0.7);
    width: 100%;
    height: 100%;
    text-align: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 10px 0;
}

.overlay-container.ocultar {
    display: none;
}

.findesemana {
    display: none;
}

.findesemana.mostrarFinde {
    display: block;
}

.textoOverlay {
    display: none;
}

.textoOverlay.mostrarTexto {
    display: block;
    margin-top: 30px;
}

/* BOTONES DE DESAYUNO Y GALERÍA */
.verDesayunoBTN,
.btn_verGal {
    margin: 25px 0;
    text-align: center;
}

.verDesayunoBTN button,
.btn_verGal button {
    padding: 20px 70px;
    border: 2px solid var(--colorBar);
    border-radius: 50px;
    cursor: pointer;
}

.verDesayunoBTN button {
    background-color: rgba(255, 255, 255, 0.7);
}

.btn_verGal button {
    background-color: transparent;
}

.verDesayunoBTN a,
.btn_verGal a {
    font-size: 25px;
    text-decoration: none;
    color: var(--colorBar);
}

.verDesayunoBTN button:hover,
.btn_verGal button:hover {
    transform: scale(1.1);
    background-color: var(--colorBar);
    color: var(--colorFondo);
}

.verDesayunoBTN button:hover a,
.btn_verGal button:hover a {
    color: var(--colorFondo);
}

/* CATEGORÍAS */
.categ1 {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

#categ2 {
    margin-top: 100px;
}

.categ_cont {
    flex-basis: 33.33%;
    align-items: center;
    min-width: 400px;
}

.categ_cont h2 {
    font-size: 42px;
    color: #d61a23;
    font-weight: 400;
    margin-top: 10px;
}

.categ_cont h3 {
    font-size: 25px;
    color: rgba(48, 48, 48, 0.891);
}

.contenido_categ img {
    width: 33px;
}

/* GALERÍA */
.galeria_containter {
    margin: 50px 0;
}

.title_gal {
    font-size: 30px;
    margin-top: 30px;
    text-align: center;
    position: relative;
    color: var(--colorBar);
}

.galeria {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0 50px;
}

.contIMGgal {
    min-width: 320px;
    width: calc(31.33% - 10px);
    margin: 5px;
}

.contIMGgal img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    cursor: pointer;
}

.contIMGgal img:hover {
    opacity: 0.7;
}

.btn_verGal {
    text-align: center;
}

/* POPUP GALERÍA */
.popup_galeria {
    position: fixed;
    z-index: 3;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    overflow: auto;
    background-color: rgba(49, 49, 49, 0.8);
    display: none;
}

.popup_galeriaContent {
    width: 100%;
    height: 100%;
}

.closePopupIMG span {
    position: fixed;
    top: 25px;
    right: 25px;
    color: #fff;
    cursor: pointer;
    font-size: 100px;
}

.closePopupIMG span:hover {
    transform: rotate(180deg);
    color: red;
}

.centrarVerticalPopupImg {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.popupIMG {
    margin: auto;
    max-width: 95%;
    max-height: 90%;
    height: 90%;
    border-radius: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.popupIMG img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 5px;
}

.tituloRelleno {
    font-size: 30px;
    margin-top: 30px;
    text-align: center;
    position: relative;
    color: var(--colorBar);
}

div.p_relleno {
    display: flex;
    text-align: center;
    flex-wrap: wrap;
}

div.p_relleno div.pregunta {
    margin: 20px;
    min-width: 380px;
    flex: 1 1 calc(50% - 40px);
}

div.p_relleno h2 {
    font-size: 35px;
    color: var(--colorBar);
}

div.p_relleno span {
    font-weight: 700;
    color: var(--colorBar);
}

div.p_relleno div.pregunta div {
    margin: 10px 0;
}

div.p_relleno div.pregunta div h3 {
    font-weight: 500;
    font-size: 25px;
}

div.p_relleno div.pregunta p {
    font-size: 20px;
    color: #363636;
}

#botonPopup {
    font-size: 20px;
    padding: 20px 25px;
    text-decoration: none;
    color: var(--colorBar);
    border: 2px solid var(--colorBar);
    border-radius: 50px;
    background-color: transparent;
    cursor: pointer;
    margin: 15px 0;
}

#botonPopup:hover {
    transform: scale(1.1);
    background-color: var(--colorBar);
    color: var(--colorFondo);
}

.carrusel {
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    overflow: hidden;
    width: 90%;
    justify-content: center;
    align-items: center;
}

/* BOTONES (BTNS) */
.btnStatics {
    margin: 10px;
    position: fixed;
    bottom: 0;
    right: 0;
}

.btnGPS,
.btnIMG,
.btnResena {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    text-align: center;
    background-color: #eeeeee;
    padding: 15px;
    border: 3px solid #ee3616;
    border-radius: 100%;
    z-index: 1;
    width: 35px;
    height: 35px;
}

.btnIMG input[type="file"] {
    display: none;
}

.btnResena {
    animation: btnResenaAnimation 550ms infinite alternate;
}

.btnIMG span,
.btnResena i {
    font-size: 35px;
    color: #ee3616;
    cursor: pointer;
}

.btnGPS:hover,
.btnIMG:hover {
    transform: scale(1.2);
}

@keyframes btnResenaAnimation {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.btnStatics img {
    width: 35px;
}

/* FOOTER */
.footer {
    background-color: var(--fondoFooter);
    padding: 20px;
    border-top: 5px solid #d4d4d4;
    color: white;
}

.contentFooter {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.map {
    width: 650px;
    height: 450px;
    margin: 20px 0;
}

.map iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    border: 5px solid var(--colorBar);
}

.info {
    margin: 10px 25px;
}

.info div {
    margin: 10px 0;
}

.title h1,
.title h2 {
    font-weight: 600;
    font-size: 45px;
}

.address a {
    color: white;
    text-decoration: none;
}

.address h3 {
    font-weight: 500;
    font-size: 25px;
}

.tlf h3 {
    color: white;
}

.tlf a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 23px;
}

.horario h2 {
    font-size: 25px;
    font-weight: 600;
}

.horario h3 {
    margin: 0 5px;
}

.abierto {
    color: rgb(0, 255, 0);
}

.cerrado {
    color: var(--colorBar);
}

.logoFooter {
    margin: auto 0;
    width: 450px;
}

.logoFooter img {
    width: 100%;
}

.copyright {
    text-align: center;
    font-size: 2vh;
    background-color: var(--colorBar);
    color: white;
    padding: 15px;
    display: block;
    justify-content: center;
}

copyright a {
    margin-left: 5px;
    color: white;
}

/* SLIDE PATROCINADORES */
.slidePatrocinadores_container,
.slidePatrocinadores_container2 {
    width: 100%;
    height: auto;
    margin: auto;
    overflow: hidden;
}

.slidePatrocinadores_container2 {
    display: flex;
    justify-content: flex-end;
}

.slidePatrocinadores_content {
    display: inline-flex;
    height: 100%;
    width: auto;
    animation: slider 100s infinite linear;
}

.slidePatrocinadores_content2 {
    display: inline-flex;
    height: 100%;
    width: auto;
    animation: slider2 100s infinite linear;
}

.slidePatrocinadores_container .slide,
.slidePatrocinadores_container2 .slide2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
}

.slidePatrocinadores_container .slide img,
.slidePatrocinadores_container2 .slide2 img {
    width: max-content;
    max-width: 200px;
    height: max-content;
    max-height: 60px;
}

@keyframes slider {
    to {
        transform: translateX(-100%);
    }
}

@keyframes slider2 {
    to {
        transform: translateX(100%);
    }
}

@media (max-width: 1024px) {
    #menuICON {
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 50px;
        margin: 0 25px;
        color: var(--colorBar);
        cursor: pointer;
    }

    .contenedor_info {
        position: sticky;
        z-index: 2;
    }

    .nav_container {
        display: block;
        padding: 0;
        box-shadow: none;
    }

    .nav_container.sticky {
        padding: 0;
    }

    .nav_container nav {
        display: none;
    }

    .nav_container nav.show {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        text-align: center;
        z-index: 1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: white;
    }

    .options_nav {
        margin: 0;
    }

    .options_nav a {
        display: block;
        font-size: 50px;
        margin: 25px 0;
        color: var(--colorBar);
    }

    .navA.sticky {
        font-size: 50px;
    }

    .options_nav a::before {
        display: none;
    }

    .imgNavContainer {
        background-color: white;
        padding: 10px 0;
        box-shadow: 0 0 10px 0 rgba(255, 0, 0, 0.315);
        width: 100%;
        z-index: 2;
        position: relative;
        height: 85px;
    }

    .img_nav {
        margin: auto;
        z-index: 2;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .img_nav img {
        z-index: 2;
    }

    .img_nav.sticky {
        width: 100px;
    }
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

::-webkit-scrollbar-track {
    background: #cecece;
}

::-webkit-scrollbar-thumb {
    background: var(--colorBar);
}

::-webkit-scrollbar-thumb:hover {
    background: #ff2d2d;
}