/* ==========================================================================
   TEMA ABAETÉ - NOVO DESIGN DO DASHBOARD (Alegre, Colorido e Animado)
   ========================================================================== */

:root {
    /* Cores Oficiais Abaeté */
    --abaete-blue: #004696;
    --abaete-blue-soft: #5483BA;
    --abaete-pink-base: #F4E1E1; /* O rosa claro solicitado como fundo */
    --abaete-pink-dark: #E2B3B3;
    --abaete-yellow: #FFEE9D;
    --abaete-yellow-vivid: #FFD378;
    
    --text-primary: #004696;
    --text-secondary: #5483BA;
    --bg-floating: #FFFFFF;
    
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    --radius-huge: 40px;
    --radius-lg: 24px;
    --radius-md: 16px;
    
    --shadow-soft: 0 10px 40px -10px rgba(0, 70, 150, 0.15);
    --shadow-hover: 0 15px 50px -10px rgba(0, 70, 150, 0.25);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* 1. Global e Fundo */
body {
    font-family: 'Merriweather Sans', sans-serif !important;
    background-color: var(--abaete-pink-base) !important;
    color: var(--text-primary);
    position: relative;
}

/* Substitui fontes de tudo que for possível para manter a consistência */
h1, h2, h3, h4, h5, h6, p, a, span, div, input, select, button, textarea {
    font-family: 'Merriweather Sans', sans-serif;
}

/* Grafismos lúdicos flutuantes de fundo */
.bg-shape {
    position: fixed;
    z-index: -1;
    opacity: 0.6;
    animation: floatAnimation 8s ease-in-out infinite alternate;
}
.shape-blue {
    top: -5%; left: -5%;
    width: 300px; height: 300px;
    background: var(--abaete-blue-soft);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    opacity: 0.1;
}
.shape-yellow {
    bottom: 10%; right: -5%;
    width: 250px; height: 250px;
    background: var(--abaete-yellow);
    border-radius: 50%;
    animation-delay: -2s;
}
.shape-pink {
    top: 40%; left: 30%;
    width: 150px; height: 150px;
    border: 15px solid var(--abaete-pink-dark);
    border-radius: 50%;
    opacity: 0.3;
    animation-duration: 12s;
}

@keyframes floatAnimation {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-30px) rotate(10deg); }
}

/* 2. Loader Animado */
.full-page-loader {
    background: var(--abaete-pink-base) !important;
    flex-direction: column;
}
.loader-spinner {
    width: 60px; height: 60px;
    border: 6px solid rgba(0, 70, 150, 0.1);
    border-top-color: var(--abaete-blue);
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}
.loader-text {
    margin-top: 20px;
    color: var(--abaete-blue);
    font-weight: 700;
    font-size: 16px;
}

/* 3. Sidebar (Menu Flutuante Lúdico) */
.sidebar {
    background: var(--bg-floating) !important;
    margin: 20px;
    height: calc(100vh - 40px) !important;
    border-radius: var(--radius-huge) !important;
    border: none !important;
    box-shadow: var(--shadow-soft) !important;
    z-index: 1000;
}

/* --- Estilização do Header da Sidebar --- */
.sidebar-header {
    padding: 25px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px; /* Ajuste conforme a altura da sua logo larga */
    transition: all 0.3s ease;
}

/* 1. Estado Normal (Sidebar Aberta) */
.sidebar-logo {
    display: block;
    width: 100%;
    max-width: 180px; /* Ajuste para sua logo 16:9 ficar bonita */
    height: auto;
    object-fit: contain;
}

.sidebar-logo-mini {
    display: none; /* Esconde a pequena */
}

/* 2. Estado Colapsado (Sidebar com a classe .collapsed) */
.sidebar.collapsed .sidebar-logo {
    display: none; /* Esconde a larga */
}

.sidebar.collapsed .sidebar-logo-mini {
    display: block; /* Mostra a pequena */
    width: 40px;
    height: 40px;
    object-fit: contain;
    animation: fadeIn 0.3s ease; /* Efeito suave ao aparecer */
}

/* Animação simples para a troca não ser seca */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

.nav-list {
    padding: 20px 15px !important;
}

/* Itens do Menu - Vibrantes */
.nav-item a {
    color: var(--abaete-blue-soft) !important;
    border-radius: var(--radius-md) !important;
    margin-bottom: 8px;
    font-weight: 600 !important;
    transition: var(--transition) !important;
}

