/* =========================================================
   FOOTER CLIENTE
   Arquivo: public/assets/cliente/css/footer.css
   ========================================================= */

/* =========================================================
   RODAPÉ
   ========================================================= */
.cliente-footer {
    position: relative;
}

.cliente-footer-copy {
    padding: 18px 16px 100px;
    color: #666;
    font-size: 14px;
}

.cliente-footer-copy p {
    margin: 0;
}

/* =========================================================
   NAVEGAÇÃO INFERIOR
   ========================================================= */
.cliente-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: #ffffff;
    border-top: 1px solid #e9e9e9;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
}

.cliente-bottom-nav-fixed {
    border-radius: 0;
}

.cliente-bottom-nav-float {
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 22px;
    border: 1px solid #ececec;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.cliente-bottom-nav-item {
    position: relative;
    flex: 1;
    min-width: 0;
    color: #777;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 4px;
    font-size: 11px;
    font-weight: 700;
    transition: 0.2s ease;
}

.cliente-bottom-nav-item i {
    font-size: 18px;
}

.cliente-bottom-nav-item.is-active {
    color: #df1f26;
}

.cliente-bottom-nav-badge {
    position: absolute;
    top: 3px;
    right: 18px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: #ffcf00;
    color: #222;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    font-size: 10px;
    line-height: 1;
}