/* Eliminar subrayado en títulos y textos dentro de los menús */
.menu-item h3, 
.menu-item p,
.menu-item-titulo h2, 
.menu-item-text p,
.menu-item:hover h3,
.menu-item:hover p,
.menu-item:hover .menu-item-titulo h2,
.menu-item:hover .menu-item-text p {
    text-decoration: none !important;
}

/* Eliminar subrayado en todos los estados de los enlaces */
a {
    text-decoration: none !important;
    color: inherit !important;
}

a:hover {
    text-decoration: none !important;
}

/* Nuevos estilos para .menu-item y elementos internos */
.menu-item {
  /* Mantener tus estilos existentes */
  position: relative; /* Para posicionar elementos internos */
  min-height: 90px; /* Altura mínima para todas las tarjetas */
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.menu-item h3 {
  font-size: 1.1rem;
  line-height: 1.4;
  min-height: 3.5em; /* Altura fija para 2 líneas */
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item p {
  margin-top: auto; /* Empuja el párrafo hacia abajo */
  padding-top: 1rem;
}

.menu-item .image-container {
  background: #e8f5e9; /* Fondo verde claro */
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.menu-item:hover .image-container {
  transform: scale(1.05);
}

.menu-item img {
  width: 100%;
  height: 180px; /* Altura fija para imágenes */
  object-fit: contain; /* Mantiene proporciones sin distorsión */
  border-radius: 8px;
}

.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.highlight {
  width: 4px;
  background-color: #059669;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}