@font-face {
  font-family: "Lato";
  src: url("../assets/fonts/Lato-Regular.ttf");
}
@font-face {
  font-family: "Lato-Bold";
  src: url("../assets/fonts/Lato-Bold.ttf");
}
@font-face {
  font-family: "Lato-Light";
  src: url("../assets/fonts/Lato-Light.ttf");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  font-family: "Lato";
  font-weight: 400;
  color: #ffffff;
}
.contacto-mobile-header {
  display: none;
}

.hero > p,
h1 {
  transition: 0s all ease;
}

main {
  position: relative;
  top: 102px;
  margin-bottom: 102px;
  max-width: 2000px;
  margin-inline: auto;
}

body {
  background-color: #382d24;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul {
  padding: 0;
}
ul li {
  list-style-type: none;
}

.mobile {
  display: block;
}

.desktop {
  display: none;
}

header {
  height: 102px;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
header .burger-container,
header .close-container {
  width: 30px;
  position: absolute;
  bottom: 15px;
  left: 25px;
  cursor: pointer;
  z-index: 100;
}
header .close-container {
  display: none;
}
header .logo-mobile {
  width: 100px;
  height: 100px;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translate(-50%, 0px);
  z-index: 100;
}
header .nav-footer {
  background-color: #241810;
}
header .nav-footer img {
  width: 20px;
}
header .nav-footer p,
header .nav-footer a {
  color: #ffffff;
}
header .nav-desktop {
  display: none;
}
header .nav-mobile {
  height: 100vh;
  display: flex;
  justify-content: initial;
  align-items: center;
  flex-direction: column;
  transform: translateX(-100%);
  position: fixed;
  width: 100%;
  background-color: #ffffff;
  z-index: 1;
}
header .nav-mobile.show {
  transform: translateX(0%);
}
header .nav-mobile ul,
header .nav-mobile .nav-footer {
  width: 100%;
  height: 100%;
}
header .nav-mobile .nav-footer {
  height: 180px;
}
header .nav-mobile .nav-footer p {
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  margin-top: 36px;
  margin-bottom: 12px;
  font-family: "Lato-Light";
}
header .nav-mobile .nav-footer div {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  margin-bottom: 36px;
}
header .nav-mobile .nav-footer div a {
  font-family: "Kaisei";
  font-weight: 400;
  font-size: 48px;
  line-height: 70px;
  text-align: center;
  display: block;
  margin-left: 8px;
}
header .nav-mobile ul {
  display: flex;
  justify-content: center;
  align-items: initial;
  flex-direction: column;
  padding-left: 24px;
  margin-top: 20%;
}
header .nav-mobile ul li a {
  font-family: "Kaisei";
  font-weight: 700;
  font-size: 26px;
  line-height: 1.2;
  color: #181818;
}
header .nav-mobile ul li:not(:last-child) {
  margin-bottom: 10%;
}

footer {
  /* height: 175px; */
  position: relative;
  background-color: #ffffff;
  max-width: 2000px;
  margin: 0 auto;
}
footer .logo-container {
  position: absolute;
  right: 5px;
  top: -50px;
  width: 100px;
}
footer .derechos {
  padding: 50px;
  /* display: flex; */
  /* justify-content: center;
    align-items: center;
    flex-direction: row;
    width: 250px; */
  /* margin: 0 auto; */
  /* height: 100%; */
  margin-top: 37px;
}
footer .derechos p {
  font-weight: 700;
  font-family: "Lato-Bold";
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #181818;
}
.derechos .uno {
  display: flex;
  justify-content: center;
  max-width: 800px;
  margin: auto;
}
.derechos .dos {
  display: grid;
  place-items: center;
}
.derechos .dos img {
  width: 100px;
  height: 55px;
}
.derechos .tres {
  /* display: grid;
  place-items: center; */
}
.derechos .tres img {
  width: 150px;
  margin-top: -15px;
}
@media (min-width: 768px) {
  .mobile {
    display: none;
  }
  .desktop {
    display: block;
  }
  main {
    top: 80px;
    margin-bottom: 80px;
  }
  header {
    height: 80px;
  }
  header .nav-mobile,
  header .burger-container,
  header .logo-mobile {
    display: none;
  }
  header .nav-desktop {
    display: flex;
    align-items: center;
  }
  header .nav-desktop ul {
    height: 80px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
  }
  header .nav-desktop ul li {
    line-height: 1;
    width: 100%;
  }
  header .nav-desktop ul li a {
    color: #181818;
    font-family: "Kaisei";
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    padding-bottom: 2px;
    border-bottom: 5px solid transparent;
  }
  header .nav-desktop ul li a:hover {
    border-bottom: 5px solid #d66f33;
  }
  header .nav-desktop ul li:nth-child(3) {
    position: relative;
    top: 45px;
    max-width: 175px;
    height: 175px;
    min-height: 175px;
    max-height: 175px;
  }
  header .nav-desktop .phone {
    position: absolute;
    right: 20px;
  }
  header .nav-desktop .phone a {
    color: #181818;
    font-family: "Kaiseis";
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    transition: 0.3s all ease-in-out;
    border-bottom: 5px solid transparent;
  }
  header .nav-desktop .phone a:hover {
    border-bottom: 5px solid #d66f33;
  }
  footer {
    margin-top: 80px;
  }
  footer .logo-container {
    width: 175px;
    right: 80px;
    top: -88px;
  }
  footer .derechos {
    width: auto;
  }
}
.divMain {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-inline: 100px;
  margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 1370px) {
  header .nav-desktop .phone {
    bottom: -43px;
    right: 0;
    background-color: #fff;
    padding: 12px;
  }
}
.left,
.right,
.top,
.bottom,
.appear {
  opacity: 0;
}

.animation-top {
  opacity: 0;
  animation: top 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.animation-left {
  opacity: 0;
  animation: left 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes left {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
.animation-right {
  opacity: 0;
  animation: right 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes right {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
.animation-bottom {
  opacity: 0;
  animation: bottom 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.8s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
.animation-appear {
  opacity: 0;
  animation: appear 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: 0.8s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ANIMACIONES ALEJANDRO */
.hero {
  background-image: url(../assets/img/home/hero-mobile.webp);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 60vh;
  min-height: 480px;
  display: flex;
  justify-content: center;
  align-items: initial;
  flex-direction: column;
  position: relative;
  margin-bottom: 40px;
}
.hero p,
.hero h1 {
  color: #ffffff;
}
.hero p {
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: "Kaisei";
  font-weight: 400;
  text-align: center;
  font-size: 40px;
  line-height: 38px;
  width: 85%;
  margin: 0 auto;
}
.hero .mas-info {
  position: absolute;
  bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  left: 50%;
  transform: translate(-50%);
}
.hero .mas-info .flecha-container {
  width: 40px;
}
.hero .mas-info p {
  font-weight: 400;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 8px;
}

.situado {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 40px;
}
.situado p {
  width: 90%;
  margin-inline: auto;
  font-family: "Lato-Light";
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  margin-block: 100px;
}
.situado p span {
  font-family: "Kaisei";
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
  text-align: center;
}
.situado .carne-container {
  width: 100%;
}

.meson_castellano {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.meson_castellano .meson-container {
  width: 100%;
}
.meson_castellano p {
  width: 90%;
  margin-inline: auto;
  font-family: "Lato-Light";
  font-weight: 300;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 60px;
}
.meson_castellano p span {
  font-family: "Kaisei";
  font-weight: 400;
  font-size: 32px;
  line-height: 32px;
  text-align: center;
}
.meson_castellano a {
  font-family: "Kaisei";
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  padding-bottom: 8px;
  border-bottom: 5px solid #d66f33;
  display: flex;
  align-items: center;
  width: fit-content;
  margin: 0 auto 100px;
}
.meson_castellano a img {
  margin-left: 8px;
  width: 16px;
  height: 16px;
  transform: rotate(-90deg);
}

.reserva {
  background-color: #241810;
  width: 100%;
  height: 185px;
}
.reserva img {
  width: 24px;
}
.reserva p,
.reserva a {
  color: #ffffff;
}
.reserva p {
  font-weight: 300;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  padding-top: 36px;
  margin-bottom: 12px;
  font-family: "Lato-Light";
}
.reserva div {
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-direction: row;
  margin-bottom: 36px;
}
.reserva div a {
  font-family: "Kaisei";
  font-weight: 400;
  font-size: min(48px, 12vw);
  line-height: 70px;
  text-align: center;
  display: block;
  margin-left: 8px;
}

.carrousel {
  width: 100%;
  max-width: 1200px;
  margin: 50px auto;
}
.carrousel .swiper-slide .image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
}

#Modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 999;
  height: 100%;
  backdrop-filter: brightness(0.2);
  -webkit-backdrop-filter: brightness(0.2);
}
#Modal .image {
  height: 80%;
  object-fit: contain;
}
#Modal .close-modal {
  cursor: pointer;
  position: absolute;
  top: 80px;
  right: 40px;
  font-size: 28px;
}

.error-container {
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
}
.error-container h1 {
  margin-bottom: 40px;
  font-size: 30px;
  text-align: center;
}
.error-container p {
  text-align: center;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}
.error-container p a {
  font-size: 18px;
  color: #181818;
  background-color: #ffffff;
  padding: 8px 16px;
  cursor: pointer;
}
.error-container p a:hover {
  color: #ffffff;
  background-color: #181818;
}

@media (min-width: 768px) {
  #Modal .close-modal {
    top: 40px;
  }
  .hero {
    background-image: url(../assets/img/home/hero-desktop.webp);
    min-height: 600px;
  }
  .hero p {
    margin-bottom: 24px;
  }
  .hero h1 {
    font-size: 64px;
    line-height: 60px;
    width: 80%;
    max-width: 767px;
  }
  .situado {
    height: 500px;
    flex-direction: row;
    justify-content: space-between;
  }
  .situado p {
    font-size: 24px;
    font-family: "Lato-Light";
    font-weight: 300;
    line-height: 28px;
    width: 45%;
    text-align: left;
    padding-inline: 80px;
  }
  .situado .carne-container {
    height: 100%;
    width: 55%;
    max-width: 800px;
  }
  .situado .carne-container img {
    object-fit: cover;
  }
  .meson_castellano {
    height: 500px;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .meson_castellano p {
    text-align: left;
    font-size: 24px;
    width: 100%;
    line-height: 28px;
  }
  .meson_castellano a {
    width: fit-content;
    border-bottom: 5px solid transparent;
    margin-left: 0;
  }
  .meson_castellano a:hover {
    border-bottom: 5px solid #d66f33;
  }
  .meson_castellano a:hover img {
    margin-left: 0.7rem;
  }
  .meson_castellano .meson-container {
    width: 55%;
    height: 100%;
    max-width: 800px;
  }
  .meson_castellano .meson-container img {
    object-fit: cover;
  }
  .meson_castellano .info-container {
    width: 45%;
    padding-inline: 80px;
  }
  .reserva {
    height: 100%;
  }
  .reserva div {
    padding-bottom: 46px;
    margin-bottom: 0;
  }
  .reserva div a {
    width: fit-content;
    border-bottom: 5px solid transparent;
  }
  .reserva div a:hover {
    border-bottom: 5px solid #d66f33;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .meson_castellano .info-container {
    padding-inline: 30px;
  }
  .situado p {
    padding-inline: 30px;
  }
}
@media (max-width: 1100px) {
  .divMain {
    margin-inline: 0px;
  }
  .situado {
    margin-bottom: 0px;
  }
  .hero {
    margin-bottom: 0px;
  }
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: visible;
  opacity: 1;
}
.preloader.hide {
  visibility: hidden;
  opacity: 0;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
.preloader img {
  width: 100px;
  -webkit-animation: spin 0.7s linear infinite;
  -moz-animation: spin 0.7s linear infinite;
  animation: spin 0.7s linear infinite;
  filter: hue-rotate(160deg);
} /*# sourceMappingURL=home.css.map */
@media (max-width: 768px) {
  .derechos .uno {
    flex-direction: column;
    margin-top: 50px;
  }
  .derechos .dos img {
    width: auto;
  }
  .derechos .tres {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }

  .derechos .tres img {
    width: 120px;
  }
  .logo-container {
    width: 100px;
    height: 100px;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translate(-50%, 0px);
    z-index: 100;
  }
  header {
    height: 68px;
  }
  .contacto-mobile-header {
    display: block;
    width: 120px;
    position: absolute;
    font-size: 1rem;
    bottom: 16px;
    left: 85%;
    transform: translate(-50%, 0px);
    z-index: 100;
    color: black;
  }
  .contacto-mobile-header:hover {
    opacity: 0.8;
  }
}
