body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.content {
    padding-bottom: 40px; /* Ajuste este valor conforme a altura do seu nav bar */
}


.navbar-bottom {
    background-color: #343a40;
    position: fixed;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
}
.navbar-bottom .nav-item {
    flex-grow: 1;
    text-align: center;
    padding: 0px 0;
    position: relative;
}
.navbar-bottom .nav-item .nav-link {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.70rem;
}
.navbar-bottom .nav-item .nav-link i {
    font-size: 1rem;
}
.navbar-bottom .nav-item .nav-link.active {
    font-weight: bold;
    color: #007bff !important;
}
.navbar-bottom .nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 5%;
    height: 100%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* Efeito de hover */
.navbar-bottom .nav-item .nav-link:hover {
    color: #007bff; /* Cor do texto ao passar o mouse */
    background-color: rgba(255, 255, 255, 0.0);

}


@media (max-width: 768px) {
    .navbar-bottom {
        flex-direction: row; /* Alinhar itens horizon */
        height: auto; /* Altura automática para acomodar os itens */
        padding: 0px 0; /* Espaçamento interno */
        box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1); /* Sombra na parte inferior */
    }
    .navbar-bottom .nav-item {
        flex-grow: 1;
        text-align: center;
        padding: 0px 0;
        position: relative;
        border-top: 1px solid #ddd; /* Linha entre os itens */
    }

    .navbar-bottom .nav-item:first-child {
        border-top: none; /* Remover linha do primeiro item */
    }
}