/* MENU */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 240px;
    background: #ffffff54;
    backdrop-filter: blur(20px);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    transition: 0.3s;
    z-index: 1000;
}

.menulist {
    display: flex;
    flex-direction: column;
}

.sidebar h1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff4718;
    margin-bottom: 1.5rem;
}

.login-btn {
    background: #5b4cff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 30px;
    transition: 0.3s;
}

.login-btn:hover {
    background: #4b3ce3;
}

.sidebar a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    margin: 10px 0;
    transition: 0.2s;
}

.sidebar a:hover {
    color: #5b4cff;
}

.menu-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    background: #5b4cff;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    display: none;
    z-index: 1100;
}

    /* RESPONSIVO */
    @media (max-width:768px) {
        .menu-toggle {
            display: block;
        }

        .sidebar {
            left: -240px;
        }

        .sidebar.active {
            left: 0;
        }

        .about-section {
            flex-direction: column;
            text-align: center;
        }

        .about-img img {
            max-width: 100%;
        }
    }