﻿.ImgShip {
    margin-top:0.2%;
}
    .ImgShip:hover {
        cursor:pointer;
    }

.btnNav {

}
    .btnNav:hover {
        cursor: pointer;
        border: 1px solid #1f2937;
    }

.nav-item {
    position: relative;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0.25rem 0;
    transition: color 0.3s ease;
}

    .nav-item::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0;
        height: 2px;
        background-color: #fff9c4; /* azul acento */        
        transition: width 0.3s ease;
    }

    .nav-item:hover {
        color: #3b82f6; /* cambia el color del texto */
    }

        .nav-item:hover::after {
            width: 100%; /* subrayado se expande */
        }

#IdNav {
    background-color: #3b82f6; /* azul acento */
}