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


.repartidor {
  position: fixed;
  bottom: -50px;
  /* sube un poco para que no pise el footer */
  left: 0;

  width: 260px;
  max-width: 45vw;
  height: auto;

  z-index: 30;
  pointer-events: none;

  /* estado oculto */
  transform: translateX(-120%);
  opacity: 0;

  transition: transform 0.7s ease, opacity 0.7s ease;
}

/* visible */
.repartidor.activo {
  transform: translateX(-20%);
  opacity: 1;
}

/* ----------galeria------------ */
.galeria-titulo {
  text-align: center;
  font-size: 2.5rem;
  color: #f3a64b;
  margin-bottom: 50px;
  font-weight: 600;
}

/* GRID DE 6x6 */
.galeria-container {
  max-width: 1550px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  padding: 0 20px;
}

/* ITEM DE COMIDA */
.comida-item {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.comida-item:hover {
  transform: scale(1.05);
}

/* IMAGEN */
.comida-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.comida-item:hover .comida-img {
  filter: brightness(0.5);
}

/* OVERLAY CON NOMBRE */
.comida-nombre {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.comida-item:hover .comida-nombre {
  opacity: 1;
}

.boton-pedidos {
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  
}

/* SECCIÓN PROMOCIONES */
.promociones-seccion {
  max-width: 1200px;
  margin: 0 auto;
}

.promociones-titulo {
  font-family: "Cabin", sans-serif;
  margin-top: 50px;
  text-align: center;
  font-size: 2rem;
  color: #8b0000;
  margin-bottom: 15px;
  font-weight: 700;
}

.promociones-subtitulo {
  text-align: center;
  font-family: "Lato", sans-serif;
  font-size: 1.2rem;
  color: #8b0000;

  margin-bottom: 50px;
  font-weight: 600;
}

/* GRID DE PROMOCIONES */
.promociones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* TARJETA PROMOCIÓN */
.promo-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #f3a64b;
  position: relative;
  display: flex;
  flex-direction: column;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(243, 166, 75, 0.2);
}

.promo-header {
  background: linear-gradient(135deg, #f3a64b 0%, #e89b3c 100%);
  color: white;
  padding: 12px 10px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}

.promo-numero {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.75rem;
  margin-top: 6px;
}

.promo-contenido {
  padding: 12px 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.promo-item {
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: #333;
  line-height: 1.4;
  display: flex;
  align-items: center;
}

.promo-item::before {
  content: "✓";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: #f3a64b;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 18px;
  font-weight: bold;
  margin-right: 8px;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.promo-item:last-child {
  margin-bottom: 0;
}

/* PRECIO PROMOCIÓN */
.promo-precio {
  background: #f0f0f0;
  padding: 10px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f3a64b;
  margin: 8px 0 0 0;
}

/* BOTÓN PROMO */
.promo-btn {
  display: inline-block;
  width: 100%;
  padding: 9px 10px;
  background: #f3a64b;
  color: white;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.promo-btn:hover {
  background: #e89b3c;
  transform: scale(1.02);
}

/* SECCIÓN ESPECIALES */
.especiales-titulo {
  font-family: "Cabin", sans-serif;
  text-align: center;
  font-size: 2rem;
  color: #8b0000;
  margin-bottom: 15px;
  font-weight: 700;
  margin-top: 80px;
}

.especiales-subtitulo {
  font-family: "Lato", sans-serif;
  text-align: center;
  font-size: 1.2rem;
  color: #8b0000;
  margin-bottom: 50px;
  font-weight: 600;
}

/* GRID ESPECIALES */
.especiales-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

/* TARJETA ESPECIAL */
.especial-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid #f3a64b;
  display: flex;
  flex-direction: column;
}

.especial-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(243, 166, 75, 0.15);
}

.especial-header {
  background: #f3a64b;
  color: white;
  padding: 12px 10px;
  font-weight: 700;
  text-align: center;
  font-size: 0.95rem;
}

.especial-lista {
  padding: 12px 10px;
  flex: 1;
}

.especial-item {
  padding: 6px 0;
  color: #333;
  font-size: 0.85rem;
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  align-items: center;
}

.especial-item:last-child {
  border-bottom: none;
}

.especial-item::before {
  content: "→";
  margin-right: 6px;
  color: #f3a64b;
  font-weight: bold;
  font-size: 0.8rem;
}

/* PRECIO ESPECIAL */
.especial-precio {
  background: #f0f0f0;
  padding: 10px;
  text-align: center;
  border-top: 1px solid #e0e0e0;
  font-size: 1rem;
  font-weight: 700;
  color: #f3a64b;
}

/* SECCIÓN MINUTOS */
.minutos-seccion {
  margin-top: 80px;
  background: linear-gradient(135deg, #5a0202 0%, #2f0202 100%);
  padding: 50px 20px;
  border-radius: 12px;
}

.minutos-titulo {
  font-family: "Cabin", sans-serif;
  text-align: center;
  font-size: 2.5rem;
  color: #f3a64b;
  margin-bottom: 50px;
  font-weight: 700;
}

.minutos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.minutos-categoria {
  background: white;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.minutos-categoria-titulo {
  font-size: 1rem;
  color: white;
  margin-bottom: 0;
  font-weight: 700;
  text-align: center;
  padding: 12px 10px;
  background: linear-gradient(135deg, #f3a64b 0%, #e89b3c 100%);
  border-bottom: none;
}

.minutos-lista {
  padding: 12px 10px;
  flex: 1;
}

.minuto-item {
  padding: 8px 0;
  color: #333;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px dotted #e0e0e0;
}

.minuto-item:last-child {
  border-bottom: none;
}

.minuto-nombre {
  flex: 1;
  line-height: 1.3;
}

.minuto-precio {
  font-weight: 700;
  color: #f3a64b;
  margin-left: 8px;
  flex-shrink: 0;
  font-size: 0.8rem;
}

/* SVG */
.promociones-titulo img,.especiales-titulo img {
  width: 120px;

  height: auto;
  opacity: 0.9;
}

/* Ajustes finos */
.svg-izq {
  margin-right: 20px;
}

.svg-der {
  margin-left: 20px;
  transform: scaleX(-1);
}









/* RESPONSIVE */
@media (max-width: 768px) {
  .promociones-titulo {
    font-size: 2rem;
  }

  .promociones-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
  }

  .promo-header {
    font-size: 0.95rem;
    padding: 10px 8px;
  }

  .promo-item {
    font-size: 0.8rem;
    margin-bottom: 6px;
  }

  .promo-item::before {
    width: 16px;
    height: 16px;
    line-height: 16px;
  }

  .promo-precio {
    font-size: 1rem;
    padding: 8px;
  }

  .promo-btn {
    font-size: 0.8rem;
    padding: 8px 10px;
    margin-top: 8px;
  }

  .especiales-titulo {
    font-size: 1.8rem;
  }

  .especiales-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
  }

  .especial-header {
    font-size: 0.9rem;
    padding: 10px 8px;
  }

  .especial-lista {
    padding: 10px 8px;
  }

  .especial-item {
    padding: 5px 0;
    font-size: 0.8rem;
  }

  .especial-precio {
    font-size: 0.95rem;
    padding: 8px;
  }

  .minutos-titulo {
    font-size: 1.8rem;
  }

  .minutos-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
  }

  .minutos-categoria-titulo {
    font-size: 0.95rem;
    padding: 10px 8px;
  }

  .minutos-lista {
    padding: 10px 8px;
  }

  .minuto-item {
    padding: 6px 0;
    font-size: 0.8rem;
  }

  .minuto-precio {
    font-size: 0.75rem;
  }

  .galeria-titulo {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .galeria-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 15px;
  }



  .comida-nombre {
    font-size: 0.95rem;
    padding: 15px;
  }

  .faq-pregunta {
    font-size: 1.4rem;
  }

  .faq-respuesta-contenido {
    font-size: 1.2rem;

  }
 .boton-pedidos {padding: 15px;
   flex-direction: column;
   align-items: center;
 }
.promociones-titulo img,
.especiales-titulo img {
  display: none;}
/* .boton-pedidos a{
 width: 100%;
 max-width: 320px;
 text-align: center;
 } */
}

@media (max-width: 480px) {
  .promociones-titulo {
    font-size: 1.6rem;
  }

  .promociones-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 12px;

  }

  .especiales-titulo {
    font-size: 1.5rem;
  }

  .especiales-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 0 12px;
  }

  .minutos-titulo {
    font-size: 1.5rem;
  }

  .minutos-grid {
    grid-template-columns:repeat(2, 1fr);
    gap: 10px;
  }

  .galeria-titulo {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .galeria-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0 10px;
  }



  .comida-nombre {
    font-size: 0.85rem;
    padding: 10px;
  }
}




/* RESPONSIVE TABLET */
@media (max-width: 1200px) {
  .galeria-container {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* Tablet */
@media (max-width: 992px) {
  .repartidor {
    width: 250px;
  }
}

/* Móvil */
@media (max-width: 600px) {
  .repartidor {
    width: 240px;
    bottom: -60px;
  }

  .repartidor.activo {
    transform: translateX(-10%);
  }
}