.msp-nav {
    width: 100%;
    background: #111;
    padding: 6px 16px;
}

/* menú horizontal */
.msp-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* enlaces base */
.msp-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;           /* negrito */
    text-transform: uppercase; /* mayúsculas */
    letter-spacing: 0.05em;
    line-height: 1.2;
    padding: 4px 0;
    display: inline-block;
    transition: color 0.25s ease;
}

/* hover */
.msp-menu a:hover {
    color: #ffd700;
}

/* activo */
.msp-menu .current-menu-item > a,
.msp-menu .current_page_item > a {
    color: #ffd700;
}
