/* ==========================================================
   Rodapé fixo - App Cliente SEAL
   Arquivo: assets/css/bottom_nav_cliente.css
   ========================================================== */

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    padding: 6px 0 8px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.10);
    max-width: 500px;
    margin: 0 auto;
    height: 74px;
    align-items: center;
}

.nav-btn {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: none;
    border: none;
    padding: 6px 4px;
    color: #666666;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    font-family: inherit;
}

.nav-btn:hover {
    color: #2563eb;
}

.nav-btn.active {
    color: #2563eb;
}

.nav-icon {
    font-size: 20px;
    margin-bottom: 4px;
    line-height: 1;
}

.nav-label {
    font-size: 10.5px;
    font-weight: 500;
    line-height: 1.15;
    text-align: center;
}

/* Botão central: Minha O.S */
.nav-btn-center {
    margin-top: -24px;
    color: #2563eb !important;
}

.nav-center-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
    border: 4px solid #ffffff;
    margin-bottom: 2px;
}

.nav-label-center {
    color: #2563eb;
    font-weight: 700;
    font-size: 11px;
}

/* Ajustes para evitar o conteúdo ficar escondido atrás do rodapé */
.has-bottom-nav {
    padding-bottom: 95px !important;
}

.has-bottom-nav .content {
    padding-bottom: 105px !important;
}

@media (max-width: 768px) {
    .bottom-nav {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .bottom-nav {
        height: 72px;
    }

    .nav-center-circle {
        width: 54px;
        height: 54px;
        font-size: 22px;
    }

    .nav-icon {
        font-size: 19px;
    }

    .nav-label {
        font-size: 10px;
    }

    .nav-label-center {
        font-size: 10px;
    }
}