.nav-icon {
    color: var(--abaete-blue-soft) !important;
    transition: var(--transition);
}

/* Efeito Hover Alegre */
.nav-item a:hover {
    background-color: var(--abaete-pink-base) !important;
    color: var(--abaete-blue) !important;
    transform: translateX(5px);
}
.nav-item a:hover .nav-icon {
    color: var(--abaete-blue) !important;
    transform: scale(1.1);
}

/* Efeito Ativo Colorido (Amarelo Abaeté) */
.nav-item.active a {
    background-color: var(--abaete-yellow) !important;
    color: var(--abaete-blue) !important;
    box-shadow: 0 4px 15px rgba(255, 238, 157, 0.5);
}
.nav-item.active a .nav-icon {
    color: var(--abaete-blue) !important;
}
.nav-item.active a::before { display: none !important; } /* Remove barra lateral chata antiga */

/* Rodapé da Sidebar */
.sidebar-footer {
    border-top: 2px dashed var(--abaete-pink-base) !important;
    background: transparent !important;
    padding: 20px !important;
}
.user-avatar {
    background: var(--abaete-yellow-vivid) !important;
    color: var(--abaete-blue) !important;
    border-radius: var(--radius-md) !important;
}
.user-name {
    color: var(--abaete-blue) !important;
    font-weight: 800 !important;
}
.logout-link {
    color: var(--abaete-pink-dark) !important;
    font-weight: 600;
}
.logout-link:hover { color: red !important; }

/* 4. Topbar (Transparente e Clean) */
.topbar {
    background: transparent !important;
    border-bottom: none !important;
    padding: 15px 30px !important;
    margin-top: 10px;
}

.toggle-sidebar-btn, .topbar-back-btn {
    background: white !important;
    color: var(--abaete-blue) !important;
    border-radius: 50% !important;
    width: 45px; height: 45px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}
.toggle-sidebar-btn:hover, .topbar-back-btn:hover {
    transform: scale(1.1) rotate(5deg);
    background: var(--abaete-yellow) !important;
}

#topbarTitleText {
    color: var(--abaete-blue) !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 25px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

/* 5. Área de Conteúdo Central */
.content-wrapper {
    /* O conteúdo vai flutuar graciosamente sobre o fundo rosa */
    padding: 10px 30px 30px 30px !important;
}

