@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.cdnfonts.com/css/glacial-indifference-2");
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
}

body {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
}
body header {
  width: 100%;
  height: 99vh;
  background-image: url(/img/resto/header-v2.png);
  background-size: contain;
  display: flex;
}
body header aside {
  width: 5%;
  height: 100%;
  background-color: #57213B;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  border-right: 1px solid #fff;
  z-index: 2;
}
body header aside .menu-hamburguesa,
body header aside .menu-redes {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}
body header aside .menu-hamburguesa a,
body header aside .menu-redes a {
  color: #fff;
}
body header .menu-escondido {
  width: 95%;
  height: 100vh;
  margin-left: 5%;
  background-color: #333;
  background-image: url(/img/resto/fondo-emerg-op.png);
  background-size: cover;
  background-position: 100%;
  transform: translateX(-100%);
  position: fixed;
  z-index: 1;
  /* Ocultar el contenido que sobresale */
  overflow: hidden;
  /* Transición suave para la expansión */
  transition: transform 1s ease-in-out;
  /* opacity: .9; */
}
body header .menu-escondido .nav-escondido {
  width: 100%;
  height: 100%;
}
body header .menu-escondido .nav-escondido ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body header .menu-escondido .nav-escondido ul li {
  width: 100%;
  /* Para que ocupe todo el ancho del menú */
  text-align: center;
  /* Centrar texto en el menú */
  margin: 10px 0;
  /* Espacio entre los elementos del menú */
  display: flex;
}
body header .menu-escondido .nav-escondido ul li a {
  width: 100%;
  display: block;
  padding: 10px 0;
  font-size: 28px;
  color: #fff;
  text-align: center;
  /* Alinear texto a la izquierda en el menú expandido */
}
body header .menu-escondido .nav-escondido ul li a:hover {
  color: #57213B;
}
body header .menu-escondido .nav-escondido ul li:hover {
  color: #57213B;
}
body header .menu-escondido .nav-escondido ul .redes {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  padding: 0 20px;
  align-items: center;
  font-size: 28px;
  color: #fff;
}
body header .menu-escondido .nav-escondido ul .redes a {
  font-size: 22px;
}
body header .menu-escondido .nav-escondido ul .redes i {
  margin-left: 10px;
  font-size: 20px;
}
body header .menu-escondido .nav-escondido ul .separador {
  width: 10%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 10px 0;
  /* Espacio entre los elementos del menú */
}
body header .menu-escondido.expandido {
  /* Mostrar el menú al expandir */
  transform: translateX(0);
}
body main {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
body main .presentacion {
  width: 100%;
  height: 40vh;
  background-color: #57213B;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
body main .presentacion .presentacion-arriba {
  width: 60%;
  text-align: center;
  color: #fff;
  font-size: 35px;
}
body main .presentacion .presentacion-abajo {
  width: 60%;
  text-align: center;
  color: #fff;
  font-size: 35px;
  font-style: italic;
}
body main .carrusel {
  width: 100%;
  height: 40vh;
  display: flex;
  justify-content: center;
}
body main .carrusel .img-content {
  width: 95%;
  height: auto;
  margin: auto;
  overflow: hidden;
  margin-left: 5%;
}
body main .carrusel .img-content .slider-inf {
  display: flex;
  -moz-column-gap: 70px;
       column-gap: 70px;
  animation: scroll 35s linear infinite;
  -webkit-animation: scroll 50s linear infinite;
  width: 3500px;
}
body main .carrusel .img-content .slider-inf .img-content-img {
  width: 350px;
  height: 350px;
  display: flex;
  align-items: center;
}
body main .carrusel .img-content .slider-inf .img-content-img img {
  width: 100%;
}
body main .visita-catalogo {
  width: 95%;
  height: -moz-fit-content;
  height: fit-content;
  margin-left: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}
body main .visita-catalogo img {
  width: 100%;
}
body main .visita-catalogo .texto-catalogo {
  position: absolute;
  font-family: "Glacial Indifference", sans-serif;
  color: #353134;
}
body main .visita-catalogo .texto-catalogo .arriba {
  text-align: start;
  font-size: 60px;
  padding-left: 10px;
}
body main .visita-catalogo .texto-catalogo .centro {
  font-size: 220px;
  line-height: 0.8;
}
body main .visita-catalogo .texto-catalogo .abajo {
  text-align: end;
  font-size: 50px;
  padding-right: 10px;
}
body footer {
  width: 100%;
  height: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #57213B;
}
body footer p {
  font-size: 20px;
  color: #fff;
  font-family: "Glacial Indifference", sans-serif;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1000px);
  }
}
@media only screen and (max-width: 400px) {
  body {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
  }
  body header {
    width: 100%;
    height: 35vh;
    background-image: url(/img/resto/header.png);
    background-position-y: 10vh;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    background-color: #57213B;
  }
  body header aside {
    width: 100%;
    height: 10vh;
    background-color: #57213B;
    position: initial;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-right: 1px solid #fff;
    z-index: 2;
  }
  body header aside .menu-redes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
  }
  body header aside .menu-redes a {
    color: #fff;
  }
  body header .menu-escondido {
    width: 100%;
    height: 100vh;
    margin-left: 0;
    background-color: #333;
    background-image: url(/img/resto/fondo-emerg-op.png);
    background-size: cover;
    background-position: 100%;
    transform: translateY(-100%);
    position: fixed;
    z-index: 1;
    /* Ocultar el contenido que sobresale */
    overflow: hidden;
    /* Transición suave para la expansión */
    transition: transform 1s ease-in-out;
    /* opacity: .9; */
  }
  body header .menu-escondido .nav-escondido {
    width: 100%;
    height: 100%;
  }
  body header .menu-escondido .nav-escondido ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  body header .menu-escondido .nav-escondido ul li {
    width: 100%;
    /* Para que ocupe todo el ancho del menú */
    text-align: center;
    /* Centrar texto en el menú */
    margin: 10px 0;
    /* Espacio entre los elementos del menú */
    display: flex;
  }
  body header .menu-escondido .nav-escondido ul li a {
    width: 100%;
    display: block;
    padding: 10px 0;
    font-size: 28px;
    color: #fff;
    text-align: center;
    /* Alinear texto a la izquierda en el menú expandido */
  }
  body header .menu-escondido .nav-escondido ul li a:hover {
    color: #57213B;
  }
  body header .menu-escondido .nav-escondido ul li:hover {
    color: #57213B;
  }
  body header .menu-escondido .nav-escondido ul .redes {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    padding: 0 20px;
    align-items: center;
    font-size: 28px;
    color: #fff;
  }
  body header .menu-escondido .nav-escondido ul .redes a {
    font-size: 22px;
  }
  body header .menu-escondido .nav-escondido ul .redes i {
    margin-left: 10px;
    font-size: 20px;
  }
  body header .menu-escondido .nav-escondido ul .separador {
    width: 35%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
    /* Espacio entre los elementos del menú */
  }
  body header .menu-escondido.expandido {
    /* Mostrar el menú al expandir */
    transform: translateY(0);
  }
  body main {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
  body main .presentacion {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    background-color: #57213B;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px 0;
  }
  body main .presentacion .presentacion-arriba {
    width: 90%;
    text-align: center;
    color: #fff;
    font-size: 15px;
  }
  body main .presentacion .presentacion-abajo {
    width: 90%;
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-style: italic;
  }
  body main .carrusel {
    width: 100%;
    height: 30vh;
    display: flex;
    justify-content: center;
  }
  body main .carrusel .img-content {
    width: 95%;
    height: auto;
    margin: auto;
    overflow: hidden;
    margin-left: 5%;
  }
  body main .carrusel .img-content .slider-inf {
    display: flex;
    -moz-column-gap: 30px;
         column-gap: 30px;
    animation: scroll 35s linear infinite;
    -webkit-animation: scroll 50s linear infinite;
    width: 3500px;
  }
  body main .carrusel .img-content .slider-inf .img-content-img {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
  }
  body main .carrusel .img-content .slider-inf .img-content-img img {
    width: 100%;
  }
  body main .visita-catalogo {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body main .visita-catalogo img {
    width: 100%;
  }
  body main .visita-catalogo .texto-catalogo {
    position: absolute;
    font-family: "Glacial Indifference", sans-serif;
    color: #353134;
  }
  body main .visita-catalogo .texto-catalogo .arriba {
    text-align: start;
    font-size: 20px;
    padding-left: 10px;
  }
  body main .visita-catalogo .texto-catalogo .centro {
    font-size: 70px;
    line-height: 0.8;
  }
  body main .visita-catalogo .texto-catalogo .abajo {
    text-align: end;
    font-size: 20px;
    padding-right: 10px;
  }
  body footer {
    width: 100%;
    height: 4vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #57213B;
  }
  body footer p {
    font-size: 12px;
    color: #fff;
    font-family: "Glacial Indifference", sans-serif;
  }
}
@media only screen and (min-width: 401px) and (max-width: 576px) {
  body {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
  }
  body header {
    width: 100%;
    min-height: 34vh;
    max-height: 44vh;
    background-image: url(/img/resto/header.png);
    background-position-y: 10vh;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    background-color: #57213B;
  }
  body header aside {
    width: 100%;
    height: 10vh;
    background-color: #57213B;
    position: initial;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-right: 1px solid #fff;
    z-index: 2;
  }
  body header aside .menu-redes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
  }
  body header aside .menu-redes a {
    color: #fff;
  }
  body header .menu-escondido {
    width: 100%;
    height: 100vh;
    margin-left: 0;
    background-color: #333;
    background-image: url(/img/resto/fondo-emerg-op.png);
    background-size: cover;
    background-position: center;
    transform: translateY(-100%);
    position: fixed;
    z-index: 1;
    /* Ocultar el contenido que sobresale */
    overflow: hidden;
    /* Transición suave para la expansión */
    transition: transform 1s ease-in-out;
    /* opacity: .9; */
  }
  body header .menu-escondido .nav-escondido {
    width: 100%;
    height: 100%;
  }
  body header .menu-escondido .nav-escondido ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  body header .menu-escondido .nav-escondido ul li {
    width: 100%;
    /* Para que ocupe todo el ancho del menú */
    text-align: center;
    /* Centrar texto en el menú */
    margin: 10px 0;
    /* Espacio entre los elementos del menú */
    display: flex;
  }
  body header .menu-escondido .nav-escondido ul li a {
    width: 100%;
    display: block;
    padding: 10px 0;
    font-size: 28px;
    color: #fff;
    text-align: center;
    /* Alinear texto a la izquierda en el menú expandido */
  }
  body header .menu-escondido .nav-escondido ul li a:hover {
    color: #57213B;
  }
  body header .menu-escondido .nav-escondido ul li:hover {
    color: #57213B;
  }
  body header .menu-escondido .nav-escondido ul .redes {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    padding: 0 20px;
    align-items: center;
    font-size: 28px;
    color: #fff;
  }
  body header .menu-escondido .nav-escondido ul .redes a {
    font-size: 22px;
  }
  body header .menu-escondido .nav-escondido ul .redes i {
    margin-left: 10px;
    font-size: 20px;
  }
  body header .menu-escondido .nav-escondido ul .separador {
    width: 35%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
    /* Espacio entre los elementos del menú */
  }
  body header .menu-escondido.expandido {
    /* Mostrar el menú al expandir */
    transform: translateY(0);
  }
  body main {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
  body main .presentacion {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    background-color: #57213B;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px 0;
  }
  body main .presentacion .presentacion-arriba {
    width: 90%;
    text-align: center;
    color: #fff;
    font-size: 15px;
  }
  body main .presentacion .presentacion-abajo {
    width: 90%;
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-style: italic;
  }
  body main .carrusel {
    width: 100%;
    height: 30vh;
    display: flex;
    justify-content: center;
  }
  body main .carrusel .img-content {
    width: 95%;
    height: auto;
    margin: auto;
    overflow: hidden;
    margin-left: 5%;
  }
  body main .carrusel .img-content .slider-inf {
    display: flex;
    -moz-column-gap: 30px;
         column-gap: 30px;
    animation: scroll 35s linear infinite;
    -webkit-animation: scroll 50s linear infinite;
    width: 3500px;
  }
  body main .carrusel .img-content .slider-inf .img-content-img {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
  }
  body main .carrusel .img-content .slider-inf .img-content-img img {
    width: 100%;
  }
  body main .visita-catalogo {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body main .visita-catalogo img {
    width: 100%;
  }
  body main .visita-catalogo .texto-catalogo {
    position: absolute;
    font-family: "Glacial Indifference", sans-serif;
    color: #353134;
  }
  body main .visita-catalogo .texto-catalogo .arriba {
    text-align: start;
    font-size: 20px;
    padding-left: 10px;
  }
  body main .visita-catalogo .texto-catalogo .centro {
    font-size: 70px;
    line-height: 0.8;
  }
  body main .visita-catalogo .texto-catalogo .abajo {
    text-align: end;
    font-size: 20px;
    padding-right: 10px;
  }
  body footer {
    width: 100%;
    height: 4vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #57213B;
  }
  body footer p {
    font-size: 12px;
    color: #fff;
    font-family: "Glacial Indifference", sans-serif;
  }
}
@media only screen and (min-width: 577px) and (max-width: 768px) {
  body {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
  }
  body header {
    width: 100%;
    height: 54vh;
    background-image: url(/img/resto/header.png);
    background-position-y: 10vh;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    background-color: #57213B;
  }
  body header aside {
    width: 100%;
    height: 10vh;
    background-color: #57213B;
    position: initial;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-right: 1px solid #fff;
    z-index: 2;
  }
  body header aside .menu-redes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
  }
  body header aside .menu-redes a {
    color: #fff;
  }
  body header .menu-escondido {
    width: 100%;
    height: 100vh;
    margin-left: 0;
    background-color: #333;
    background-image: url(/img/resto/fondo-emerg-op.png);
    background-size: cover;
    background-position: center;
    transform: translateY(-100%);
    position: fixed;
    z-index: 1;
    /* Ocultar el contenido que sobresale */
    overflow: hidden;
    /* Transición suave para la expansión */
    transition: transform 1s ease-in-out;
    /* opacity: .9; */
  }
  body header .menu-escondido .nav-escondido {
    width: 100%;
    height: 100%;
  }
  body header .menu-escondido .nav-escondido ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  body header .menu-escondido .nav-escondido ul li {
    width: 100%;
    /* Para que ocupe todo el ancho del menú */
    text-align: center;
    /* Centrar texto en el menú */
    margin: 10px 0;
    /* Espacio entre los elementos del menú */
    display: flex;
  }
  body header .menu-escondido .nav-escondido ul li a {
    width: 100%;
    display: block;
    padding: 10px 0;
    font-size: 28px;
    color: #fff;
    text-align: center;
    /* Alinear texto a la izquierda en el menú expandido */
  }
  body header .menu-escondido .nav-escondido ul li a:hover {
    color: #57213B;
  }
  body header .menu-escondido .nav-escondido ul li:hover {
    color: #57213B;
  }
  body header .menu-escondido .nav-escondido ul .redes {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    padding: 0 20px;
    align-items: center;
    font-size: 28px;
    color: #fff;
  }
  body header .menu-escondido .nav-escondido ul .redes a {
    font-size: 22px;
  }
  body header .menu-escondido .nav-escondido ul .redes i {
    margin-left: 10px;
    font-size: 20px;
  }
  body header .menu-escondido .nav-escondido ul .separador {
    width: 35%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
    /* Espacio entre los elementos del menú */
  }
  body header .menu-escondido.expandido {
    /* Mostrar el menú al expandir */
    transform: translateY(0);
  }
  body main {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
  body main .presentacion {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    background-color: #57213B;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px 0;
  }
  body main .presentacion .presentacion-arriba {
    width: 90%;
    text-align: center;
    color: #fff;
    font-size: 15px;
  }
  body main .presentacion .presentacion-abajo {
    width: 90%;
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-style: italic;
  }
  body main .carrusel {
    width: 100%;
    height: 30vh;
    display: flex;
    justify-content: center;
  }
  body main .carrusel .img-content {
    width: 95%;
    height: auto;
    margin: auto;
    overflow: hidden;
    margin-left: 5%;
  }
  body main .carrusel .img-content .slider-inf {
    display: flex;
    -moz-column-gap: 30px;
         column-gap: 30px;
    animation: scroll 35s linear infinite;
    -webkit-animation: scroll 50s linear infinite;
    width: 3500px;
  }
  body main .carrusel .img-content .slider-inf .img-content-img {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
  }
  body main .carrusel .img-content .slider-inf .img-content-img img {
    width: 100%;
  }
  body main .visita-catalogo {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body main .visita-catalogo img {
    width: 100%;
  }
  body main .visita-catalogo .texto-catalogo {
    position: absolute;
    font-family: "Glacial Indifference", sans-serif;
    color: #353134;
  }
  body main .visita-catalogo .texto-catalogo .arriba {
    text-align: start;
    font-size: 20px;
    padding-left: 10px;
  }
  body main .visita-catalogo .texto-catalogo .centro {
    font-size: 70px;
    line-height: 0.8;
  }
  body main .visita-catalogo .texto-catalogo .abajo {
    text-align: end;
    font-size: 20px;
    padding-right: 10px;
  }
  body footer {
    width: 100%;
    height: 4vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #57213B;
  }
  body footer p {
    font-size: 12px;
    color: #fff;
    font-family: "Glacial Indifference", sans-serif;
  }
}
@media only screen and (min-width: 769px) and (max-width: 992px) {
  body {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
  }
  body header {
    width: 100%;
    height: 60vh;
    background-image: url(/img/resto/header.png);
    background-position-y: 10vh;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    background-color: #57213B;
  }
  body header aside {
    width: 100%;
    height: 10vh;
    background-color: #57213B;
    position: initial;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-right: 1px solid #fff;
    z-index: 2;
  }
  body header aside .menu-redes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
  }
  body header aside .menu-redes a {
    color: #fff;
  }
  body header .menu-escondido {
    width: 100%;
    height: 100vh;
    margin-left: 0;
    background-color: #333;
    background-image: url(/img/resto/fondo-emerg-op.png);
    background-size: cover;
    background-position: center;
    transform: translateY(-100%);
    position: fixed;
    z-index: 1;
    /* Ocultar el contenido que sobresale */
    overflow: hidden;
    /* Transición suave para la expansión */
    transition: transform 1s ease-in-out;
    /* opacity: .9; */
  }
  body header .menu-escondido .nav-escondido {
    width: 100%;
    height: 100%;
  }
  body header .menu-escondido .nav-escondido ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  body header .menu-escondido .nav-escondido ul li {
    width: 100%;
    /* Para que ocupe todo el ancho del menú */
    text-align: center;
    /* Centrar texto en el menú */
    margin: 10px 0;
    /* Espacio entre los elementos del menú */
    display: flex;
  }
  body header .menu-escondido .nav-escondido ul li a {
    width: 100%;
    display: block;
    padding: 10px 0;
    font-size: 28px;
    color: #fff;
    text-align: center;
    /* Alinear texto a la izquierda en el menú expandido */
  }
  body header .menu-escondido .nav-escondido ul li a:hover {
    color: #57213B;
  }
  body header .menu-escondido .nav-escondido ul li:hover {
    color: #57213B;
  }
  body header .menu-escondido .nav-escondido ul .redes {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    padding: 0 20px;
    align-items: center;
    font-size: 28px;
    color: #fff;
  }
  body header .menu-escondido .nav-escondido ul .redes a {
    font-size: 22px;
  }
  body header .menu-escondido .nav-escondido ul .redes i {
    margin-left: 10px;
    font-size: 20px;
  }
  body header .menu-escondido .nav-escondido ul .separador {
    width: 35%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
    /* Espacio entre los elementos del menú */
  }
  body header .menu-escondido.expandido {
    /* Mostrar el menú al expandir */
    transform: translateY(0);
  }
  body main {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
  body main .presentacion {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    background-color: #57213B;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px 0;
  }
  body main .presentacion .presentacion-arriba {
    width: 90%;
    text-align: center;
    color: #fff;
    font-size: 15px;
  }
  body main .presentacion .presentacion-abajo {
    width: 90%;
    text-align: center;
    color: #fff;
    font-size: 15px;
    font-style: italic;
  }
  body main .carrusel {
    width: 100%;
    height: 30vh;
    display: flex;
    justify-content: center;
  }
  body main .carrusel .img-content {
    width: 95%;
    height: auto;
    margin: auto;
    overflow: hidden;
    margin-left: 5%;
  }
  body main .carrusel .img-content .slider-inf {
    display: flex;
    -moz-column-gap: 30px;
         column-gap: 30px;
    animation: scroll 35s linear infinite;
    -webkit-animation: scroll 50s linear infinite;
    width: 3500px;
  }
  body main .carrusel .img-content .slider-inf .img-content-img {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
  }
  body main .carrusel .img-content .slider-inf .img-content-img img {
    width: 100%;
  }
  body main .visita-catalogo {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body main .visita-catalogo img {
    width: 100%;
  }
  body main .visita-catalogo .texto-catalogo {
    position: absolute;
    font-family: "Glacial Indifference", sans-serif;
    color: #353134;
  }
  body main .visita-catalogo .texto-catalogo .arriba {
    text-align: start;
    font-size: 20px;
    padding-left: 10px;
  }
  body main .visita-catalogo .texto-catalogo .centro {
    font-size: 70px;
    line-height: 0.8;
  }
  body main .visita-catalogo .texto-catalogo .abajo {
    text-align: end;
    font-size: 20px;
    padding-right: 10px;
  }
  body footer {
    width: 100%;
    height: 4vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #57213B;
  }
  body footer p {
    font-size: 12px;
    color: #fff;
    font-family: "Glacial Indifference", sans-serif;
  }
}
@media only screen and (min-width: 993px) and (max-width: 1200px) {
  body {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    flex-direction: column;
  }
  body header {
    width: 100%;
    height: 75vh;
    background-image: url(/img/resto/header.png);
    background-position-y: 10vh;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    background-color: #57213B;
  }
  body header aside {
    width: 100%;
    height: 10vh;
    background-color: #57213B;
    position: initial;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    border-right: 1px solid #fff;
    z-index: 2;
  }
  body header aside .menu-redes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
  }
  body header aside .menu-redes a {
    color: #fff;
  }
  body header .menu-escondido {
    width: 100%;
    height: 100vh;
    margin-left: 0;
    background-color: #333;
    background-image: url(/img/resto/fondo-emerg-op.png);
    background-size: cover;
    background-position: center;
    transform: translateY(-100%);
    position: fixed;
    z-index: 1;
    /* Ocultar el contenido que sobresale */
    overflow: hidden;
    /* Transición suave para la expansión */
    transition: transform 1s ease-in-out;
    /* opacity: .9; */
  }
  body header .menu-escondido .nav-escondido {
    width: 100%;
    height: 100%;
  }
  body header .menu-escondido .nav-escondido ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  body header .menu-escondido .nav-escondido ul li {
    width: 100%;
    /* Para que ocupe todo el ancho del menú */
    text-align: center;
    /* Centrar texto en el menú */
    margin: 10px 0;
    /* Espacio entre los elementos del menú */
    display: flex;
  }
  body header .menu-escondido .nav-escondido ul li a {
    width: 100%;
    display: block;
    padding: 10px 0;
    font-size: 28px;
    color: #fff;
    text-align: center;
    /* Alinear texto a la izquierda en el menú expandido */
  }
  body header .menu-escondido .nav-escondido ul li a:hover {
    color: #57213B;
  }
  body header .menu-escondido .nav-escondido ul li:hover {
    color: #57213B;
  }
  body header .menu-escondido .nav-escondido ul .redes {
    width: -moz-fit-content;
    width: fit-content;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    padding: 0 20px;
    align-items: center;
    font-size: 28px;
    color: #fff;
  }
  body header .menu-escondido .nav-escondido ul .redes a {
    font-size: 22px;
  }
  body header .menu-escondido .nav-escondido ul .redes i {
    margin-left: 10px;
    font-size: 20px;
  }
  body header .menu-escondido .nav-escondido ul .separador {
    width: 35%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 10px 0;
    /* Espacio entre los elementos del menú */
  }
  body header .menu-escondido.expandido {
    /* Mostrar el menú al expandir */
    transform: translateY(0);
  }
  body main {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
  body main .presentacion {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    background-color: #57213B;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 30px 0;
  }
  body main .presentacion .presentacion-arriba {
    width: 90%;
    text-align: center;
    color: #fff;
    font-size: 22px;
  }
  body main .presentacion .presentacion-abajo {
    width: 90%;
    text-align: center;
    color: #fff;
    font-size: 25px;
    font-style: italic;
  }
  body main .carrusel {
    width: 100%;
    height: 30vh;
    display: flex;
    justify-content: center;
  }
  body main .carrusel .img-content {
    width: 95%;
    height: auto;
    margin: auto;
    overflow: hidden;
    margin-left: 5%;
  }
  body main .carrusel .img-content .slider-inf {
    display: flex;
    -moz-column-gap: 30px;
         column-gap: 30px;
    animation: scroll 35s linear infinite;
    -webkit-animation: scroll 50s linear infinite;
    width: 3500px;
  }
  body main .carrusel .img-content .slider-inf .img-content-img {
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
  }
  body main .carrusel .img-content .slider-inf .img-content-img img {
    width: 100%;
  }
  body main .visita-catalogo {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body main .visita-catalogo img {
    width: 100%;
  }
  body main .visita-catalogo .texto-catalogo {
    position: absolute;
    font-family: "Glacial Indifference", sans-serif;
    color: #353134;
  }
  body main .visita-catalogo .texto-catalogo .arriba {
    text-align: start;
    font-size: 20px;
    padding-left: 10px;
  }
  body main .visita-catalogo .texto-catalogo .centro {
    font-size: 70px;
    line-height: 0.8;
  }
  body main .visita-catalogo .texto-catalogo .abajo {
    text-align: end;
    font-size: 20px;
    padding-right: 10px;
  }
  body footer {
    width: 100%;
    height: 4vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #57213B;
  }
  body footer p {
    font-size: 12px;
    color: #fff;
    font-family: "Glacial Indifference", sans-serif;
  }
}/*# sourceMappingURL=style-inicio-v1.1.css.map */