: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;
}

body {
    /* height: 200vh; */
    background-color: var(--colorFondo);
    /* height: 100%; */
}

html {
    height: 100%;
}

/* CONENEDOR INFORMACION ARRIBA DEL TODO */

.contenedor_info {
    background-color: var(--colorBar);
    padding: 5px 0;
}

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

/* CONTENDOR NAV  */
.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%;
    padding: 10px 0;
    top: 0;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.951);
}

.nav_content {
    display: flex;
}

.img_nav.sticky {
    width: 60px;
}

.nav_container nav {
    display: flex;
}

.imgNavContainer {
    display: flex;
}

#menuICON {
    display: none;
}

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

.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);
}

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

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

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

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

/* A PARTIR DE AQUI SE EDITA */

.contenedor_Principal {
    height: 100%;
}

/* .carta_desayunos {
        margin: 20px auto;
        padding: 0 10px;
        height: 100%;

}

.carta_desayunos::before {
        content: "";
        background-image: url(../img/logo_negro.svg);
        background-repeat: no-repeat;
        background-size: 95%;
        background-position: center;
        background-position-y: 100%;
        opacity: 0.1;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height:100%;
        z-index: -1;
} */
.carta_desayunos {
    margin: 20px auto;
    padding: 0 10px;
    position: relative;
    /* Agrega posición relativa para permitir que el pseudo-elemento sea posicionado absolutamente dentro de este contenedor */
}

.carta_desayunos::before {
    content: "";
    background-image: url(../../img/logo_negro.svg);
    background-repeat: no-repeat;
    background-size: 95%;
    background-position: center;
    opacity: 0.1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Usa 100vh para ocupar todo el alto de la pantalla */
    z-index: -1;
}

.centrarTEXTO {
    text-align: center;
}

table {
    /* width: 70%; */
    margin: 30px auto;
}

td {
    padding: 5px 10px;
}
th {
    padding: 10px;
}
#especial::before {
    content: "\2B50 ";
}

#especial {
    color: var(--colorBar);
    font-weight: 500;
}

.parteARRIBAtabla {
    font-size: 2.4rem;
    color: var(--colorBar);
    text-decoration: underline;
}

.parteABAJOtabla {
    font-size: 1.5rem;
}

.parteABAJOtabla .nombreTABLAS {
    min-width: 260px;
}

/* HASTA AQUI SE EDITA BROTHER */

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

.btnGPS,
.btnIMG {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.btnGPS {
    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 {
    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 span {
    font-size: 35px;
    color: #ee3616;
    cursor: pointer;
}

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

.btnStatics img {
    width: 35px;
}

/* FOOTER */
.footer {
    /* border-top: 5px solid rgb(187, 187, 187); */
    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 #d61a22;
}

.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;
}

/* SLIDER EMPRESAS */
.slidePatrocinadores_container {
    width: 100%;
    height: auto;
    margin: auto;
    overflow: hidden;
}

.slidePatrocinadores_content {
    /* display: flex; */
    width: calc(200px * 14);
    display: inline-flex;
    -moz-animation: slider 50000ms infinite linear;
    -webkit-animation: slider 50000ms infinite linear;
    animation: slider 50000ms infinite linear;
    height: 100%;
    width: auto;
}

.slidePatrocinadores_container .slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin: 0 10px;
}

.slidePatrocinadores_container .slide img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100px;
}

@keyframes slider {
    to {
        -moz-transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

/* MARCA */
.marcaContainer {
    background-color: #2e0b0d;
    font-size: 23px;
    padding: 15px;
    text-align: center;
}

.marcaContainer p {
    color: white;
    text-shadow: 0 0 10px #ff4136, 0 0 20px #ff4136, 0 0 30px #ff4136,
        0 0 40px #ff4136, 0 0 50px #ff4136, 0 0 60px #ff4136, 0 0 70px #ff4136;
    animation: parpadear 2s infinite;
}

@keyframes parpadear {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.marcaContainer a {
    /* text-decoration: none; */
    color: white;
    font-weight: 600;
}

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

/* Track */
::-webkit-scrollbar-track {
    background: #cecece;
}

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

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #ff2d2d;
}

@media (max-width: 1400px) {
    .parteARRIBAtabla {
        font-size: 1.4rem;
        color: var(--colorBar);
    }

    .parteABAJOtabla {
        font-size: 1rem;
    }

    .title h1,
    .title h2 {
        font-size: 30px;
    }

    .address h3,
    .tlf a {
        font-size: 20px;
    }

    .horario h3 {
        font-size: 18px;
    }

    .map {
        width: 450px;
        height: 350px;
        margin: auto 0;
    }

    .map iframe {
        height: 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 {
        padding: 0;
        box-shadow: none;
        padding: none;
        display: block;
    }

    .nav_container.sticky {
        padding: 0;
    }

    .nav_container nav {
        display: none;
    }

    .nav_container nav.show {
        background-color: white;

        display: flex;
        /*DEBE IR EN FLEX PARA SER MOSTRADO*/
        justify-content: center;
        align-items: center;
        position: fixed;
        text-align: center;
        z-index: 1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .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%);

        /* width: 100px; */
    }

    .img_nav img {
        z-index: 2;
    }

    .img_nav.sticky {
        width: 100px;
    }
    th{
        padding: 5px;
    }

    .contentFooter {
        display: block;
    }

    .map {
        width: 90%;
        margin: auto;
        height: 350px;
    }

    .info {
        text-align: center;
    }

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

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

    .tlf i,
    .tlf a {
        font-size: 25px;
    }

    .horario h2 {
        font-size: 27px;
    }

    .horario h3 {
        font-size: 22px;
    }

    .logoFooter {
        margin: auto;
        width: 300px;
    }
}

@media (max-width: 800px) {
    .contenedor_info {
        /* display: flex; */
        display: block;
    }

    .contenedor_info a {
        display: block;

        font-size: 15px;
    }

    .tlf i {
        font-size: 15px;
    }

    td {
        padding: 5px 2px;
    }

    .parteARRIBAtabla {
        font-size: 0.8rem;
        color: var(--colorBar);
    }

    .parteABAJOtabla {
        font-size: 0.6rem;
    }

    .parteABAJOtabla .nombreTABLAS {
        min-width: 100px;
    }

    .map {
        width: 95%;
        margin: auto;
        height: 350px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .map iframe {
        width: 100%;
        height: 100%;
        margin: auto;
    }

    .title h1,
    .title h2 {
        font-size: 30px;
    }

    .address h3 {
        font-size: 20px;
    }

    .tlf i,
    .tlf a {
        font-size: 20px;
    }

    .horario h2 {
        font-size: 27px;
    }

    .horario h3 {
        font-size: 22px;
    }

    .logoFooter {
        margin: auto;
        width: 300px;
    }

    .slidePatrocinadores_container .slide img {
        max-height: 80px;
    }
}
