.elementor-2544 .elementor-element.elementor-element-8bb72c4{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-6b8c1aa *//* -----------------------------------------------------------
   RESET BÁSICO / PADRÃO GLOBAL
----------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', Arial, sans-serif;
    background: #f5f6fb;
    color: #111;
}

/* -----------------------------------------------------------
   SIDEBAR LATERAL
----------------------------------------------------------- */
.sidebar {
    width: 260px;
    height: 100vh;
    background: #005DE4;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 3px 0 12px rgba(0,0,0,0.15);
    z-index: 200;
}

.sidebar-logo {
    text-align: center;
    padding: 35px 0 25px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.sidebar-logo img {
    width: 140px;
    user-select: none;
}

.sidebar-menu {
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.25s ease;
}

.menu-item:hover {
    background: rgba(255,255,255,0.18);
    transform: translateX(4px);
}

.menu-item.active {
    background: rgba(255,255,255,0.28);
    font-weight: 600;
}

/* Ícones */
.menu-item .icon {
    font-size: 20px;
    display: flex;
    align-items: center;
}

/* -----------------------------------------------------------
   ÁREA PRINCIPAL DO DASHBOARD
----------------------------------------------------------- */
.dashboard-container {
    margin-left: 280px;
    padding: 40px;
    min-height: 100vh;
}

/* Título */
.dashboard-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* -----------------------------------------------------------
   SEÇÕES (PÁGINAS DO SPA)
----------------------------------------------------------- */
.page {
    display: none;
    animation: fadeIn 0.25s ease;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* -----------------------------------------------------------
   FILTROS E CAIXAS SUPERIORES
----------------------------------------------------------- */
.dashboard-card-filters {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 25px;
    align-items: end;
    margin-bottom: 35px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-group label {
    font-size: 14px;
    font-weight: 600;
}

.filter-group select {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 15px;
}

/* Botão exportar */
.export-btn {
    padding: 10px 16px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    transition: 0.2s;
}

.export-btn:hover {
    background: #f0f0f0;
}

.export-btn.primary {
    background: #005DE4;
    color: #fff;
    border: none;
}

/* -----------------------------------------------------------
   CARDS PEQUENOS (KPIs)
----------------------------------------------------------- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 22px;
    margin-bottom: 35px;
}

.info-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    border-top: 6px solid;
}

.info-card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
}

.info-card .value {
    font-size: 30px;
    font-weight: 700;
}

/* Cores */
.blue { border-color: #005DE4; }
.yellow { border-color: #F2B705; }
.pink { border-color: #DF00A3; }
.red { border-color: #D60000; }
.gray { border-color: #aaa; }

/* -----------------------------------------------------------
   CARDS GRANDES
----------------------------------------------------------- */
.large-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
    gap: 25px;
}

.large-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    height: 310px;
    display: flex;
    flex-direction: column;
}

.large-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.large-card .empty {
    margin: auto;
    text-align: center;
    color: #777;
    font-size: 15px;
}

/* -----------------------------------------------------------
   TABELAS PADRÃO
----------------------------------------------------------- */
.table-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.std-table {
    width: 100%;
    border-collapse: collapse;
}

.std-table th {
    text-align: left;
    padding: 12px 8px;
    font-size: 14px;
    border-bottom: 2px solid #eee;
    font-weight: 700;
}

.std-table td {
    padding: 12px 8px;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

/* -----------------------------------------------------------
   INPUTS E CAMPOS DE PESQUISA
----------------------------------------------------------- */
input[type="search"],
input[type="text"],
input[type="number"],
input[type="date"] {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    outline: none;
    transition: 0.15s;
    background: #fff;
}

input:focus {
    border-color: #005DE4;
    box-shadow: 0 0 0 3px rgba(0,93,228,0.15);
}

/* -----------------------------------------------------------
   RESPONSIVIDADE REAL
----------------------------------------------------------- */
@media (max-width: 1024px) {
    .dashboard-container {
        margin-left: 0;
        padding: 25px;
    }

    .sidebar {
        width: 100%;
        height: auto;
        flex-direction: row;
        overflow-x: auto;
        padding: 10px 0;
    }

    .sidebar-menu {
        flex-direction: row;
        gap: 8px;
        padding: 0 10px;
    }

    .menu-item {
        padding: 10px 14px;
        border-radius: 6px;
        font-size: 15px;
    }
}

@media (max-width: 720px) {
    .dashboard-card-filters {
        flex-direction: column;
        gap: 15px;
    }

    .large-cards-grid,
    .cards-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */