@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* ----------------------------------- */
/*          RESET GENERAL              */
/* ----------------------------------- */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #111;
}

/* ----------------------------------- */
/*              HEADER                 */
/* ----------------------------------- */
.header {
  background: #000;
  padding: 1em;
}

.contenedor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}


.logo img {
  max-width: 120px;
  height: auto;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 1.5em;
  margin-left: auto;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 0.5em 0;
}

.nav a:hover {
  color: #e63946;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #e63946;
  transition: width 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

.nav a.active {
  border-bottom: 2px solid #e63946;
}

/* Icono carrito */
.carrito {
  color: #fff;
  position: relative;
  font-size: 1.3em;
  text-decoration: none;
}

.carrito .contador {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #e63946;
  color: #fff;
  font-size: 0.7em;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: bold;
}

/* Botón hamburguesa */
.menu-toggle {
  display: none;
  font-size: 1.5em;
  color: #fff;
  cursor: pointer;
}

/* ----------------------------------- */
/*               HERO                  */
/* ----------------------------------- */
.hero {
  position: relative;
  text-align: center;
  background: url('../img/ChatGPT Image 13 jul 2025, 07_46_41 a.m..png') center/cover no-repeat;
  padding: 5em 1em;
  color: #fff;
  background-color: #000;
  animation: fadeIn 2s ease-out;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* oscurece el fondo */
  z-index: 0;
}

.hero h1,
.hero .subtitulo,
.hero .btn-wsp {
  position: relative;
  z-index: 1;
}

.slogan {
  font-size: 2.5em;
  margin-bottom: 0.5em;
  font-weight: 600;
}

.subtitulo {
  font-size: 1.2em;
  font-weight: 300;
  color: #fff;
  margin-bottom: 1.5em;
  animation: fadeIn 2.5s ease-out;
}

/* ----------------------------------- */
/*         BOTÓN WHATSAPP              */
/* ----------------------------------- */
.btn-wsp {
  display: inline-block;
  background: #e63946;
  color: #fff;
  padding: 0.8em 1.5em;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  animation: fadeIn 3s ease-out;
  transition: background 0.3s ease, transform 0.3s ease;
  width: 10em;
}

.btn-wsp:hover {
  background: #ff4d4d;
  transform: scale(1.05);
  box-shadow: 0 0 10px #e63946;
}

/* ----------------------------------- */
/*               FOOTER                */
/* ----------------------------------- */
footer.footer {
  text-align: center;
  padding: 1em;
  background: #000;
  color: #fff;
  font-weight: 300;
}

/* ----------------------------------- */
/*        SECCIONES PRINCIPALES        */
/* ----------------------------------- */
.ofertas, .categorias {
  padding: 2em 1em;
  background-color: #f9f9f9;
  text-align: center;
}

.ofertas h2, .categorias h2 {
  color: #e63946;
  margin-bottom: 1em;
}

/* ----------------------------------- */
/*             ANIMACIONES             */
/* ----------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------- */
/*        RESPONSIVE (Mobile)          */
/* ----------------------------------- */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .contenedor-header {
  flex-direction: column;
  align-items: center;
}

.logo {
  order: 1;
  margin-bottom: 0.5em;
}

.search-container {
  order: 2;
}

.menu-toggle {
  order: 3;
}

.nav {
  order: 4;
}


  .nav {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1em 0;
  }

  .nav.show {
    display: flex;
  }

  .nav a {
    padding: 1em;
    text-align: center;
    font-size: 1.2em;
  }
}
.header {
  background: #000;
  padding: 1em;
  position: relative;   /* <- NUEVO */
}
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 100%;           /* <- empieza justo debajo del header */
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1em 0;
  }

  .nav.show {           /* se muestra al hacer toggle */
    display: flex;
  }

  .nav a {
    padding: 1em;
    text-align: center;
    font-size: 1.2em;
  }

  .menu-toggle {        /* el ☰ visible solo en móvil */
    display: block;
  }
}

.nav {
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}
.logo img {
  animation: aparecer 1s ease-out;
}

@keyframes aparecer {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}
.search-container {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-left: 1em;
  position: relative;
}

