@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: 'Roboto', serif;
    background-color: #e6e4e4;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.container {
    width: 900px;
    min-height: 100vh;
    margin: 20px auto;
    padding: 20px;
    background-color: #f5f0f0;
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.navbar {
    background-color: #49608a;
    color: #fff;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100%;
}

.nav-menu li {
    padding: 21px;
    margin: 0;
    transition: 0.3s;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
}

.nav-menu a:hover {
    color: #92b7e7;
    transition: color 0.3s;
    font-weight: bold;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    height: calc(100% - 70px);
}

.page {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.left_page {
    width: 20%;
    padding: 0;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.left_page ul {
    list-style: none;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    background-color: #636161;
}

.left_page li {
    padding: 10px;
    border-bottom: 1px solid #fff;
    transition: 0.3s;
}

.left_page li:hover {
    background-color: #8a8c8f;
}

.left_page a {
    color: #fff;
    text-decoration: none;
}

.right_page {
    width: 80%;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}


.footer {
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: #49608a;
    bottom: 0;
    left: 0;
}

.footer span {
    font-size: 0.875rem;
    margin-top: 5px;
    color: #fff;
}

.hamburger {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Sidebar */
.sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #49608a;
    color: white;
    padding-top: 20px;
    transition: left 0.3s ease;
    z-index: 1000;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
}

.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
    text-align: center;
}

.sidebar li {
    padding: 15px 20px;
}

.sidebar li:hover {
    background-color: #92b7e7;
}

.sidebar a {
    color: white;
    text-decoration: none;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

/* Responsivo */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
    }

    .container {
        width: 100%;
        height: auto;
        padding: 20px;
        margin: 0 auto;
        flex-direction: column;
        overflow: auto;
    }
}