/* ─── Mega-menú "Soluciones" (estilo monday.com) — componente compartido ─── */
.sol-trigger {
  font-family: inherit; font-size: 14px; color: inherit; line-height: 1;
  background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px; padding: 0;
}
.sol-trigger .sol-caret { font-size: 9px; transition: transform .2s ease; opacity: .75; }
.sol-trigger[aria-expanded="true"] .sol-caret { transform: rotate(180deg); }

.sol-overlay {
  position: fixed; inset: 0; background: rgba(6,21,50,0.38);
  opacity: 0; visibility: hidden; transition: opacity .22s ease; z-index: 1000;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.sol-overlay.open { opacity: 1; visibility: visible; }

.sol-panel {
  position: fixed; left: 50%; top: 70px;
  transform: translateX(-50%) translateY(-10px);
  width: min(940px, calc(100vw - 28px));
  background: #fff; border: 1px solid #e8e8e8; border-radius: 16px;
  box-shadow: 0 28px 70px rgba(6,21,50,0.22);
  padding: 26px 26px 18px; z-index: 1001;
  opacity: 0; visibility: hidden;
  transition: opacity .22s ease, transform .22s ease;
}
.sol-panel.open { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }

.sol-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; }
.sol-group-label {
  font-family: 'DM Mono', monospace; font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: #9aa3b2;
  padding: 0 12px; margin-bottom: 6px;
}
.sol-item {
  display: flex; gap: 13px; align-items: flex-start; padding: 11px 12px;
  border-radius: 11px; transition: background .15s ease; text-decoration: none;
}
.sol-item:hover { background: #f2f6fc; }
.sol-ico {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: #eef3fb; color: #2c5f9e; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.sol-item-body { min-width: 0; }
.sol-item-t {
  font-size: 14.5px; font-weight: 700; color: #16202c; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 8px;
}
.sol-badge {
  font-family: 'DM Mono', monospace; font-size: 9.5px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: #2c5f9e;
  background: #eef3fb; border-radius: 100px; padding: 2px 7px;
}
.sol-item-d { font-size: 12.5px; color: #7b8595; line-height: 1.45; margin-top: 3px; }

.sol-foot {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid #eee; flex-wrap: wrap;
}
.sol-foot a { font-size: 13px; color: #2c5f9e; font-weight: 600; text-decoration: none; }
.sol-foot a:hover { color: #1e4a85; }
.sol-foot .sol-cta {
  background: #2c5f9e; color: #fff; border-radius: 6px; padding: 9px 16px; font-size: 13px; font-weight: 600;
}
.sol-foot .sol-cta:hover { background: #1e4a85; color: #fff; }

@media (max-width: 820px) {
  .sol-groups { grid-template-columns: 1fr; gap: 4px; }
  .sol-panel { top: 64px; padding: 20px 16px 14px; }
}
