/*
 * Sapiens Global — acceso de visitantes en escritorio
 * Hace visibles los enlaces Registrarse y Entrar sobre la cabecera blanca.
 * El menú móvil y el control autenticado se mantienen bajo sus reglas existentes.
 */

@media (min-width: 992px) {
  .pkp_navigation_user > li.profile > a:not([data-toggle="dropdown"]) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 16px;
    border: 1px solid #0c789a;
    border-radius: 999px;
    background: #eaf7fb;
    color: #08243e;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(8, 36, 62, 0.12);
    transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  }

  .pkp_navigation_user > li.profile > a:not([data-toggle="dropdown"]):hover,
  .pkp_navigation_user > li.profile > a:not([data-toggle="dropdown"]):focus,
  .pkp_navigation_user > li.profile > a:not([data-toggle="dropdown"]):focus-visible {
    border-color: #0c789a;
    background: #0c789a;
    color: #ffffff;
    text-decoration: none;
    outline: 3px solid rgba(12, 120, 154, 0.3);
    outline-offset: 2px;
    box-shadow: 0 4px 14px rgba(8, 36, 62, 0.2);
  }

  .pkp_navigation_user > li.profile + li.profile {
    margin-left: 8px;
  }
}