/* Estilização suave para os Cards legados se adaptarem ao tema */
.card {
    border-radius: var(--radius-lg) !important;
    border: none !important;
    box-shadow: var(--shadow-soft) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.card:hover {
    box-shadow: var(--shadow-hover) !important;
    transform: translateY(-3px);
}
.page-title {
    color: var(--abaete-blue) !important;
    font-weight: 800 !important;
}

/* 6. Responsivo Mobile (Bottom Nav Colorida) */
@media (max-width: 768px) {
    .sidebar {
        margin: 0 !important;
        height: auto !important;
        border-radius: var(--radius-huge) var(--radius-huge) 0 0 !important;
        box-shadow: 0 -10px 30px rgba(0, 70, 150, 0.1) !important;
        padding-top: 10px;
        background: white !important;
    }

    .nav-list {
        padding: 5px 15px 15px 15px !important;
    }

    .nav-item a {
        border-radius: 20px !important;
        margin: 0 4px;
        background: var(--abaete-pink-base) !important;
    }

    .nav-item.active a {
        background: var(--abaete-yellow-vivid) !important;
        transform: translateY(-5px);
    }
    
    .topbar {
        background: rgba(255, 255, 255, 0.8) !important;
        backdrop-filter: blur(10px);
        margin-top: 0;
        border-radius: 0 0 24px 24px;
        box-shadow: var(--shadow-soft);
    }

    .bg-shape { display: none; } /* Oculta formas animadas no mobile para performance */
}

/* ==========================================================================
   AJUSTES DE ÁREA SEGURA (MOBILE)
   ========================================================================== */

/* ==========================================================================
   AJUSTES DE ÁREA SEGURA (MOBILE) - VERSÃO MELHORADA
   ========================================================================== */

@media (max-width: 768px) {
    :root {
        --top-height: 75px;
        /* Altura dinâmica baseada no conteúdo + padding seguro */
        --bottom-height: max(85px, env(safe-area-inset-bottom, 0px) + 75px);
    }

    /* 1. Trava o fundo para a página não deslizar inteira */
    body, html {
        overflow: hidden !important;
        height: 100% !important;
        background-color: var(--abaete-pink-base);
    }

    /* 2. Container principal vira um layout fixo de tela cheia */
    .main-content {
        margin: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    /* 3. CONTEÚDO (O PORTAL): Só esta parte tem scroll */
    .content-wrapper {
        position: absolute !important;
        left: 0;
        right: 0;
        top: 48px;
        bottom: var(--bottom-height);
        overflow-y: auto !important;
        overflow-x: hidden;
        padding: 12px 16px 64px 16px !important;
        z-index: 1;
        -webkit-overflow-scrolling: touch; 
    }

    /* 4. TOPBAR */
    .topbar {
        position: absolute !important;
        top: 0;
        left: 0;
        right: 0;
        width: 100% !important;
        height: var(--top-height) !important;
        background: #FFFFFF !important;
        border-bottom: 2px solid var(--abaete-pink-base);
        border-radius: 0 0 25px 25px !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        z-index: 10 !important;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important;
    }

    /* 5. BOTTOM NAV (SIDEBAR) - MELHORADO */
    .sidebar {
        position: absolute !important;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100% !important;
        /* Altura mínima + espaço seguro para notch/barra de gestos */
        min-height: 85px;
        height: auto !important;
        max-height: 120px; /* Limita para não ocupar muito espaço */
        background: #FFFFFF !important;
        margin: 0 !important;
        border-radius: 30px 30px 0 0 !important;
        border-top: 1px solid var(--abaete-pink-base);
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        z-index: 10 !important;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.05) !important;
        overflow: hidden;
        /* Adiciona padding seguro para dispositivos com notch */
        padding-bottom: env(safe-area-inset-bottom, 0px);
    }

    /* 6. LISTA DE ÍCONES - MAIS ESPAÇOSA E ADAPTÁVEL */
    .nav-list {
        display: flex !important;
        flex-direction: row !important;
        width: 100%;
        height: 100%;
        /* Padding dinâmico que se adapta ao conteúdo */
        padding: 10px 8px !important;
        gap: 4px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        align-items: center;
        justify-content: flex-start;
        scrollbar-width: none;
        /* Adiciona suavidade ao scroll */
        scroll-behavior: smooth;
    }

    .nav-list::-webkit-scrollbar { display: none; }

    .nav-item {
        flex-shrink: 0; /* Evita que os itens encolham demais */
        min-width: 70px; /* Largura mínima confortável */
        max-width: 90px; /* Largura máxima para não ficar largo demais */
        height: auto; /* Altura automática baseada no conteúdo */
        display: flex;
        justify-content: center;
        align-items: stretch;
    }

    .nav-item a {
        flex-direction: column !important;
        height: 100% !important;
        width: 100% !important;
        /* Padding ajustado para dar mais respiro vertical */
        padding: 6px 4px !important;
        font-size: 9px !important;
        line-height: 1.2 !important;
        gap: 3px !important;
        background: transparent !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        transition: transform 0.2s ease, background 0.2s ease !important;
    }

    /* Item Ativo (Destaque Amarelo) */
    .nav-item.active a {
        background: var(--abaete-yellow) !important;
        border-radius: 18px !important;
        color: var(--abaete-blue) !important;
        transform: scale(1.05); /* Leve destaque sem ocupar muito espaço */
    }

    /* Ajuste de ícones */
    .nav-icon { 
        margin: 0 !important; 
        font-size: 22px !important; /* Ícone um pouco maior */
        flex-shrink: 0; /* Evita que o ícone seja comprimido */
    }

    /* Texto do menu - MELHORADO */
    .nav-text { 
        display: block !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
        font-weight: 600 !important;
        letter-spacing: -0.2px; /* Ajuda a compactar palavras longas */
    }

    /* Suaviza a rolagem horizontal do menu */
    .nav-list {
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;  /* (opcional) encaixe suave ao final da rolagem */
    }

    .nav-item {
        scroll-snap-align: start;  /* (opcional) alinhamento ao final de cada item */
    }
}

/* ==========================================================================
   AJUSTES EXTRAS PARA TELAS MUITO PEQUENAS (<360px)
   ========================================================================== */

@media (max-width: 360px) {
    .nav-item {
        min-width: 65px !important;
        max-width: 75px !important;
    }

    .nav-item a {
        font-size: 8px !important;
        padding: 5px 2px !important;
    }

    .nav-icon {
        font-size: 20px !important;
    }
}

/* ==========================================================================
   AJUSTES PARA TELAS GRANDES (TABLETS EM MODO PORTRAIT)
   ========================================================================== */

@media (min-width: 481px) and (max-width: 768px) {
    .nav-item {
        min-width: 85px !important;
        max-width: 110px !important;
    }

    .nav-item a {
        font-size: 10px !important;
        padding: 8px 6px !important;
    }

    .nav-icon {
        font-size: 24px !important;
    }
}

/* ==========================================================================
   SUPORTE PARA FONTES GRANDES (ACESSIBILIDADE)
   ========================================================================== */

@media (max-width: 768px) {
    /* Detecta quando o usuário aumentou o tamanho da fonte no sistema */
    @media (min-resolution: 1.5dppx) {
        .sidebar {
            max-height: 140px !important;
        }

        .nav-list {
            padding: 12px 8px !important;
        }

        .nav-item a {
            padding: 8px 4px !important;
        }
    }
}

/* ==========================================================================
   ESTILIZAÇÃO DA SCROLLBAR (DESKTOP)
   ========================================================================== */

/* 1. Aplicando na lista de navegação (onde o scroll acontece) */
.nav-list {
    /* Firefox: Deixa a barra fina e na cor do tema */
    scrollbar-width: thin;
    scrollbar-color: var(--abaete-pink-dark) transparent;
}

/* 2. Webkit (Chrome, Safari, Edge) - Estilo "Elegante" */

/* Área total da barra */
.nav-list::-webkit-scrollbar {
    width: 5px; /* Bem fininha */
}

/* O "trilho" por onde a barra corre (deixamos transparente) */
.nav-list::-webkit-scrollbar-track {
    background: transparent;
}

/* O "pegador" (a parte que desliza) */
.nav-list::-webkit-scrollbar-thumb {
    background-color: rgba(226, 179, 179, 0.4); /* Rosa escuro bem clarinho/transparente */
    border-radius: 20px; /* Formato de pílula */
    transition: background 0.3s;
}

/* Quando o usuário passa o mouse na sidebar, a barra ganha um pouco mais de cor */
.sidebar:hover .nav-list::-webkit-scrollbar-thumb {
    background-color: var(--abaete-pink-dark);
}

/* Quando o usuário clica/arrasta a barra */
.nav-list::-webkit-scrollbar-thumb:active {
    background-color: var(--abaete-blue-soft);
}

/* Opcional: Se quiser esconder TOTALMENTE e só mostrar no hover */
.nav-list {
    overflow-y: overlay; /* Faz a barra flutuar sobre o conteúdo em vez de empurrá-lo */
}

.watermark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none; /* Permite clicar através da marca */
    z-index: 9999;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    opacity: 0.04; /* Quase invisível, mas visível se a tela clarear num print */
    overflow: hidden;
}

