@charset "utf-8";
/* CSS Document */

.menu-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1f3f87;
    height: 75px;
    width: 100%;
    border-top: 0px solid #fff;
    border-bottom: 4px solid #fff;
}

.item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    padding: 0px 44px;
    height: 100%;
    transition: background 0.3s;
}

.item:hover {
    background: rgba(255,255,255,0.1);
}

.icone {
    font-size: 36px;
}

/************************* INICIO MOBILE **************************/

@media (max-width: 768px) {
    .menu-banner {
        height: 65px;
    }

    .item {
        flex-direction: column;
        justify-content: center;
        gap: 0;
    }

    .item span {
        display: none;
    }

    .item i {
        font-size: 25px;
    }
}

@media (max-width: 768px) {
    .item:not(:last-child) {
        border-right: 1px solid rgba(255,255,255,0.2);
    }
}

/******************** FIM MOBILE ***************************/

.item:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
}

.item {
    color: #fff;
    text-decoration: none;
}