@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100;300;400;500;600&display=swap");

* {
  font-family: 'Popins', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  /* text-transform: capitalize; */
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
  overflow-x: hidden;
}

html::-webkit-scrollbar {
  width: 1rem;
}

html::-webkit-scrollbar-track {
  background: #000;
}

html::-webkit-scrollbar-thumb {
  background: #fff200;
  border-radius: 5rem;
}

body {
  background: url(../images/background.jpg);
  background-attachment: fixed;
  background-position: center;
  overflow-x: hidden;
}

section {
  padding: 3rem 9%;
}

.heading {
  text-align: center;
  margin-bottom: 3rem;
}

.heading h3 {
  font-size: 3rem;
  text-transform: uppercase;
  color: #fff;
  margin-top: 1rem;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  cursor: pointer;
  color: #fff;
  border: 0.2rem solid rgba(255, 255, 255, 0.3);
  background: no-repeat;
  font-size: 1.7rem;
  padding: 1rem 3rem;
}

.btn:hover {
  color: #000;
  background: #fff;
}

.btn.active {
  color: rgb(255, 242, 0);
  border: 0.2rem solid rgba(255, 242, 0, 0.6);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #000;
  padding: 3rem 9%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem;
}

.header .navbar {
  display: flex;
  width: 100% !important;
}

.header .icons {
  font-size: 2.5rem;
  cursor: pointer;
  color: #fff;
}

.header .icons:hover {
  color: #fff200;
}

.header #menu-btn {
  display: none;
}

.header .navbar a {
  display: inline-block;
  color: #fff;
  font-size: 2rem;
  margin: 0 2rem;
}



.header .navbar a:hover {
  text-decoration: underline;
  text-underline-offset: 1rem;
  color: #fff200;
}

.header .navbar .space {
  display: inline-block;
  width: 16rem;
}


.header .logo {
  position: absolute;
  top: 3rem;
  left: 48.5%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.header .logo img {
  width: 15rem;
}

.header .search-form {
  height: 7rem;
  padding: 0 2rem;
  border-top: 0.2rem solid rgba(255, 255, 255, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #000;
  position: absolute;
  top: 99%;
  left: 0;
  right: 0;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}

.header .search-form.active {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.header .search-form input {
  width: 100%;
  background: none;
  text-transform: none;
  font-size: 1.6rem;
  color: #fff;
}

.header .fa-times {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.home {
  margin-top: 17rem;
  background: url(../images/home-bg3.webp) no-repeat;
  background-size: cover;
  background-position: center;
}

.home .content {
  max-width: 70rem;
  text-align: center;
  margin: 0 auto;
}

.home .content img {
  width: 100%;
}

.home .content h3 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #fff;
}

.home .content p {
  font-size: 1.7rem;
  line-height: 2;
  color: #aaa;
  padding: 2rem 0;
}

.service {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(31rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  gap: 2rem;
}

.service .box {
  text-align: center;
  padding: 2rem;
}

.service .box i {
  height: 7rem;
  width: 7rem;
  line-height: 7rem;
  font-size: 2.5rem;
  color: #000;
  background: #fff200;
  margin-bottom: 1rem;
  border-radius: 50%;
}

.service .box h3 {
  padding: 1rem 0;
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
}

.service .box p {
  font-size: 1.5rem;
  line-height: 2;
  color: #aaa;
}

.menu .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(31rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  gap: 2rem;
}

.menu .box-container .box {
  text-align: center;
}

.menu .box-container .box:hover img {
  -webkit-transform: translateY(1rem);
  transform: translateY(1rem);
}

.menu .box-container .box img {
  height: 25rem;
}

.menu .box-container .box .content {
  padding: 1rem 0;
}

.menu .box-container .box .content .stars {
  margin-bottom: 2rem;
}

.menu .box-container .box .content .stars i {
  font-size: 1.7rem;
  color: #fff200;
}

.menu .box-container .box .content h3 {
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
}

.menu .box-container .box .content .price {
  font-size: 1.9rem;
  line-height: 2;
  color: #aaa;
}

.menu .box-container .box .content .description {
  font-size: 1.9rem;
  line-height: 2;
  color: #aaa;
}

.about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem;
}

.about .image {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
  flex: 1 1 40rem;
}

.about .image img {
  width: 100%;
}

.about .content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
  flex: 1 1 40rem;
}

.about .content .title {
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #fff;
}

.about .content p {
  font-size: 1.5rem;
  line-height: 2;
  color: #aaa;
  padding: 2rem 0;
}

.about .content .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.about .content .icons h3 {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 16rem;
  flex: 1 1 16rem;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #fff;
}

.about .content .icons h3 i {
  padding-right: .5rem;
  color: #fff200;
}

.reviews .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(31rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  gap: 2rem;
}

.reviews .box-container .box {
  text-align: center;
  padding: 2rem;
}

.reviews .box-container .box img {
  height: 10rem;
  width: 10rem;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.reviews .box-container .box h3 {
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
}

.reviews .box-container .box p {
  font-size: 1.4rem;
  line-height: 2;
  color: #aaa;
  padding: 1rem 0;
}

.reviews .box-container .box .stars {
  padding-top: .5rem;
}

.reviews .box-container .box .stars i {
  font-size: 1.7rem;
  color: #fff200;
}

.contact .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem;
}

.contact .row .map {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
  flex: 1 1 40rem;
  width: 100%;
}

.contact .row .form {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 40rem;
  flex: 1 1 40rem;
}

.contact .row .form .icons-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact .row .form .icons-container .icons {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 17rem;
  flex: 1 1 17rem;
  text-align: center;
}

.contact .row .form .icons-container .icons i {
  height: 6rem;
  width: 6rem;
  line-height: 6rem;
  border-radius: 50%;
  background: #fff200;
  color: #000;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact .row .form .icons-container .icons h3 {
  padding: 1rem 0;
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
}

.contact .row .form .icons-container .icons p {
  font-size: 1.5rem;
  line-height: 2;
  color: #aaa;
}

.contact .row .form form {
  text-align: center;
}

.contact .row .form form .box {
  padding: 1.2rem 1.4rem;
  font-size: 1.6rem;
  color: #fff;
  background: none;
  border: 0.2rem solid rgba(255, 255, 255, 0.3);
  text-transform: none;
  width: 100%;
  margin: .7rem 0;
}

.contact .row .form form .box:focus {
  border-color: #fff200;
}

.contact .row .form form textarea {
  height: 15rem;
  resize: none;
}

.blogs .box-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(31rem, 1fr))[auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(31rem, 1fr));
  gap: 2rem;
}