.watermark-text {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    transform: rotate(-45deg);
    margin: 50px;
    user-select: none;
}

/* Transitions for OrientacoesParentais chat side drawer */
.fade-enter-active, .fade-leave-active {
    transition: opacity 0.3s ease;
}
.fade-enter-from, .fade-leave-to {
    opacity: 0;
}

.slide-enter-active, .slide-leave-active {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-enter-from, .slide-leave-to {
    transform: translateX(100%);
}

/* ==========================================================================
   FORM CONTROLS AND CUSTOM COMPONENT STYLES FOR V2
   ========================================================================== */
.form-control-v2 {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    font-size: 14px;
    outline: none;
    background: white;
    box-sizing: border-box;
    color: #334155;
    font-weight: 500;
    transition: all 0.15s ease-in-out;
}
.form-control-v2:focus {
    border-color: var(--abaete-blue);
    box-shadow: 0 0 0 3px rgba(0, 70, 150, 0.1);
}

.pill-btn-v2 {
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid #cbd5e1;
    background: white;
    color: #475569;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pill-btn-v2:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}
.pill-btn-v2.active {
    background: var(--abaete-blue);
    color: white;
    border-color: var(--abaete-blue);
    box-shadow: 0 4px 12px rgba(0, 70, 150, 0.2);
}
.pill-btn-v2.active-no {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.assigned-card {
    background: white;
    border-radius: 24px;
    padding: 22px 26px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.2s ease-in-out;
}
.assigned-card:hover {
    transform: translateY(-2px);
    border-color: var(--abaete-pink-dark);
    box-shadow: var(--shadow-hover);
}

/* ==========================================================================
   ESTILOS DO PONTO ELETRÔNICO
   ========================================================================== */
.ponto-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    border: 2px solid transparent !important;
    padding: 18px 12px !important;
    border-radius: 16px !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: all 0.2s ease-in-out !important;
    box-shadow: 0 4px 6px rgba(0, 70, 150, 0.03) !important;
    text-transform: uppercase !important;
    outline: none !important;
}
.ponto-btn .material-icons-outlined {
    font-size: 20px !important;
}
.ponto-btn:disabled {
    opacity: 0.35 !important;
    cursor: not-allowed !important;
    background: #f1f5f9 !important;
    color: #94a3b8 !important;
    border-color: #e2e8f0 !important;
    box-shadow: none !important;
    transform: none !important;
}
.ponto-btn.in {
    background: #ecfdf5 !important;
    color: #059669 !important;
    border-color: #a7f3d0 !important;
}
.ponto-btn.in:hover:not(:disabled) {
    background: #d1fae5 !important;
    border-color: #34d399 !important;
    box-shadow: 0 8px 16px rgba(52, 211, 153, 0.15) !important;
    transform: translateY(-2px) !important;
}
.ponto-btn.out {
    background: #fef2f2 !important;
    color: #dc2626 !important;
    border-color: #fecaca !important;
}
.ponto-btn.out:hover:not(:disabled) {
    background: #fee2e2 !important;
    border-color: #f87171 !important;
    box-shadow: 0 8px 16px rgba(248, 113, 113, 0.15) !important;
    transform: translateY(-2px) !important;
}
.ponto-btn.break {
    background: #fffbeb !important;
    color: #d97706 !important;
    border-color: #fef3c7 !important;
}
.ponto-btn.break:hover:not(:disabled) {
    background: #fef3c7 !important;
    border-color: #fbbf24 !important;
    box-shadow: 0 8px 16px rgba(251, 191, 36, 0.15) !important;
    transform: translateY(-2px) !important;
}
.ponto-btn.resume {
    background: #eff6ff !important;
    color: #2563eb !important;
    border-color: #dbeafe !important;
}
.ponto-btn.resume:hover:not(:disabled) {
    background: #dbeafe !important;
    border-color: #60a5fa !important;
    box-shadow: 0 8px 16px rgba(96, 165, 250, 0.15) !important;
    transform: translateY(-2px) !important;
}

.status-trabalhando { background: #dcfce7 !important; color: #15803d !important; border: 1.5px solid #bbf7d0 !important; }
.status-pausa { background: #fffbeb !important; color: #b45309 !important; border: 1.5px solid #fde68a !important; }
.status-fora { background: #f8fafc !important; color: #475569 !important; border: 1.5px solid #e2e8f0 !important; }

/* Pulse animation for clock online indicator */
.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 5px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ==========================================================================
   TELA DE CONVÊNIOS - RESPONSIVIDADE E ESTILOS
   ========================================================================== */
.convenio-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 22px;
    align-items: start;
}
.slide-in { 
    animation: slideIn 0.3s ease-out; 
}
@keyframes slideIn { 
    from { opacity: 0; transform: translateY(10px); } 
    to { opacity: 1; transform: translateY(0); } 
}
.tab-btn:hover { 
    background: rgba(255, 255, 255, 0.5) !important; 
}
@media (max-width: 900px) {
    .convenio-main-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   TELA DE CHECKLIST GERAL - RESPONSIVIDADE E ESTILOS
   ========================================================================== */
.checklist-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 20px;
    align-items: start;
}

@media (max-width: 768px) {
    .checklist-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   TELA DE INDICADORES (BI) - RESPONSIVIDADE E ESTILOS
   ========================================================================== */
.indicadores-page {
    padding: 10px 15px;
    width: 100%;
    max-width: 1280px;
    box-sizing: border-box;
}

.indicadores-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    gap: 20px;
    margin-bottom: 22px;
}

@media (max-width: 900px) {
    .indicadores-main-grid {
        grid-template-columns: 1fr !important;
    }
}



