.rm-menu-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-family: sans-serif;
}

.rm-seccion {
  margin-bottom: 50px;
}

.rm-titulo-seccion {
  text-align: center;
  font-size: 2em;
  color: #222;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-weight: 800;
  font-family: 'Playfair Display', serif !important;
  margin-bottom: 40px !important;
}

.rm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Estado oculto inicial para platillos extra */
/* ==========================================================================
   ESTILOS DE LAS TARJETAS (CARDS)
   ========================================================================== */
.rm-card {
  background: #ffffff;
  border-radius: 16px;
  /* Bordes más redondeados y modernos */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* Sombra mucho más suave y profunda */
  border: 1px solid rgba(0, 0, 0, 0.03);
  /* Borde súper sutil */
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.rm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.rm-img {
  width: 100%;
  height: 240px;
  /* Imagen ligeramente más alta */
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid #f9f9f9;
}

.rm-info {
  padding: 25px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rm-info h3 {
  margin: 0 0 8px 0;
  font-size: 1.35em;
  color: #2c3e50;
  font-weight: 800;
}

.rm-precio {
  font-size: 1.6em;
  font-weight: 900;
  color: #e74c3c;
  /* Rojo apetitoso */
  margin-bottom: 25px;
}

/* ==========================================================================
   BOTÓN DE WHATSAPP
   ========================================================================== */
.rm-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #25D366;
  color: #fff;
  padding: 14px 20px;
  border-radius: 50px;
  /* Forma de píldora moderna */
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05em;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  /* Brillo verde */
  transition: all 0.3s ease;
  margin-top: auto;
  /* Empuja el botón siempre hacia abajo */
}

.rm-btn-wa:hover {
  background: #128C7E;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

/* ==========================================================================
   BOTÓN "VER MÁS PLATILLOS"
   ========================================================================== */
.rm-btn-container {
  text-align: center;
  margin-top: 40px;
}

.rm-btn-ver-mas {
  background: transparent;
  color: #2c3e50;
  border: 2px solid #2c3e50;
  padding: 12px 35px;
  border-radius: 50px;
  /* Forma de píldora */
  font-size: 1.05em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rm-btn-ver-mas:hover {
  background: #2c3e50;
  color: #fff;
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.2);
}

.rm-card.rm-oculto {
  display: none;
}

/* ==========================================================================
   ADAPTACIÓN PARA MÓVILES Y TABLETS (RESPONSIVE)
   ========================================================================== */

/* Para Tablets y pantallas medianas */
@media (max-width: 768px) {
  .rm-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }

  .rm-titulo-seccion {
    font-size: 2em !important;
    /* Reducimos un poco el título */
    margin-bottom: 25px;
  }
}

/* Para Celulares */
@media (max-width: 480px) {
  .rm-menu-container {
    padding: 0 20px;
    /* Le da márgenes a los lados para que no choque con la pantalla */
    box-sizing: border-box;
  }

  .rm-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .rm-card {
    max-width: 380px;
    /* Evita que la tarjeta se estire exageradamente */
    margin: 0 auto;
    /* Centra la tarjeta si la pantalla es un poco más ancha */
    width: 100%;
  }

  .rm-img {
    height: 200px;
  }

  .rm-info {
    padding: 20px 15px;
  }

  .rm-info h3 {
    font-size: 1.25em;
  }

  .rm-precio {
    font-size: 1.4em;
    margin-bottom: 20px;
  }

  .rm-btn-wa {
    font-size: 1em;
    padding: 12px 15px;
  }

  .rm-btn-ver-mas {
    width: 100%;
    box-sizing: border-box;
  }
}