.blogs .box-container .box {
  position: relative;
}

.blogs .box-container .box:hover .image img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.blogs .box-container .box:hover .image .icons {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.blogs .box-container .box .image {
  height: 25rem;
  overflow: hidden;
  position: relative;
}

.blogs .box-container .box .image .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2rem;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  -webkit-transform: translateY(10rem);
  transform: translateY(10rem);
}

.blogs .box-container .box .image .icons a {
  font-size: 1.5rem;
  color: #fff;
}

.blogs .box-container .box .image .icons a i {
  padding-right: .5rem;
  color: #fff200;
}

.blogs .box-container .box .image .icons a:hover {
  color: #fff200;
}

.blogs .box-container .box .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blogs .box-container .box .content {
  text-align: center;
  padding: 2rem;
}

.blogs .box-container .box .content h3 {
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
}

.blogs .box-container .box .content p {
  font-size: 1.5rem;
  line-height: 2;
  color: #aaa;
  padding: 1.5rem 0;
}

.footer {
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000));
  background: linear-gradient(transparent, #000);
}

.footer .links a {
  margin: 1rem;
}

.footer .credit {
  font-size: 2rem;
  line-height: 2;
  color: #aaa;
  padding-top: 2rem;
}

.footer .credit span a {
  color: #fff200;
}

.footer .credit span a:hover {
  background-color: #fff200;
  color: black;
  border-radius: 5px;
  padding: 3px;
}

@media (min-width:1200px) {
  .side-2 {
    width: 50%;
    display: flex;
    justify-content: end;
  }
}

@media (max-width: 1200px) {
  .side-2 {
    width: 50%;
    display: flex;
    justify-content: end;
  }

  .header {
    padding: 3rem;
  }

  section {
    padding: 3rem 2rem;
  }
}

