.bottom-nav{
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    height:72px;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border-top:1px solid rgba(226,232,240,.9);
    display:flex;
    justify-content:space-around;
    align-items:center;
    z-index:99999;
    box-shadow:0 -4px 20px rgba(0,0,0,.06);
    padding-bottom:env(safe-area-inset-bottom);
}

.bottom-nav-item{
    flex:1;
    border:none;
    background:none;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    text-decoration:none;
    color:#64748b;
    font-size:11px;
    font-weight:600;
    transition:.2s ease;
    cursor:pointer;
    height:100%;
}

.bottom-nav-item svg{
    width:22px;
    height:22px;
    stroke:currentColor;
    stroke-width:2;
    fill:none;
    stroke-linecap:round;
    stroke-linejoin:round;
    transition:.2s ease;
}

.bottom-nav-item:hover,
.bottom-nav-item.active{
    color:#104c89;
}

.bottom-nav-item:active{
    transform:scale(.92);
}

/* =========================
BOTTOM SHEET
========================= */

.sheet-overlay{
    position:fixed;
    inset:0;
    background:rgba(15,23,42,.45);
    backdrop-filter:blur(4px);
    -webkit-backdrop-filter:blur(4px);
    opacity:0;
    visibility:hidden;
    transition:.25s;
    z-index:99990;
}

.sheet-overlay.show{
    opacity:1;
    visibility:visible;
}

.bottom-sheet{
    position:fixed;
    left:0;
    bottom:-100%;
    width:100%;
    background:#fff;
    border-radius:24px 24px 0 0;
    padding:20px;
    transition:.35s cubic-bezier(.34,1.56,.64,1);
    z-index:99991;
    box-shadow:0 -10px 40px rgba(0,0,0,.15);
}

.bottom-sheet.show{
    bottom:72px;
}

.sheet-handle{
    width:52px;
    height:5px;
    background:#cbd5e1;
    border-radius:999px;
    margin:0 auto 22px;
}

.bottom-sheet a{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 16px;
    text-decoration:none;
    color:#0f172a;
    border-radius:16px;
    font-weight:600;
    transition:.2s ease;
    margin-bottom:8px;
}

.bottom-sheet a svg{
    width:22px;
    height:22px;
    stroke:#104c89;
    stroke-width:2;
    fill:none;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.bottom-sheet a:hover{
    background:#f8fafc;
}

body{
    padding-bottom:78px;
}

/* HIDE DI DESKTOP */
@media(min-width:992px){

    body{
        padding-bottom:78px;
    }

}

