#menu {
  background: #faf7f2;
  padding: 4rem 1.5rem;
}

#menu h2 {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #c70000;
  margin-bottom: 0.4rem;
  font-weight: 800;
}

.menu-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Subtítulo ── */
.section-subtitle {
  text-align: center;
  color: #777;
  font-size: 1rem;
  margin-bottom: 3rem;
  letter-spacing: 0.03em;
}

/* ════════════════════════════════
   GRID DE PLATILLOS
   ════════════════════════════════ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.8rem;
  justify-items: center;
}

.menu-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  padding: 1.6rem 1rem 1.2rem;
  text-align: center;
  width: 100%;
  max-width: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  overflow: hidden;
}

.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(199, 0, 0, 0.12);
}

/* ── Imagen circular para platillos ── */
.menu-card img {
  display: block;
  width: 130px !important;
  height: 130px !important;
  min-width: 130px;
  min-height: 130px;
  max-width: 130px;
  max-height: 130px;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center;
  border: 4px solid #c70000;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(199, 0, 0, 0.18);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.menu-card:hover img {
  transform: scale(1.07);
}

/* ── Tarjeta destacada (Torta Ahogada) ── */
.menu-card.featured {
  border: 2px solid #c70000;
}

.menu-card.featured img {
  width: 150px !important;
  height: 150px !important;
  min-width: 150px;
  min-height: 150px;
  max-width: 150px;
  max-height: 150px;
  border-color: #c70000;
  box-shadow: 0 4px 20px rgba(199, 0, 0, 0.22);
}

/* ── Info del platillo ── */
.menu-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
}

.menu-info h3 {
  color: #c70000;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
  line-height: 1.3;
}

.menu-info p {
  color: #888;
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

.menu-info span {
  display: inline-block;
  color: #fff;
  background: #c70000;
  font-size: 1rem;
  font-weight: 800;
  margin-top: 0.7rem;
  padding: 0.25rem 1rem;
  border-radius: 50px;
}

/* ════════════════════════════════
   PAQUETES CON ESTILO PROPIO
   ════════════════════════════════ */
.paquetes-title {
  text-align: center;
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  color: #153a8a;
  font-weight: 800;
  margin: 4rem 0 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.paquetes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
}

.paquete-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paquete-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(21, 58, 138, 0.13);
}

/* ── Imagen del paquete (circular como en el menú) ── */
.paquete-img {
  display: block;
  width: 110px !important;
  height: 110px !important;
  min-width: 110px;
  min-height: 110px;
  max-width: 110px;
  max-height: 110px;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center;
  border: 4px solid #c70000; /* Borde rojo para diferenciar */
  margin: 1.5rem auto 0.5rem;
  box-shadow: 0 4px 16px rgba(199, 0, 0, 0.18);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.paquete-card:hover .paquete-img {
  transform: scale(1.07);
}

.paquete-header {
  background: #fff;
  width: 100%;
  padding: 0.8rem 1.2rem;
  text-align: center;
}

.paquete-num {
  color: #c70000;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.paquete-items {
  list-style: none;
  padding: 0.9rem 1.2rem;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
  width: 100%;
}

.paquete-items li {
  color: #555;
  font-size: 0.9rem;
  padding-left: 1rem;
  position: relative;
  text-align: center;
}

.paquete-items li::before {
  content: "•";
  color: #c70000;
  left: 0;
  font-weight: 900;
  text-align: center;
}

.paquete-price {
  display: inline-block;
  color: #fff;
  background: #c70000;
  font-size: 1.7rem;
  font-weight: 800;
  margin-top: 0.7rem;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  width: auto;
  text-align: center;
  border-top: none;
}

/* ════════════════════════════════
   RESPONSIVO
   ════════════════════════════════ */
@media (max-width: 768px) {
  #menu {
    padding: 3rem 1rem;
  }

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

  .menu-card {
    padding: 1.2rem 0.7rem 1rem;
    max-width: 100%;
  }

  .menu-card img {
    width: 100px !important;
    height: 100px !important;
    min-width: 100px;
    min-height: 100px;
    max-width: 100px;
    max-height: 100px;
  }

  .menu-card.featured img {
    width: 110px !important;
    height: 110px !important;
    min-width: 110px;
    min-height: 110px;
    max-width: 110px;
    max-height: 110px;
  }

  .paquetes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .paquete-img {
    width: 90px !important;
    height: 90px !important;
    min-width: 90px;
    min-height: 90px;
    max-width: 90px;
    max-height: 90px;
  }
}

@media (max-width: 480px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }

  .menu-card img {
    width: 85px !important;
    height: 85px !important;
    min-width: 85px;
    min-height: 85px;
    max-width: 85px;
    max-height: 85px;
  }

  .menu-card.featured img {
    width: 95px !important;
    height: 95px !important;
    min-width: 95px;
    min-height: 95px;
    max-width: 95px;
    max-height: 95px;
  }

  .menu-info h3 { font-size: 0.82rem; }
  .menu-info p  { font-size: 0.75rem; }
  .menu-info span { font-size: 0.88rem; }

  .paquetes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .paquete-price { font-size: 1.3rem; }
  
  .paquete-img {
    width: 75px !important;
    height: 75px !important;
    min-width: 75px;
    min-height: 75px;
    max-width: 75px;
    max-height: 75px;
  }
}

@media (max-width: 360px) {
  .paquetes-grid {
    grid-template-columns: 1fr;
  }
}