/* ── Mega menu ──────────────────────────────────────────── */
.mega-menu-item {
    position: static;
}

.mega-dropdown-menu {
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    transform: none !important;
    top: 100% !important;
    color: inherit;
    border-radius: 0;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 6px 16px rgba(0,0,0,.1);
    padding: 1.5rem 2rem;
}

.mega-menu-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.mega-menu-col {
    flex: 0 0 auto;
    width: fit-content;
    min-width: 120px;
    max-width: 240px;
    display: flex;
    flex-direction: column;
    padding-right: 2rem;
    margin-bottom: 1rem;
}

.mega-menu-col-header {
    display: block;
    font-weight: 700;
    font-size: .875rem;
    color: #222;
    cursor: default;
    padding-bottom: .4rem;
    margin-bottom: .4rem;
    border-bottom: 1px solid #aaa;
    user-select: none;
}

.mega-menu-col-link {
    display: block;
    font-size: .8125rem;
    color: inherit;
    text-decoration: none;
    padding: .1rem 0;
    line-height: 1.6;
    opacity: .85;
}

.mega-menu-col-link:hover { text-decoration: underline; opacity: 1; }
/* ────────────────────────────────────────────────────────── */

@media(min-width: 1490px) {

    .dropdown-limit {
        min-width: 200px;
    }

    .dropdown-item {
        white-space: normal;
    }

}

@media(min-width: 1101px) and (max-width: 1489px) {

    .dropdown-limit {
        min-width: 200px;
    }
    #menu-principal li:last-child .dropdown-limit {
        left: -70%;

    }

    .dropdown-item {
        white-space: normal;
    }

    #menu-principal li:last-child .dropdown-submenu .dropdown-menu {

        left: -96.5%;
    }
}

@media(min-width: 768px) and (max-width: 1100px) {

    .dropdown-limit {
        width: 10px;
    }

    .dropdown-item {
        white-space: normal;
    }

    #menu-principal li:last-child .dropdown-submenu .dropdown-menu  {
        left: -141%;

    }

}