/* ============================= */
/* AJUSTE DO CONTAINER PRINCIPAL */
/* ============================= */
#page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#content-wrap {
    flex: 1;
    padding-bottom: 60px;
}

/* ============================= */
/* FOOTER FIXO E DINÂMICO       */
/* ============================= */
#newbase-footer-container {
    background: #FFFFFF;
    color: #666;
    position: relative;
    bottom: 0;
    padding: 10px 20px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: left 0.3s ease-in-out, width 0.3s ease-in-out;
}

/* 🔹 Footer acompanha a sidebar */
#newbase-footer-container {
    transition: margin-left 0.3s ease-in-out, width 0.3s ease-in-out;
    margin-left: 0px; /* Inicia com espaço para a sidebar */
    width: 100%;
}

/* 🔹 Footer quando sidebar recolhida */
body.sidebar-collapsed #newbase-footer-container {
    margin-left: -300px;
    min-width: 1900px;
    width: 100%;
}
/* ============================= */
/* ESTRUTURA DO FOOTER           */
/* ============================= */
.newbase-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================= */
/* SEÇÃO ESQUERDA DO FOOTER      */
/* ============================= */
.newbase-footer-left {
    display: flex;
    gap: 20px;
    margin-left: -160px;
    margin-top: -40px;
    align-items: center;
    justify-content: flex-start;
}

/* Ajuste dos links */
.newbase-footer-link {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    color: #000000;
    font-size: 12px;
    transition: color 0.3s ease-in-out;
    text-align: left;
}

.newbase-footer-link:hover {
    color: #333;
}
/* ============================= */
/* SEÇÃO CENTRAL DO FOOTER       */
/* ============================= */
.newbase-footer-center {
    text-align: center;
    margin-top: 15px !important;
}

.newbase-footer-brand {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #808191;
    font-size: 14px;
}

.newbase-footer-copy {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #000000;
    margin-top: 15px;
}

/* ============================= */
/* SEÇÃO DIREITA DO FOOTER       */
/* ============================= */
.newbase-footer-right {
    text-align: right;
    margin-right: -130px;
    margin-top: 0px;
}

.newbase-footer-right h6 {
    font-family: 'Roboto', sans-serif;
    font-size: 12px !important;
    font-weight: 400;
    color: #808191;
}