.mk-nav-bar {
    width: 100%;
    margin-top: -32px;
    position: relative;
    z-index: 30;
    margin-bottom: 24px;
}

.mk-nav-bar .mk-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: center;
}

/* CONTENEDOR ALARGADO */
.mk-nav-bar__pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 760px;
    background: #1B222A;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 6px 12px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    overflow-x: auto;
    scrollbar-width: none;
}

.mk-nav-bar__pill::-webkit-scrollbar {
    display: none;
}

/* ÍTEMS MÁS SEPARADOS Y CON BLANCO PURO */
.mk-nav-bar__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
    text-decoration: none;
    color: #ffffff; /* BLANCO PURO por defecto */
    transition: color 0.2s ease;
    position: relative;
}

/* HOVER Y ACTIVO: VERDE */
.mk-nav-bar__item:hover,
.mk-nav-bar__item.is-active {
    color: #0CD664;
}

/* LÍNEA VERDE INFERIOR DEL ACTIVO */
.mk-nav-bar__item.is-active::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 32px;
    height: 3px;
    background: #0CD664;
    border-radius: 3px 3px 0 0;
}

/* ICONOS MÁS GRANDES (26px) */
.mk-nav-bar__icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SOLAMENTE HEREDAN EL COLOR DE LA LÍNEA (STROKE), SIN RELLENO */
.mk-nav-bar__icon-svg {
    width: 100%;
    height: 100%;
    /* Quitamos el fill para que conserven su estilo original delineado */
}

/* TEXTO */
.mk-nav-bar__label {
    font-family: 'Averta Std', sans-serif;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.2px;
}

/* RESPONSIVE PARA CELULARES */
@media (max-width: 767px) {
    .mk-nav-bar {
        margin-top: -24px; 
        margin-bottom: 16px;
    }
    .mk-nav-bar__pill {
        justify-content: flex-start;
        padding: 4px 8px;
        border-radius: 10px;
    }
    .mk-nav-bar__item {
        flex: none;
        padding: 10px 16px;
        min-width: 75px;
        gap: 6px;
    }
    .mk-nav-bar__icon {
        width: 22px;
        height: 22px;
    }
    .mk-nav-bar__label {
        font-size: 11px;
    }
}