/* ¿Tienes preguntas? — header dropdown (overlay; does not shift nav layout) */

.nav-questions-dropdown {
  position: relative;
  align-self: center;
  flex: 0 0 auto;
}

.nav-questions-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 5px 12px;
  margin: 0;
}

.nav-questions-dropdown-trigger[aria-expanded="true"] {
  color: #2563eb;
}

.nav-questions-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0.15rem;
  min-width: 17.5rem;
  max-width: 20rem;
  margin: 0;
  padding: 0.4rem;
  background: #fff;
  border: none;
  border-radius: 0.5rem;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.06),
    0 16px 40px rgba(15, 23, 42, 0.16);
  z-index: 1300;
}

.nav-questions-dropdown.is-open .nav-questions-dropdown-menu {
  display: flex;
}

.nav-questions-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.85rem;
  border: none;
  border-radius: 0.4rem;
  background: transparent;
  color: #1a365d;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
}

.nav-questions-dropdown-item:hover,
.nav-questions-dropdown-item:focus-visible {
  background: #ebf8ff;
  color: #1a365d;
  outline: none;
}

.nav-questions-dropdown-item i {
  color: #2563eb;
  width: 1.1rem;
  text-align: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.mobile-menu-sublabel {
  margin: 0.35rem 1rem 0.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #64748b;
}

.mobile-menu-link--action {
  width: calc(100% - 2rem);
  margin-left: 1rem;
  margin-right: 1rem;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
}
