/* ========================================
   MOBILE CARDS COMPACTOS
   Barber CashFlow - Sistema de Cards Hibridos
   Data: 26/01/2026
   Versao: 2.0 (Estrutura Separada)

   ESCOPO: Apenas elementos com classe .mobile-card-list
   BREAKPOINT: <= 768px

   ARQUITETURA v2.0:
   - Mobile: div.mobile-card-list > div.mobile-card-item (FORA da tabela)
   - Desktop: tabela tradicional (SEPARADA dos cards)
   ======================================== */

/* =============================================
   1. CONTAINER DA LISTA DE CARDS (MOBILE)
   ============================================= */
@media (max-width: 768px) {
    .mobile-card-list {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
}

/* =============================================
   2. CARD COMPACTO - ESTRUTURA BASE
   ============================================= */
@media (max-width: 768px) {
    .mobile-card-list .mobile-card-item {
        background: #fff;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        padding: 12px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.08);
        position: relative;
        transition: box-shadow 0.2s ease;
    }

    .mobile-card-list .mobile-card-item:hover {
        box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    }
}

/* =============================================
   3. AREA COMPACTA (3 LINHAS)
   ============================================= */
@media (max-width: 768px) {
    /* Container da area compacta */
    .mobile-card-list .card-compact-area {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }

    /* LINHA 1: Badge + Valor + Hora */
    .mobile-card-list .card-line1 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .mobile-card-list .card-line1-left {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-card-list .card-line1 .badge {
        font-size: 0.7rem !important;
        padding: 0.25rem 0.5rem !important;
        font-weight: 600;
    }

    .mobile-card-list .card-value {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--gold-accent, #C9A66B);
    }

    .mobile-card-list .card-time {
        font-size: 0.8rem;
        color: #6c757d;
        white-space: nowrap;
    }

    /* LINHA 2: Contexto (Barbeiro + Itens) */
    .mobile-card-list .card-line2 {
        font-size: 0.9rem;
        color: #495057;
        line-height: 1.3;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-card-list .card-line2 .separator {
        color: #adb5bd;
        margin: 0 4px;
    }

    /* LINHA 3: Pagamento + Acoes */
    .mobile-card-list .card-line3 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        margin-top: 2px;
    }

    .mobile-card-list .card-line3 .badge {
        font-size: 0.75rem !important;
        padding: 0.3rem 0.6rem !important;
    }

    /* Badge de Plano (roxo) */
    .mobile-card-list .badge-plano {
        background-color: #6f42c1 !important;
        color: #fff !important;
    }

    /* Menu de acoes */
    .mobile-card-list .card-actions-menu {
        position: relative;
    }

    .mobile-card-list .card-actions-btn {
        background: none;
        border: none;
        font-size: 1.3rem;
        color: #6c757d;
        padding: 8px 12px;
        cursor: pointer;
        border-radius: 4px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.15s ease;
    }

    .mobile-card-list .card-actions-btn:hover,
    .mobile-card-list .card-actions-btn:focus {
        background: #f8f9fa;
        color: #495057;
    }

    /* Dropdown do menu */
    .mobile-card-list .card-actions-dropdown {
        position: absolute;
        right: 0;
        top: 100%;
        background: #fff;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        min-width: 140px;
        z-index: 1000;
        display: none;
        overflow: hidden;
    }

    .mobile-card-list .card-actions-dropdown.show {
        display: block;
    }

    .mobile-card-list .card-actions-dropdown a {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 16px;
        color: #495057;
        text-decoration: none;
        font-size: 0.9rem;
        transition: background 0.15s ease;
        min-height: 44px;
    }

    .mobile-card-list .card-actions-dropdown a:hover {
        background: #f8f9fa;
    }

    .mobile-card-list .card-actions-dropdown a.text-danger {
        color: #dc3545;
    }

    .mobile-card-list .card-actions-dropdown a.text-danger:hover {
        background: #fff5f5;
    }
}

/* =============================================
   4. AREA EXPANDIDA (DETALHES)
   ============================================= */
@media (max-width: 768px) {
    .mobile-card-list .card-expand-area {
        display: none;
        margin-top: 12px;
        padding-top: 12px;
        border-top: 1px solid #e9ecef;
    }

    .mobile-card-list .card-expand-area.show {
        display: block;
    }

    /* Grid de detalhes */
    .mobile-card-list .card-details-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 16px;
        margin-bottom: 12px;
    }

    .mobile-card-list .card-detail-item {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .mobile-card-list .card-detail-item.full-width {
        grid-column: 1 / -1;
    }

    .mobile-card-list .card-detail-label {
        font-size: 0.75rem;
        color: #6c757d;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        font-weight: 600;
    }

    .mobile-card-list .card-detail-value {
        font-size: 0.9rem;
        color: #212529;
    }

    .mobile-card-list .card-detail-value.text-success {
        color: #198754 !important;
    }

    .mobile-card-list .card-detail-value.text-warning {
        color: #ffc107 !important;
    }

    .mobile-card-list .card-detail-value.text-info {
        color: #0dcaf0 !important;
    }

    /* Lista de itens */
    .mobile-card-list .card-items-list {
        background: #f8f9fa;
        border-radius: 6px;
        padding: 10px 12px;
        margin-bottom: 12px;
    }

    .mobile-card-list .card-items-list-title {
        font-size: 0.75rem;
        color: #6c757d;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .mobile-card-list .card-item-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 4px 0;
        font-size: 0.85rem;
    }

    .mobile-card-list .card-item-row:not(:last-child) {
        border-bottom: 1px solid #e9ecef;
    }

    /* Botoes de acao no expand */
    .mobile-card-list .card-expand-actions {
        display: flex;
        gap: 8px;
        margin-top: 12px;
    }

    .mobile-card-list .card-expand-actions .btn {
        flex: 1;
        padding: 10px 16px;
        font-size: 0.9rem;
        min-height: 44px;
    }
}

/* =============================================
   5. INDICADOR DE EXPANSAO
   ============================================= */
@media (max-width: 768px) {
    .mobile-card-list .card-expand-indicator {
        position: absolute;
        right: 12px;
        bottom: 12px;
        font-size: 0.7rem;
        color: #adb5bd;
        pointer-events: none;
        transition: transform 0.2s ease;
    }

    .mobile-card-list .mobile-card-item.expanded .card-expand-indicator {
        transform: rotate(180deg);
    }

    /* Visual do card expandido */
    .mobile-card-list .mobile-card-item.expanded {
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        border-color: var(--gold-accent, #C9A66B);
    }
}

/* =============================================
   6. ESTADOS E INTERACOES
   ============================================= */
@media (max-width: 768px) {
    /* Estado pressionado */
    .mobile-card-list .mobile-card-item:active:not(.expanded) {
        background: #f8f9fa;
    }

    /* Prevenir selecao de texto ao clicar */
    .mobile-card-list .card-compact-area {
        user-select: none;
        -webkit-user-select: none;
    }

    /* Foco acessivel */
    .mobile-card-list .card-compact-area:focus {
        outline: 2px solid var(--gold-accent, #C9A66B);
        outline-offset: 2px;
    }
}

/* =============================================
   7. OVERLAY PARA FECHAR DROPDOWN
   ============================================= */
.mobile-card-dropdown-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
}

.mobile-card-dropdown-overlay.show {
    display: block;
}

/* =============================================
   8. DESKTOP - LISTA MOBILE OCULTA
   ============================================= */
@media (min-width: 769px) {
    /* Lista mobile fica oculta no desktop via d-md-none do Bootstrap */
    /* Nenhuma regra adicional necessaria */
}

/* =============================================
   9. ESTILOS ESPECIFICOS: LISTA DE CLIENTES
   Escopo: .mobile-card-list (compartilhado)
   ============================================= */
@media (max-width: 768px) {
    /* Nome do cliente - destaque */
    .mobile-card-list .client-name {
        font-size: 1rem;
        font-weight: 700;
        color: #212529;
    }

    /* Telefone */
    .mobile-card-list .client-phone {
        font-size: 0.9rem;
        color: #495057;
    }

    /* Email */
    .mobile-card-list .client-email {
        font-size: 0.85rem;
        color: #6c757d;
    }

    /* Badge de atendimentos na linha 1 */
    .mobile-card-list .card-line1 .badge.bg-info {
        font-size: 0.75rem !important;
        padding: 0.25rem 0.5rem !important;
        white-space: nowrap;
    }

    /* Highlight de notificacao para cards mobile */
    .mobile-card-list .mobile-card-item.highlight-notification {
        animation: highlight-fade-card 3s ease-in-out;
        background-color: #ffc107;
    }

    @keyframes highlight-fade-card {
        0% {
            background-color: #ffc107;
            box-shadow: 0 0 20px rgba(255, 193, 7, 0.8);
        }
        100% {
            background-color: #fff;
            box-shadow: 0 1px 3px rgba(0,0,0,0.08);
        }
    }
}

/* =============================================
   10. DASHBOARD MOBILE
   Escopo: .mobile-dashboard
   Fase 3 - Opcao A (Minimalista)
   ============================================= */
@media (max-width: 768px) {
    /* Container principal */
    .mobile-dashboard {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    /* -----------------------------------------
       KPI GRID: 2x2 + destaque
       ----------------------------------------- */
    .mobile-dashboard .mobile-kpi-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .mobile-dashboard .mobile-kpi-card {
        background: #fff;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        padding: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }

    .mobile-dashboard .mobile-kpi-icon {
        font-size: 1.2rem;
        margin-bottom: 4px;
    }

    .mobile-dashboard .mobile-kpi-label {
        font-size: 0.75rem;
        color: #6c757d;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        margin-bottom: 2px;
    }

    .mobile-dashboard .mobile-kpi-value {
        font-size: 1.1rem;
        font-weight: 700;
    }

    /* KPI Destacado (Lucro Real / Comissões) - full width */
    .mobile-dashboard .mobile-kpi-highlight {
        grid-column: 1 / -1;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        border-color: var(--gold-accent, #C9A66B);
        border-width: 2px;
    }

    .mobile-dashboard .mobile-kpi-highlight .mobile-kpi-label {
        color: rgba(255,255,255,0.8);
    }

    .mobile-dashboard .mobile-kpi-highlight .mobile-kpi-value {
        font-size: 1.3rem;
    }

    /* -----------------------------------------
       FECHAMENTO GRID: 2x3 compacto
       ----------------------------------------- */
    .mobile-dashboard .mobile-fechamento-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .mobile-dashboard .mobile-fechamento-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 6px;
    }

    .mobile-dashboard .mobile-fechamento-label {
        font-size: 0.7rem;
        color: #6c757d;
        text-transform: uppercase;
        letter-spacing: 0.2px;
    }

    .mobile-dashboard .mobile-fechamento-value {
        font-size: 0.95rem;
        font-weight: 700;
    }

    /* -----------------------------------------
       BARBEIRO CARDS (Tabela Admin mobile)
       ----------------------------------------- */
    .mobile-dashboard .mobile-barbeiro-card {
        background: #fff;
        border: 1px solid #dee2e6;
        border-radius: 8px;
        padding: 12px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }

    /* -----------------------------------------
       EXPORT BUTTONS (lado a lado)
       ----------------------------------------- */
    .mobile-dashboard .mobile-export-buttons {
        display: flex;
        flex-direction: row;
        gap: 8px;
    }

    .mobile-dashboard .mobile-export-buttons .btn {
        flex: 1;
        min-height: 44px;
    }
}

/* =============================================
   11. DASHBOARD - FILTROS MOBILE
   Escopo: .filtros-card (compartilhado)
   ============================================= */
@media (max-width: 768px) {
    /* Card de filtros colapsável */
    .filtros-card .card-header {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .filtros-card .card-header .filtros-toggle-icon {
        transition: transform 0.2s ease;
    }

    .filtros-card.collapsed .card-header .filtros-toggle-icon {
        transform: rotate(-90deg);
    }

    .filtros-card .card-body {
        display: block;
    }

    .filtros-card.collapsed .card-body {
        display: none;
    }

    /* Resumo do filtro ativo */
    .filtros-resumo {
        font-size: 0.85rem;
        opacity: 0.9;
        margin-left: 8px;
        font-weight: normal;
    }

    /* Período cascata mobile */
    .periodo-filter-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 0;
        cursor: pointer;
        border-bottom: 1px solid #dee2e6;
    }

    .periodo-filter-header .periodo-atual {
        font-weight: 600;
        color: var(--gold-accent, #C9A66B);
    }

    .periodo-filter-header .toggle-icon {
        transition: transform 0.2s ease;
    }

    .periodo-filter-header.collapsed .toggle-icon {
        transform: rotate(-90deg);
    }

    .periodo-filter-options {
        display: none;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 0;
    }

    .periodo-filter-options.show {
        display: flex;
    }

    .periodo-filter-options .btn {
        text-align: left;
        border-radius: 6px;
    }

    /* Esconder btn-group do desktop no mobile */
    .periodo-desktop {
        display: none;
    }

    .periodo-mobile {
        display: block;
    }
}

@media (min-width: 769px) {
    .periodo-mobile {
        display: none;
    }

    .periodo-desktop {
        display: block;
    }

    .filtros-toggle-icon,
    .filtros-resumo {
        display: none;
    }
}

/* =============================================
   12. FECHAMENTO FINANCEIRO (VER +)
   Escopo: .mobile-fechamento
   Fase 4 - Opcao A (Minimalista)
   ============================================= */

/* -----------------------------------------
   12.1 CSS BASE (DESKTOP + MOBILE)
   ----------------------------------------- */

/* Cards KPI customizados */
.mobile-fechamento .kpi-card {
    transition: transform 0.2s ease-in-out;
    border-radius: var(--border-radius-lg, 8px);
}

.mobile-fechamento .kpi-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

.mobile-fechamento .kpi-value {
    font-size: 1.75rem;
    font-weight: 700;
}

.mobile-fechamento .kpi-label {
    font-size: 0.9rem;
    color: var(--text-secondary, #6c757d);
    margin-bottom: 0.5rem;
}

/* Bordas coloridas */
.mobile-fechamento .card-gold-border {
    border-left: 4px solid var(--gold-accent, #C9A66B);
}

.mobile-fechamento .card-green-border {
    border-left: 4px solid #10B981;
}

.mobile-fechamento .card-red-border {
    border-left: 4px solid #EF4444;
}

/* Seção colapsável */
.mobile-fechamento .section-header {
    background: linear-gradient(135deg, var(--graphite, #2d3748) 0%, var(--gray-dark, #1a202c) 100%);
    color: var(--text-on-dark, #ffffff);
    border-bottom: 2px solid var(--gold-accent, #C9A66B);
    padding: 0.875rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-fechamento .section-header:hover {
    background: var(--graphite, #2d3748);
}

.mobile-fechamento .section-header .toggle-icon {
    transition: transform 0.3s ease;
}

.mobile-fechamento .section-header.collapsed .toggle-icon {
    transform: rotate(-90deg);
}

/* Tabela de vendas detalhadas */
.mobile-fechamento .venda-row td {
    vertical-align: middle;
}

.mobile-fechamento .venda-items {
    font-size: 0.85rem;
    color: var(--text-secondary, #6c757d);
}

.mobile-fechamento .venda-items ul {
    margin: 0;
    padding-left: 1rem;
    list-style-type: disc;
}

/* Badges de forma de pagamento */
.mobile-fechamento .badge-dinheiro { background-color: #10B981; color: white; }
.mobile-fechamento .badge-pix { background-color: #8B5CF6; color: white; }
.mobile-fechamento .badge-cartao { background-color: #3B82F6; color: white; }
.mobile-fechamento .badge-plano { background-color: #6f42c1; color: white; }

/* Seção barbeiros */
.mobile-fechamento .barbeiro-card {
    border: 1px solid var(--gray-200, #e2e8f0);
    border-radius: var(--border-radius-md, 6px);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.mobile-fechamento .barbeiro-card:hover {
    box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
}

.mobile-fechamento .barbeiro-header {
    background: var(--slate-50, #f8fafc);
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-200, #e2e8f0);
    font-weight: 600;
}

.mobile-fechamento .barbeiro-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
}

.mobile-fechamento .barbeiro-stat {
    flex: 1;
    min-width: 100px;
    text-align: center;
}

.mobile-fechamento .barbeiro-stat-value {
    font-size: 1.1rem;
    font-weight: 700;
}

.mobile-fechamento .barbeiro-stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary, #6c757d);
}

/* -----------------------------------------
   12.2 CSS MOBILE (<768px)
   ----------------------------------------- */
@media (max-width: 768px) {
    /* Container principal */
    .mobile-fechamento {
        padding: 0.75rem;
    }

    .mobile-fechamento h1 {
        font-size: 1.5rem;
    }

    /* KPIs compactos */
    .mobile-fechamento .kpi-value {
        font-size: 1.1rem;
    }

    .mobile-fechamento .kpi-label {
        font-size: 0.75rem;
    }

    .mobile-fechamento .kpi-card .card-body {
        padding: 0.75rem;
    }

    .mobile-fechamento .kpi-row > div {
        margin-bottom: 0.5rem;
    }

    /* Botões de export no header */
    .mobile-fechamento .export-buttons {
        flex-direction: row;
        gap: 0.5rem;
    }

    .mobile-fechamento .export-buttons .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }

    /* Filtros colapsáveis */
    .mobile-fechamento .filtros-card-fechamento .card-header {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.75rem 1rem;
        background: #fff;
        color: #111;
        border-bottom: 1px solid #dee2e6;
    }

    .mobile-fechamento .filtros-card-fechamento .card-header .fw-bold {
        color: #111;
    }

    .mobile-fechamento .filtros-card-fechamento .filtros-toggle-icon {
        transition: transform 0.2s ease;
        color: #111;
    }

    .mobile-fechamento .filtros-card-fechamento.collapsed .filtros-toggle-icon {
        transform: rotate(-90deg);
    }

    .mobile-fechamento .filtros-card-fechamento .filtros-body {
        display: block;
    }

    .mobile-fechamento .filtros-card-fechamento.collapsed .filtros-body {
        display: none;
    }

    .mobile-fechamento .filtros-resumo {
        font-size: 0.8rem;
        color: #333;
        margin-left: auto;
        margin-right: 0.5rem;
        font-weight: 600;
        opacity: 1;
    }

    /* Label "Filtros Rápidos" visível no mobile */
    .mobile-fechamento .filtros-rapidos-label {
        display: block;
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }

    .mobile-fechamento .filtros-rapidos .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }

    .mobile-fechamento .filtros-mes-ano .btn {
        margin-top: 0.5rem;
    }

    /* Seção headers compactos */
    .mobile-fechamento .section-header {
        padding: 0.65rem 1rem;
    }

    .mobile-fechamento .section-header h5 {
        font-size: 0.9rem;
    }

    /* Cards barbeiro - grid 2x3 */
    .mobile-fechamento .barbeiro-stats {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .mobile-fechamento .barbeiro-stat {
        min-width: unset;
    }

    .mobile-fechamento .barbeiro-stat-value {
        font-size: 0.9rem;
    }

    .mobile-fechamento .barbeiro-stat-label {
        font-size: 0.65rem;
    }

    .mobile-fechamento .barbeiro-header {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    /* Cards de vendas mobile - usa CSS padrão de .mobile-card-list */
    .mobile-fechamento .vendas-cards-mobile {
        padding: 0.5rem;
    }

    .mobile-fechamento .vendas-cards-mobile .card-cliente {
        font-size: 0.75rem;
        color: #6c757d;
        margin-left: auto;
    }

    /* Tabela de despesas compacta */
    .mobile-fechamento .despesas-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-fechamento .despesas-table {
        font-size: 0.75rem;
    }

    .mobile-fechamento .despesas-table th,
    .mobile-fechamento .despesas-table td {
        padding: 0.4rem 0.5rem;
    }

    /* Legenda dos lucros compacta */
    .mobile-fechamento .bg-light.rounded {
        padding: 0.75rem;
    }

    .mobile-fechamento .bg-light.rounded small {
        font-size: 0.7rem;
        display: block;
        margin-bottom: 0.25rem;
    }
}

/* -----------------------------------------
   12.3 CSS MUITO PEQUENO (<400px)
   ----------------------------------------- */
@media (max-width: 400px) {
    .mobile-fechamento .barbeiro-stats {
        grid-template-columns: 1fr 1fr;
    }

    .mobile-fechamento .barbeiro-stat-value {
        font-size: 0.85rem;
    }

    .mobile-fechamento .kpi-value {
        font-size: 1rem;
    }

    .mobile-fechamento .export-buttons .btn span {
        font-size: 0.75rem;
    }
}

/* -----------------------------------------
   12.4 CSS PRINT
   ----------------------------------------- */
@media print {
    .mobile-fechamento .sidebar,
    .mobile-fechamento .top-navbar,
    .mobile-fechamento .export-buttons,
    .mobile-fechamento footer,
    .mobile-fechamento .filtros-card-fechamento {
        display: none !important;
    }

    .mobile-fechamento .main-content {
        margin: 0 !important;
        padding: 0 !important;
    }

    .mobile-fechamento .card {
        break-inside: avoid;
    }

    .mobile-fechamento .section-header {
        background: #333 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* =============================================
   FIM DO ARQUIVO
   ============================================= */
