.div-header {
    width: 100%;
    max-height: 350px;
}

.img-topo {
    width: 100%;
    border-bottom: solid #d9d9d9 10px;
    background-color: #91dae426;
}

.navBar-horizontal {
    position: relative;
    top: -34px;
    width: 100%;
    min-height: 44px;
    border-bottom: solid #88d4da 10px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-right: 26px;
}

.menu-toggle {
    display: none;
}

.navBar-horizontal-menu {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 2px;
    margin-right: 0;
    z-index: 299;
    padding: 0;
}

.navBar-horizontal-menu li {
    display: flex;
    min-width: 104px;
    height: 31px;
    list-style: none;
    border-radius: 12px 12px 0 0;
    border: #c5d6d8 solid 1px;
    border-bottom: none;
    margin-right: 0;
    font-weight: bolder;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f8fcfd 0%, #eff7f8 100%);
    padding: 1px 6px;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.navBar-horizontal-menu li a {
    color: #5f7478;
    text-decoration: none;
    font-size: clamp(0.62rem, 0.58rem + 0.15vw, 0.72rem);
    text-align: center;
    display: block;
    line-height: 0.88rem;
    width: 100%;
    overflow-wrap: break-word;
    letter-spacing: 0.02em;
}

.navBar-horizontal-menu li:hover,
.navBar-horizontal-menu li.active {
    border-color: #88d4da;
    border-top: solid #3b9197 3px;
    background: linear-gradient(180deg, #ffffff 0%, #ebf5f6 100%);
    box-shadow: 0 -3px 10px -8px rgba(46, 126, 133, 0.95);
    transform: translateY(-1px);
}

.navBar-horizontal-menu li:hover a,
.navBar-horizontal-menu li.active a {
    color: #3b9197;
    font-weight: 700;
}

@media (max-width: 600px) {
    .navBar-horizontal {
        position: static;
        min-height: 0;
        border-bottom: none;
        padding-right: 0;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: calc(100% - 20px);
        margin: 0 10px 8px;
        border: 1px solid #2f7f85;
        border-radius: 10px;
        background: linear-gradient(120deg, #3b9197 0%, #2a7378 100%);
        color: #ffffff;
        padding: 10px 14px;
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        cursor: pointer;
        box-shadow: 0 14px 22px -18px rgba(22, 63, 68, 0.9);
        position:fixed;
        bottom: -10px;
        z-index: 15;
    }

    .navBar-horizontal-menu {
        display: none;
        flex-direction: column;
        background: linear-gradient(150deg, #f8fcfd 0%, #ecf6f7 100%);
        border: 1px solid #cbe4e7;
        border-radius: 12px;
        box-shadow: 0 20px 34px -26px rgba(17, 52, 57, 0.9);
        padding: 10px;
        width: calc(100% - 20px);
        gap: 8px;
        margin: 0 10px;
    }

    .navBar-horizontal-menu.show {
        display: flex;
        position: fixed;
        bottom:40px;
        z-index: 14;
        height: max-content;
    }

    .navBar-horizontal-menu li {
        border-radius: 10px;
        padding: 0;
        width: 100%;
        min-width: 220px;
        min-height: 44px;
        height: auto;
        border: 1px solid #d2e7e9;
        background: #f7fbfc;
    }

    .navBar-horizontal-menu li a {
        font-size: 0.78rem;
        line-height: 1.2rem;
        padding: 10px 8px;
    }

    .navBar-horizontal-menu li:hover,
    .navBar-horizontal-menu li.active {
        transform: none;
        border-top: 1px solid #2f8388;
        border-color: #2f8388;
        box-shadow: 0 10px 18px -20px rgba(23, 66, 72, 0.95);
    }
}