.search-icon {
  color: #fff;
  font-size: 1.2em;
  transition: color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.search-icon:hover {
  color: #e63946;
  transform: scale(1.2);
}

.search-box {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: #000;
  padding: 0.3em 0.5em;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.search-box.show {
  opacity: 1;
  pointer-events: all;
}

.search-box input {
  padding: 0.4em 0.7em;
  font-size: 0.9em;
  border: none;
  border-radius: 4px;
  outline: none;
  width: 180px;
  background: #fff;
  color: #000;
}

.search-box button {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.3em;
  cursor: pointer;
}
.search-container {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 30px;
  padding: 0.3em 1em;
  transition: box-shadow 0.3s ease;
  margin-left: 1.5em;
}

.search-container:focus-within {
  box-shadow: 0 0 0 3px #e63946aa;
}

.search-icon {
  color: #e63946;
  font-size: 1.1em;
  margin-right: 0.5em;
}

.search-input {
  border: none;
  outline: none;
  font-size: 0.95em;
  background: transparent;
  color: #000;
  width: 180px;
  transition: width 0.3s ease;
}

.search-input::placeholder {
  color: #888;
  font-style: italic;
}
.carrito {
  color: #fff;
  position: relative;
  font-size: 1.5em;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 10px; /* espacio extra a la derecha */
}

.carrito .contador {
  position: absolute;
  top: -8px;
  right: -5px;
  background: #e63946;
  color: #fff;
  font-size: 0.7em;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: bold;
  z-index: 10;
}
.btn-wsp:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px #e63946;
}
.header.scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.search-box input:focus {
  box-shadow: 0 0 0 2px #e63946;
  transition: all 0.3s ease;
}
.btn-flotante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  font-size: 2em;
  padding: 12px;
  border-radius: 50%;
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}







@keyframes flotar {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) rotate(360deg);
    opacity: 0;
  }
}


.beneficios h2 {
  color: #e63946;
  font-size: 2em;
  margin-bottom: 2em;
}

.grid-beneficios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2em;
  max-width: 1000px;
  margin: 0 auto;
}

