

  body {


}

/* CONTENEDOR */
.menu-edomex {
  display: flex;
  gap: 18px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.menu-card {
  flex: 1;
 background: linear-gradient(135deg, #38352f, #8a2036);;
  color: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
  cursor: pointer;
  overflow: hidden;
  position: relative;

  /* ESTADO CERRADO */
  max-height: 64px;
  transition: max-height 0.45s ease, box-shadow 0.45s ease;
}

/* DETALLE INSTITUCIONAL */
.menu-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #b39760;
}

/* TEXTO */
.title {
  font-size: 16px;
  font-weight: 700;
}

.desc {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.25s ease;
}

/* EXPANSIÓN AUTOMÁTICA */
.menu-card:hover {
  max-height: 300px; /* suficiente para cualquier texto */
  box-shadow: 0 16px 38px rgba(0,0,0,0.25);
}

.menu-card:hover .desc {
  opacity: 1;
}

/* DESKTOP: HOVER */
.menu-card:hover,
.menu-card:focus {
  max-height: 300px;
  box-shadow: 0 16px 38px rgba(0,0,0,0.25);
}

.menu-card:hover .desc,
.menu-card:focus .desc {
  opacity: 1;
}

/* 📱 MÓVIL */
@media (max-width: 768px) {
  .menu-edomex {
    flex-direction: column;
  }

  .menu-card {
    max-height: 64px;
  }

  /* TOQUE EN MÓVIL */
  .menu-card:focus {
    max-height: 400px;
  }
}