.header{
    position:absolute;
    width:100%;
    z-index:9999;
}

.container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

.header-topbar{
    width:100%;
    background:#0086D9;
}

.header-topbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
    padding:10px 20px;
}

.header-topbar_inf{
    display:flex;
    align-items:center;
    gap: 10px;
     color:white;
    font-size:13px;
}

.header-topbar_red{
    display:flex;
    gap:15px;
}

.header-topbar_red a{
    width:20px;
    height:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-radius:50%;
    color:white;
    transition:.3s;
}

.header-topbar_red a:hover{
    transform:translateY(-3px);
}

.header-menu{
    overflow:visible;
} 


.header-menu{
    width:100%;
    background: rgba(0, 0, 0, 0.18);
    box-shadow: 0 4px 30px rgba(0,0,0,.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
    position:absolute;
    top:42px; /* altura de la barra azul */
    left:0;
    z-index:9999;
}


.header-menu_nav{
    display: flex;
    flex-direction: row;
    margin:0 auto;
    gap: 45px
}

li{
        letter-spacing: 0.05rem;
}

.logo img{
    height:70px;
    width:auto;
    display:block;
}

.header-menu_nav ul{
    display: flex;
    justify-content:space-between;
    align-items: center;
    gap: 30px;
    list-style: none;
    
}

.header-menu_nav a {
    font-weight: 600;
    font-size: inherit;
    color: white;
    text-decoration: none;
    position: relative;
    
}

.header-menu_nav a {
    font-weight: 600;
    font-size: inherit;
    color: white;
    text-decoration: none;
    position: relative;
    transition: all 20s ease;
}

.header-menu_nav a:hover {
    color: #1aaaff;
}

.header-menu_nav  a::after {
    content: "";
    position: absolute;
    width: 100%;
    top: 19px;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #1aaaff;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.6s ease-out;
}

.header-menu_nav .logo-home_a::after {
    content: "";
    position: absolute;
    width: 100%;
    top: 78px;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #1aaaff;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.6s ease-out;
}

.header-menu_nav a:hover::after{
    transform: scaleX(1);
    transform-origin: bottom left;
}

.mod-menu li{
    position:relative;
}

.mod-menu li:hover > .mod-menu__sub{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.mod-menu__heading{
    color:white !important;
    font-size:inherit;
    font-weight:600;
    display:inline-flex;
    align-items:center;
    gap:8px;
    position:relative;
}

.mod-menu__heading::before{
    content:"▼";
    font-size:15px;
    color:#fff;
    display:inline-block;
    transition:transform .3s ease;
}

.mod-menu__heading::after{
    content:"";
    position:absolute;
    width:100%;
    left:0;
    top:25px;
    height:2px;
    background:#1aaaff;
    transform:scaleX(0);
    transform-origin:bottom right;
    transition:transform .6s ease-out;
}

.nav-item.item-108:hover > .mod-menu__heading::before{
    transform:rotate(180deg);
}

.nav-item.item-108:hover > .mod-menu__heading::after{
    transform:scaleX(1);
    transform-origin:bottom left;
}

.mod-menu__sub{
    position:absolute;
    top:220%;
    left:0;
    min-width:280px;
    background:#fff;
    border-top:3px solid #0086D9;
    list-style:none;
    padding:0;
    margin:0;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:ALL .35s ease;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    z-index:9999;
    display:block !important;
    border-radius:0 0 10px 10px;
}

.mod-menu__sub li{
    display:block;
    width:100%;
    border-bottom:1px solid #f0f0f0;
}

.mod-menu__sub li:last-child{
    border-bottom:none;
}

.mod-menu__sub li a{
    display:block;
    width:100%;
    padding:15px 20px;
    background:#fff;
    color:#0086D9 !important;
    text-decoration:none;
    white-space:nowrap;
    transition:.3s ease;
    font-size:16px;
    font-weight:700;
}

.mod-menu__sub li a:hover{
    background:#f5f5f5;
    border-left:4px solid #0086D9;
    padding-left:25px;
}

.mod-menu__sub li a::after{
    display:none !important;
}

.mod-menu__sub .deeper.parent{
    position:relative;
}

.mod-menu__sub .deeper.parent > .mod-menu__sub{
    position:absolute;
    top:0;
    left:100%;
    min-width:250px;
    background:#fff;
    border-top:3px solid #0086D9;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    opacity:0;
    visibility:hidden;
    transform:translateX(10px);
    transition:all .3s ease;
    z-index:10000;
}

.mod-menu__sub .deeper.parent:hover > .mod-menu__sub{
    opacity:1;
    visibility:visible;
    transform:translateX(0);
}