.grid-beneficios .item {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 1.5em;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.grid-beneficios .item:hover {
  transform: translateY(-5px);
}

.grid-beneficios i {
  font-size: 2em;
  color: #e63946;
  margin-bottom: 0.5em;
}

.grid-beneficios h3 {
  margin: 0.5em 0;
  font-size: 1.2em;
  color: #111;
}

.grid-beneficios p {
  font-size: 0.95em;
  color: #444;
}
.testimonios {
  background: #fff;
  padding: 3em 1em;
  text-align: center;
}

.testimonios h2 {
  font-size: 2em;
  color: #e63946;
  margin-bottom: 2em;
}

.grid-testimonios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonio {
  background: #fdfdfd;
  border-left: 4px solid #e63946;
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.testimonio:hover {
  transform: translateY(-5px);
}

.testimonio p {
  font-style: italic;
}.zona-entrega {
  padding: 3em 1em;
  background: #fdfdfd;
  text-align: center;
}

.zona-entrega h2 {
  font-size: 2em;
  color: #e63946;
  margin-bottom: 1em;
}

.lista-zonas {
  list-style: none;
  padding: 0;
  margin: 1.5em 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
}

.lista-zonas li {
  background: #e63946;
  color: #fff;
  padding: 0.6em 1.2em;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.consulta-zona {
  margin-top: 1.5em;
  font-size: 1em;
}

.consulta-zona a {
  color: #e63946;
  font-weight: bold;
  text-decoration: none;
}
.consulta-zona a:hover {
  text-decoration: underline;
}
.zona-entrega {
  padding: 3em 1em;
  background: #fff;
  text-align: center;
}

.zona-entrega h2 {
  font-size: 2em;
  color: #e63946;
  margin-bottom: 1em;
}

.zona-entrega iframe {
  width: 100%;
  max-width: 800px;
  height: 400px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.faq {
  padding: 3em 1em;
  background: #f9f9f9;
  text-align: center;
}

.faq h2 {
  font-size: 2em;
  color: #e63946;
  margin-bottom: 1em;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 1em;
  text-align: left;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 1em;
  font-size: 1em;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #111;
}

.faq-answer {
  display: none;
  padding: 1em;
  background: #fff;
  font-size: 0.95em;
  color: #333;
}
.horario-banner {
  background: url('../img/ChatGPT\ Image\ 14\ jul\ 2025\,\ 06_22_23\ p.m..png') center center / cover no-repeat;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  padding: 4em 1em;
  position: relative;
}

.horario-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* oscurece fondo */
  z-index: 0;
}

.horario-contenido {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.horario-contenido h3 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: #e63946;
}

.horario-contenido p {
  font-size: 1.2em;
  margin: 0.5em 0;
}
@media (max-width: 768px) {
  .horario-banner {
    background-attachment: scroll; /* Evita bugs en móviles con fondo fijo */
    background-position: top center;
    padding: 3em 1em;
  }

  .horario-contenido h3 {
    font-size: 1.5em;
  }

  .horario-contenido p {
    font-size: 1em;
  }
}
.horario-contenido h3,
.horario-contenido p {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}



.horario-extra {
  font-style: italic;
  font-size: 1em;
  color: #ddd;
}

.reloj-icono {
  font-size: 2.5em;
  margin-bottom: 0.5em;
  color: #fff;
}

.contador-apertura {
  font-size: 1.2em;
  font-weight: bold;
  color: #e63946;
  text-align: center;
  margin-top: 1em;
  animation: fadeIn 1s ease-out;
}
.horario-img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 1.5em 1em;
  font-size: 0.95em;
  font-weight: 300;
}

.footer a {
  color: #e63946;
  text-decoration: none;
  font-weight: 400;
}

.footer a:hover {
  text-decoration: underline;
}

.marca-agua {
  margin-top: 0.5em;
  font-size: 0.85em;
  opacity: 0.8;
}
.preparacion {
  padding: 3em 1em;
  text-align: center;
  background: #fff;
}

.preparacion h2 {
  font-size: 2em;
  color: #e63946;
  margin-bottom: 1.5em;
}

.pasos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5em;
  max-width: 1200px;
  margin: 0 auto;
}

.paso {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 1em;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.paso:hover {
  transform: translateY(-5px);
}

.paso img {
  width: 100%;
  border-radius: 10px;
  height: 180px;
  object-fit: cover;
  margin-bottom: 0.8em;
}

.paso p {
  font-weight: 500;
  color: #333;
}
img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.btn-flotante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 0.8em 1.2em;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.95em;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: background 0.3s ease;
}

.btn-flotante:hover {
  background-color: #1ebc5a;
}

.btn-flotante .texto-wsp {
  display: inline;
}

@media (max-width: 500px) {
  .btn-flotante {
    padding: 0.6em 0.8em;
    font-size: 0.9em;
  }

  .btn-flotante .texto-wsp {
    display: none; /* Solo ícono en pantallas muy chicas */
  }
}
.nosotros {
  padding: 3em 1em;
  max-width: 1000px;
  margin: auto;
}

.quienes-somos, .mision-vision, .galeria-nosotros {
  margin-bottom: 3em;
}

.quienes-somos h1,
.mision-vision h2,
.galeria-nosotros h2 {
  text-align: center;
  margin-bottom: 1em;
}

.mision-vision {
  display: flex;
  flex-direction: column;
  gap: 2em;
}

.mision, .vision {
  background: #f8f8f8;
  padding: 1.5em;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.grid-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1em;
}

.grid-galeria img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}
.btn-flotante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 30px;
  padding: 12px 16px;
  font-size: 16px;
  z-index: 1000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.btn-flotante:hover {
  transform: scale(1.05);
}

.btn-flotante i {
  font-size: 22px;
}

.texto-wsp {
  font-weight: 500;
  white-space: nowrap;
}

/* Responsive: achicar texto en móviles chicos */
@media (max-width: 400px) {
  .texto-wsp {
    font-size: 14px;
  }
}
.valores {
  padding: 3em 1em;
  text-align: center;
}

.valores h2 {
  font-size: 2em;
  color: #e63946;
  margin-bottom: 1em;
}

