/* Estilos da barra lateral */
.sidebar {
    width: 250px;
    background-color: #232323;
    padding: 20px;
    position: fixed;
    top: 0;
    left: -300px; /* Esconde a barra lateral fora da tela */
    height: 100%;
    transition: left 0.3s ease;
    z-index: 1000;
}

.sidebar.active {
    left: 0; /* Move a barra lateral para dentro da tela */
    
}

/* Estilos do botão "hambúrguer" */
.hamburger {
    font-size: 2rem;
    position: fixed;
    top: 20px;
    left: 20px;
    cursor: pointer;
    z-index: 1001;
    color: #ffc107;
}

/* Outros estilos */

.sidebar-header {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    margin-top: 55px;

    
}

.sidebar a {
    color: #ffc107;
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: 45px;
    margin-bottom: 15px;
    display: block;
    transition: color 0.3s ease;
    
}

.sidebar a:hover {
    color: #fff;
}
