/* LAYOUT GERAL */
.layout {
    display: flex;
}

/* MENU */
.menu-lateral {
    width: 230px;
    height: 100vh;
    background: linear-gradient(180deg, #1e1e2f, #2a2a40);
    color: white;
    position: fixed;
    left: 0;
    top: 0;
}

.menu-lateral ul {
    list-style: none;
    padding: 0;
}

.menu-lateral li {
    margin: 10px 0;
}

.menu-lateral a {
    display: block;
    padding: 10px;
    border-radius: 8px;
    transition: 0.2s;
    color: white;
    text-decoration: none;
}

.menu-lateral a:hover {
    background: #ff4d6d;
    transform: translateX(5px);
}

.menu-titulo {
    margin-top: 15px;
    font-size: 12px;
    color: #aaa;
}

/* HEADER */
.top-header {
    position: fixed;
    top: 0;
    left: 230px;
    right: 0;
    height: 60px;
    background: #1e1e2f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-logout {
    background: #ff4d6d;
    border: none;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
}

/* ÁREA PRINCIPAL */
.pagina-sistema .main-area {
    margin-left: 230px;
    padding-top: 60px;
    width: 100%;
}

.pagina-sistema main {
    padding: 20px;
}

/* FOOTER */
.footer {
    width: 100%;
    background: #1e1e2f;
    color: #aaa;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    
}


/* ====================================Página Catalogo=================================================*/

.main-area {
    margin-left: 220px;
    width: calc(100% - 220px);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.pagina-sistema main {
    flex: 1;
}

/* FOOTER FIXO NO FINAL */
.footer {
    margin-top: auto;
    background: #1e1e2f;
    color: #aaa;
    text-align: center;
    padding: 12px;
}