.grid-valores {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2em;
  max-width: 900px;
  margin: 0 auto;
}

.valor {
  background: #fdfdfd;
  padding: 1.5em;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.valor i {
  font-size: 2em;
  color: #e63946;
  margin-bottom: 0.5em;
}
.frase-marca {
  background: #111;
  color: #fff;
  padding: 3em 1em;
  text-align: center;
  font-style: italic;
  font-size: 1.3em;
  font-weight: 300;
}
.nuestro-chef {
  padding: 3em 1em;
  background: #fff;
  text-align: center;
}

.chef-contenido {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5em;
  max-width: 800px;
  margin: auto;
}

.chef-contenido img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.chef-texto {
  max-width: 600px;
  text-align: center;
}

.chef-texto h3 {
  font-size: 1.4em;
  color: #e63946;
  margin-bottom: 0.5em;
}

.testimonios-equipo {
  padding: 3em 1em;
  background: #f9f9f9;
  text-align: center;
}

.testimonios-equipo h2 {
  font-size: 2em;
  color: #e63946;
  margin-bottom: 2em;
}

.grid-testimonios-internos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5em;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonio-interno {
  background: #fff;
  border-left: 4px solid #e63946;
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonio-interno p {
  font-style: italic;
  font-size: 1em;
  margin-bottom: 0.8em;
}

.testimonio-interno h4 {
  font-weight: 600;
  color: #333;
  font-size: 0.95em;
}
.historia-marca {
  background: #fff;
  padding: 3em 1em;
  text-align: center;
}

.historia-marca h2 {
  font-size: 2em;
  color: #e63946;
  margin-bottom: 2em;
}

.timeline {
  position: relative;
  margin: 0 auto;
  max-width: 800px;
  padding-left: 1em;
  border-left: 3px solid #e63946;
}

.timeline-item {
  position: relative;
  margin-bottom: 2em;
  padding-left: 1.5em;
}

.timeline-dot {
  position: absolute;
  left: -9px;
  top: 0.3em;
  width: 16px;
  height: 16px;
  background: #e63946;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px #e63946aa;
}

.timeline-content {
  background: #fdfdfd;
  padding: 1em;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: left;
}

.timeline-content h3 {
  margin-top: 0;
  color: #e63946;
  font-size: 1.2em;
}

.timeline-content p {
  font-size: 0.95em;
  color: #444;
}
.nav a.active {
  border-bottom: 2px solid #e63946; /* o color rojo que usás */
}
.metodos {
  padding: 3em 1em;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.intro-metodos h1 {
  font-size: 2.2em;
  color: #e63946;
  margin-bottom: 0.5em;
}

.intro-metodos p {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 2em;
}

.lista-metodos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
}

.metodo {
  background: #f9f9f9;
  padding: 2em 1em;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.metodo:hover {
  transform: translateY(-5px);
}

.metodo i {
  font-size: 2.5em;
  color: #e63946;
  margin-bottom: 0.5em;
}

.metodo h3 {
  color: #111;
  font-size: 1.3em;
  margin-bottom: 0.5em;
}

.metodo p {
  font-size: 0.95em;
  color: #444;
}
.faq-pagos {
  margin-top: 2em;
  background: #f9f9f9;
  padding: 1.5em;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
.faq-pagos h4 {
  color: #e63946;
  margin-bottom: 1em;
}
.faq-pagos p {
  font-size: 0.95em;
  margin-bottom: 0.8em;
}
.grid-pasos-pago {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2em;
  margin-top: 2em;
}

.paso-pago {
  background: #fff;
  padding: 1.5em;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.paso-pago i {
  font-size: 2em;
  color: #e63946;
  margin-bottom: 0.5em;
}
.ayuda-pago {
  background: #fff5f5;
  border-left: 4px solid #e63946;
  padding: 2em 1.5em;
  text-align: center;
  margin-top: 3em;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.ayuda-pago h3 {
  color: #e63946;
  margin-bottom: 0.5em;
  font-size: 1.5em;
}

.ayuda-pago p {
  font-size: 1em;
  margin-bottom: 1em;
  color: #333;
}

.btn-wsp-ayuda {
  display: inline-block;
  background: #25D366;
  color: #fff;
  padding: 0.8em 1.5em;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  font-size: 1em;
}

.btn-wsp-ayuda:hover {
  background: #1ebc5a;
}
.contacto-info {
  padding: 3em 1em;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.seccion-contacto-iconos h1 {
  font-size: 2.5em;
  color: #e63946;
  margin-bottom: 0.5em;
}

.subtitulo-contacto {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 2em;
}

.grid-contacto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2em;
}

.item-contacto {
  background: #fff;
  padding: 2em 1em;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.item-contacto:hover {
  transform: translateY(-5px);
}

.item-contacto i {
  font-size: 2.5em;
  color: #e63946;
  margin-bottom: 0.5em;
}

.item-contacto h3 {
  font-size: 1.1em;
  margin-bottom: 0.3em;
}

.item-contacto a {
  display: inline-block;
  margin-top: 0.5em;
  color: #e63946;
  font-weight: bold;
  text-decoration: none;
}

.item-contacto a:hover {
  text-decoration: underline;
}

.texto-mapa {
  color: #444;
  font-size: 0.95em;
  margin-top: 0.5em;
}
.horarios-contacto {
  margin-top: 3em;
  background: #fdfdfd;
  padding: 2em;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.lista-horarios {
  list-style: none;
  padding: 0;
  font-size: 1em;
  color: #333;
}

.lista-horarios li {
  margin-bottom: 0.5em;
}
.frase-contacto {
  background: #fdfdfd;
  padding: 2em 1em;
  margin-top: 3em;
  text-align: center;
  border-top: 3px solid #e63946;
  border-bottom: 3px solid #e63946;
}

.contenedor-frase {
  max-width: 800px;
  margin: auto;
  font-size: 1.2em;
  font-style: italic;
  color: #333;
  display: flex;
  align-items: center;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
}

.contenedor-frase i {
  color: #e63946;
  font-size: 2em;
}
.testimonio-contacto {
  font-style: italic;
  text-align: center;
  margin: 2em auto;
  max-width: 600px;
  color: #444;
}
.testimonio-contacto cite {
  display: block;
  margin-top: 0.5em;
  font-size: 0.9em;
  color: #e63946;
}
.grid-galeria img,
.swiper-slide img {
  height: 370px;
  object-fit:contain;
  object-position: top center\; /* o center center, o bottom */
}
@media (max-width: 768px) {
  .logo img {
    max-width: 90px;
  }
}
.contenedor-header {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}


.sushi-floating span {
  position: absolute;
  font-size: 24px;
  animation: flotar 3s linear infinite;
  opacity: 0;
}

@keyframes flotar {
  0% {
    transform: translateY(100vh) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(1.2);
    opacity: 0;
  }
}
.por {
  text-align: center;
}.sushi-floating {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999; /* encima de todo */
  overflow: hidden;
}

.sushi-floating span {
  position: absolute;
  font-size: 36px;
  animation: flotar 3s linear infinite;
  opacity: 0;
}

@keyframes flotar {
  0% {
    transform: translateY(100vh) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(1.2);
    opacity: 0;
  }
}
.galeria-nosotros {
  padding: 2em;
  background-color: #fff;
  text-align: center;
}

.grid-galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1em;
}

.grid-galeria img {
  width: 100%;
  height: 220px; /* Ajustá según te guste */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.grid-galeria img:hover {
  transform: scale(1.05);
}
.deja-opinion {
  margin-top: 3em;
  padding: 2em;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
}

.deja-opinion h3 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}

.deja-opinion input,
.deja-opinion textarea {
  width: 100%;
  padding: 0.8em;
  margin: 0.5em 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
}

.deja-opinion button {
  background-color: #e63946;
  color: white;
  padding: 0.8em 2em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.deja-opinion button:hover {
  background-color: #d62828;
}
/* LOGIN PAGE STYLES */
body.login-body {
  margin: 0;
  padding: 0;
  background-color: #f2f2f2;
  font-family: Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.login-container {
  background-color: white;
  padding: 2em;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  width: 90%;
  max-width: 400px;
  text-align: center;
}

.login-container h1 {
  margin-bottom: 1em;
  font-size: 1.8em;
  color: #333;
}

.login-container input {
  width: 100%;
  padding: 0.8em;
  margin-bottom: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

.login-container button {
  width: 100%;
  padding: 0.8em;
  background-color: #e60012;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-container button:hover {
  background-color: #b3000e;
}
/* Estilos generales del panel admin */
body.admin-panel {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  margin: 0;
  padding: 1em;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2em;
  flex-wrap: wrap;
}

.admin-titulo {
  font-size: 1.8em;
  color: #e63946;
}

.btn-logout {
  background-color: #e63946;
  color: #fff;
  border: none;
  padding: 0.5em 1em;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

.admin-grid {
  display: flex;
  flex-direction: column;
  gap: 3em;
}

section {
  padding: 1em;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 1em;
}

.nombree,
.admin-form textarea,
.admin-form select {
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

.form-btns {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}

.btn-principal,
.btn-cancelar {
  padding: 0.6em 1em;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  border: none;
}

.btn-principal {
  background-color: #e63946;
  color: white;
}

.btn-cancelar {
  background-color: #ccc;
  color: #000;
}

.admin-lista {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1em;
  list-style: none;
  padding: 0;
}

.admin-lista li {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 1em;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.admin-lista img {
  width: 100%;
  max-width: 200px;
  height: auto;
  align-self: center;
  border-radius: 5px;
}

.admin-lista button {
  background-color: #e63946;
  color: white;
  border: none;
  padding: 0.4em 0.8em;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9em;
  margin-top: 0.3em;
}

.admin-lista button:hover {
  background-color: #d62828;
}

@media (min-width: 768px) {
  .admin-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2em;
  }

  section {
    height: fit-content;
  }
}
button i {
  margin-right: 5px;
}
.nombree{
  font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.admin-lista{
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}.admin-header {

  background-color: #fff;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 1em;
}
.admin-form {
  background: white;
  padding: 1em;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.admin-lista li {
  transition: transform 0.2s ease;
}
.admin-lista li:hover {
  transform: scale(1.02);
}
.toast {
  position: fixed;
  top: 1em;
  right: 1em;
  background: #e63946;
  color: #fff;
  padding: 0.8em 1.2em;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  font-weight: bold;
  z-index: 9999;
  opacity: 0;
  animation: fadeInOut 3s ease forwards;
}

.toast.exito {
  background-color: #38b000;
}

@keyframes fadeInOut {
  0%   { opacity: 0; transform: translateY(-10px); }
  10%  { opacity: 1; transform: translateY(0); }
  90%  { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-10px); }
}
/* Inputs modernos */
.nombree,
.admin-form textarea,
.admin-form select {
  padding: 0.75em 1em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
  transition: border 0.2s, box-shadow 0.2s;
  background-color: #fff;
}

.nombree:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  border-color: #e63946;
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
  outline: none;
}

/* Botón principal */
.btn-principal {
  background-color: #e63946;
  color: white;
  border: none;
  padding: 0.7em 1.2em;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.2s;
}

.btn-principal:hover {
  background-color: #d62828;
}

/* Botón cancelar */
.btn-cancelar {
  background-color: #adb5bd;
  color: white;
  border: none;
  padding: 0.7em 1.2em;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1em;
  transition: background-color 0.2s;
}

.btn-cancelar:hover {
  background-color: #868e96;
}
.admin-lista img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
}
/* CONTENEDOR GENERAL */
.tienda-contenedor {
  display: flex;
  gap: 2em;
  padding: 1em;
  flex-wrap: wrap;
}

/* CATEGORÍAS */
.tienda-categorias {
  flex: 1;
  min-width: 200px;
  max-width: 250px;
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 1em;
  height: fit-content;
}

.tienda-categorias button {
  display: block;
  width: 100%;
  margin-bottom: 0.5em;
  padding: 0.5em;
  background-color: #e63946;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/* PRODUCTOS */
.tienda-productos {
  flex: 3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1em;
}

.producto {
  background-color: white;
  border-radius: 10px;
  padding: 1em;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.producto img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

.producto h3 {
  margin: 0.5em 0 0.2em;
}

.producto p {
  color: #666;
  margin-bottom: 0.3em;
}

.producto strong {
  display: block;
  margin-bottom: 0.5em;
}

.btn-carrito {
  background-color: #e63946;
  color: white;
  border: none;
  padding: 0.5em 1em;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .tienda-contenedor {
    flex-direction: column;
     align-items: center; /* Centrar contenido */
  }

  .tienda-categorias {
    max-width: 100%;
  }
}

  .tienda-productos {
    width: 100%;
    max-width: 600px; /* O el ancho que te quede bien */
    margin: 0 auto; /* Centrar con margen automático */
    padding: 0 1em;
  }

.producto:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
.carrito-preview {
  position: fixed;
  top: 80px;
  right: 20px;
  width: 300px;
  background: white;
  border: 2px solid #e63946;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 1em;
  z-index: 9999;
  display: none;
}

.carrito-preview h3 {
  margin-top: 0;
  font-size: 1.2em;
  color: #e63946;
}

.carrito-preview ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1em 0;
  max-height: 200px;
  overflow-y: auto;
}

.carrito-preview li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}

.carrito-preview img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
}

.btn-ver-carrito {
  background-color: #e63946;
  color: white;
  padding: 0.5em 1em;
  text-align: center;
  display: block;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.oculto {
  display: none;
}
.cerrar-preview {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}
.cerrar-preview:hover {
  color: #e63946;
}
/* CONTENEDOR de categorías */
.tienda-categorias {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 1rem;
  justify-content: center;
}

/* BOTÓN de categoría */
.tienda-categorias button {
  background-color: #e63946;
  color: white;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Hover efecto */
.tienda-categorias button:hover {
  background-color: #c72530;
  transform: scale(1.05);
}

/* Botón activo (si querés agregarlo en el futuro con JS) */
.tienda-categorias button.activo {
  background-color: #1d3557;
}
.titulo-seccion {
  text-align: center;
  font-size: 2.5rem;
  margin: 2rem 0 1rem;
  color: #e63946;
  position: relative;
  font-weight: 700;
}

.titulo-seccion::after {
  content: "";
  width: 80px;
  height: 4px;
  background-color: #e63946;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}

.grid-contacto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.item-contacto {
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  word-wrap: break-word; /* Permite cortar correos largos */
  overflow-wrap: break-word;
}
.item-contacto h3,
.item-contacto .em {
  font-size: 1rem;
  word-break: break-word;
  margin: 0;
}
.grid-contacto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.item-contacto {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  overflow-wrap: break-word;
}

.item-contacto i {
  font-size: 28px;
  color: #e63946;
  min-width: 28px;
}

.info-contacto h3 {
  font-size: 1rem;
  margin: 0;
  word-break: break-word;
}

.info-contacto a {
  color: #e63946;
  text-decoration: none;
  font-size: 0.95rem;
}

.info-contacto a:hover {
  text-decoration: underline;
}
.formulario label {
  display: block;
  margin-bottom: 1em;
  font-weight: 500;
}

.formulario input[type="text"],
.formulario input[type="number"],
.formulario textarea {
  width: 100%;
  padding: 0.6em 0.8em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
  background-color: #f9f9f9;
}

.formulario input:focus,
.formulario textarea:focus {
  border-color: #1d3557;
  outline: none;
  background-color: #fff;
}
.filtro-categorias {
  margin: 1em 0;
  padding: 1em;
  background-color: #fff8f0;
  border: 1px solid #e63946;
  border-radius: 8px;
  max-width: 400px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.filtro-categorias label {
  font-weight: bold;
  display: block;
  margin-bottom: 0.5em;
  color: #333;
}

.filtro-categorias select {
  width: 100%;
  padding: 0.5em;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  background-color: #fff;
  color: #333;
  transition: border-color 0.3s;
}

.filtro-categorias select:focus {
  outline: none;
  border-color: #e63946;
}
.btn-principal{
  text-decoration: none;
}
@media (max-width: 768px) {
  .contenedor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }

  .menu-toggle {
    order: 2;
  }

  .carrito {
    order: 3;
    font-size: 1.5rem;
    color: #000;
  }

  .nav {
    order: 4;
    flex-direction: column;
    display: none;
  }

  .nav.activo {
    display: flex;
  }
}
.carrito-fijo {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  z-index: 1000;
  color: #fff;
}

@media (min-width: 768px) {
  .carrito-fijo {
    position: static;
    margin-left: auto;
    color: inherit;
  }
}
.contenedor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  position: relative;
}
.carrito {
  position: relative;
  font-size: 20px;
  color: white;
  margin: 0 10px;
}

.carrito .contador {
  position: absolute;
  top: -8px;
  right: -10px;
  background: red;
  color: white;
  font-size: 12px;
  padding: 2px 5px;
  border-radius: 50%;
}
/* 🌀 Carrusel de productos - Swiper */
.carrusel-productos {
  padding: 2rem 1rem;
  background-color: #fff;
  text-align: center;
}

.carrusel-productos h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.swiper {
  width: 100%;
  padding: 1rem 0;
}

.swiper-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.swiper-slide {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 10px;
  text-align: center;
  max-width: 280px;
  flex-shrink: 0;
}

.swiper-slide img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  object-fit: cover;
}

.swiper-slide h3 {
  font-size: 1.2rem;
  margin: 10px 0 5px;
}

.swiper-slide p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

.swiper-slide .btn-wsp {
  display: inline-block;
  padding: 8px 16px;
  background-color: #ff4c4c;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.swiper-slide .btn-wsp:hover {
  background-color: #e43c3c;
}

/* 🔄 Paginación del swiper */
.swiper-pagination {
  margin-top: 10px;
}

/* 📱 Ajustes responsivos para móviles */
@media (max-width: 768px) {
  .swiper-wrapper {
    justify-content: center;
  }
}
.productos-fijos {
  padding: 2rem 1rem;
  background-color: #fff;
  text-align: center;
}

.productos-fijos h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #333;
}

.grid-productos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.producto {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 1rem;
  max-width: 280px;
  text-align: center;
}

.producto img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
  object-fit: cover;
}

.producto h3 {
  font-size: 1.2rem;
  margin: 10px 0 5px;
}

.producto p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
}

.producto .btn-wsp {
  display: inline-block;
  padding: 8px 16px;
  background-color: #ff4c4c;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.producto .btn-wsp:hover {
  background-color: #e43c3c;
}
.grid-productos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  justify-items: center;
}

.producto {
  background-color: #fafafa;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 260px;
  padding: 1rem;
  text-align: center;
}

.producto:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.producto img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.producto h3 {
  font-size: 1.1rem;
  color: #222;
  margin: 10px 0 5px;
}

.producto p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 12px;
}

.producto .btn-wsp {
  background-color: #ff4c4c;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.producto .btn-wsp:hover {
  background-color: #d63737;
}
.img-container {
  width: 100%;
  aspect-ratio: 4 / 3; /* Proporción del contenedor */
  overflow: hidden;
  border-radius: 10px;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* En pantallas pequeñas, que la imagen se vea completa sin recorte */
@media (max-width: 600px) {
  .img-container img {
    object-fit: contain;
    object-position: center;
    background-color: #fff; /* opcional para fondo blanco */
  }
}
@media (max-width: 768px) {
  .tienda-contenedor {
    flex-direction: column;
    align-items: center; /* centrar hijos horizontalmente */
  }

  .tienda-productos {
    width: 100% !important;       /* que ocupe todo el ancho */
    max-width: 600px;              /* ancho máximo razonable */
    margin: 0 auto;                /* centrar con margen automático */
    justify-items: center;         /* centrar elementos grid */
    display: grid !important;      /* asegurarnos que es grid */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 1em !important;
  }
}
.producto {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .tienda-productos {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    max-width: 100%;
    padding: 0 1em; /* para que no quede pegado a los bordes */
    box-sizing: border-box; /* para que el padding no aumente el ancho */
  }
}
body, html {
  max-width: 100vw;
  overflow-x: hidden;
}
body, html {
  max-width: 100vw;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .tienda-productos {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    max-width: 100%;
    padding: 0 1em;
    box-sizing: border-box;
  }
}
html {
  scroll-behavior: smooth;
}