@media (max-width: 991px) {
  .side-2 {
    width: auto;
    /* o 100% si quieres que ocupe todo */
    display: block;
    /* reset flex */
    justify-content: initial;
    /* quitar justify-content */
    background: none;
    /* quitar fondo azul */
  }

  html {
    font-size: 55%;
  }

  .header {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 2rem;
  }

  .header .logo {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    left: 3rem;
  }

  .header #menu-btn {
    display: inline-block;
  }

  .header .navbar {
    display: block;
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
    background: #000;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }

  .header .navbar.active {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .header .navbar a {
    display: block;
    margin: 3rem 2rem;
  }

  .header .navbar .space {
    display: none;
  }
}

iframe {
  max-width: 100%;
}

@media (max-width: 768px) {
  .side-2 {
    width: auto;
    /* o 100% si quieres que ocupe todo */
    display: block;
    /* reset flex */
    justify-content: initial;
    /* quitar justify-content */
    background: none;
    /* quitar fondo azul */
  }

  .home .content h3 {
    font-size: 2.5rem;
  }

  .home {
    margin-top: 13rem;
  }
}

@media (max-width: 450px) {
  .side-2 {
    width: auto;
    /* o 100% si quieres que ocupe todo */
    display: block;
    /* reset flex */
    justify-content: initial;
    /* quitar justify-content */
    background: none;
    /* quitar fondo azul */
  }

  html {
    font-size: 50%;
  }
}

.menu-tabs {
  text-align: center;
  margin-bottom: 2rem;
}


.image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

.image-wrapper img {
  display: block;
  border-radius: 8px;
}

.badge-config {
  position: absolute;
  text-align: center;
  top: 0px;
  color: white;
  padding: 4px 10px;
  font-size: 1.2rem;
  border-radius: 4px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.best-selling {
  background: #f39c12;
}

.recommendation {
  background: #2c3e50;
}

.content2 {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.menu-item {
  display: flex;
  align-items: center;
  /* Alinea los elementos verticalmente */
  justify-content: flex-start;
  /* Distribuye entre nombre, puntos y precio */
  width: 100%;
}

.dots {
  flex-grow: 1;
  /* Ocupa el espacio entre el nombre y el precio */
  border-bottom: 1px dotted #aaa;
  /* Líneas punteadas */
  margin: 0 10px;
  /* Espaciado entre el texto y el precio */
}


.subtitle-enchiladas {
  color: #fff;
  font-size: small;
  width: 100%;
}

.ingredient {
  color: #fff200;
  font-size: small;
  font-style: italic;
}


.btn-shared {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;

  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;

  background-color: #25D366;
  color: white;
  font-weight: 600;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  border-radius: 6px;

  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.btn-shared i {
  font-size: 20px;
}

.btn-shared:hover {
  background-color: #1ebe57;
}

.promotion {
  margin-top: 10px;
  width: 100%;
  height: auto;
}

.clarification {
  color: #AAA;
}

.box-general {
  width: 100% !important;
  text-align: center;
}

.subsection {
  color: #f1c40f !important;
}

.premium {
  background: #f1c40f;
  color: #000;
}

/*# sourceMappingURL=style.css.map */

.btn-save {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;

  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;

  background-color: #ff6347;
  color: white;
  font-weight: 600;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  border-radius: 6px;

  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.btn-save i {
  font-size: 20px;
}

.btn-save:hover {
  background-color: #e5533d;
}

/** Nueva ubicacion **/

.map-link {
  display: inline-block;
  padding: 12px 24px;
  background-color: #4CAF50;
  /* Verde suave */
  color: white;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.map-link:hover {
  background-color: #45a049;
  transform: scale(1.05);
}

.map-link:active {
  transform: scale(0.98);
}

/* Price Notice Styling */
.price-notice {
  background: #fff200;
  padding: 1rem 2rem;
  position: fixed;
  top: 11.5rem;
  /* Ajuste para quedar justo debajo del header fijo */
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.price-notice.hidden {
  transform: translateY(-200%);
  opacity: 0;
  pointer-events: none;
}

.price-notice .content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  width: 100%;
  justify-content: center;
  position: relative;
}

.price-notice i.fa-info-circle {
  font-size: 2rem;
  color: #000;
}

.price-notice p {
  font-size: 1.6rem;
  color: #000;
  line-height: 1.4;
  margin: 0;
  padding-right: 3.5rem;
  /* Espacio para el botón de cerrar */
}

.price-notice b {
  font-weight: 700;
  text-transform: uppercase;
}

#close-price-notice {
  position: absolute;
  right: 0;
  font-size: 2.2rem;
  cursor: pointer;
  color: #000;
  padding: 0.5rem;
  transition: transform 0.2s ease;
  pointer-events: all;
}

#close-price-notice:hover {
  transform: scale(1.2);
}

@media (max-width: 991px) {
  .price-notice {
    top: 8.5rem;
    /* Ajuste para header móvil */
  }
}

@media (max-width: 768px) {
  .price-notice {
    top: 8rem;
    padding: 0.8rem 1.5rem;
  }

  .price-notice p {
    font-size: 1.3rem;
  }
}