/**
 * Estilos da Área Pública (Front-End)
 * Sistema Escolar Front-End
 */

/* ===== VARIÁVEIS ===== */
:root {
    --se-primary: #2271b1;
    --se-primary-dark: #135e96;
    --se-primary-light: #e3f2fd;
    --se-success: #46b450;
    --se-warning: #ffb900;
    --se-danger: #dc3232;
    --se-text: #333;
    --se-text-light: #666;
    --se-border: #ddd;
    --se-shadow: 0 2px 10px rgba(0,0,0,0.1);
    --se-radius: 8px;
}

/* ===== CONTAINER PRINCIPAL ===== */
.se-front-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===== BANNER VISITANTE ===== */
.se-banner-visitante {
    background: linear-gradient(135deg, var(--se-primary) 0%, var(--se-primary-dark) 100%);
    color: #fff;
    padding: 60px 40px;
    border-radius: var(--se-radius);
    text-align: center;
    box-shadow: var(--se-shadow);
}

.se-banner-visitante h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.se-banner-visitante p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.se-banner-visitante .btn-login {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: var(--se-primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.2s;
}

.se-banner-visitante .btn-login:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ===== DASHBOARD ESCOLAR ===== */
.se-dashboard {
    background: #f9f9f9;
    border-radius: var(--se-radius);
    padding: 30px;
}

.se-dashboard-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--se-border);
}

.se-dashboard-header h2 {
    color: var(--se-primary);
    font-size: 28px;
    margin-bottom: 10px;
}

.se-dashboard-header p {
    color: var(--se-text-light);
    font-size: 16px;
}

/* ===== CARDS DO DASHBOARD ===== */
.se-dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.se-stat-card {
    background: #fff;
    padding: 25px;
    border-radius: var(--se-radius);
    text-align: center;
    box-shadow: var(--se-shadow);
    transition: transform 0.2s;
}

.se-stat-card:hover {
    transform: translateY(-5px);
}

.se-stat-card .stat-icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--se-primary);
}

.se-stat-card .stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--se-text);
    line-height: 1.2;
    margin-bottom: 5px;
}

.se-stat-card .stat-label {
    font-size: 14px;
    color: var(--se-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}



/* ===== TABELA DE ALUNOS ===== */
.se-alunos-table {
    width: 100%;
    background: #fff;
    border-radius: var(--se-radius);
    overflow: hidden;
    box-shadow: var(--se-shadow);
    margin-bottom: 30px;
}

.se-alunos-table th {
    background: var(--se-primary);
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.se-alunos-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--se-border);
}

.se-alunos-table tbody tr:hover {
    background: #f5f5f5;
}

.se-alunos-table .btn-ver {
    padding: 5px 15px;
    background: var(--se-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
}

.se-alunos-table .btn-ver:hover {
    background: var(--se-primary-dark);
}

/* ===== FORMULÁRIOS PÚBLICOS ===== */
.se-form-container {
    background: #fff;
    padding: 30px;
    border-radius: var(--se-radius);
    box-shadow: var(--se-shadow);
    margin-bottom: 30px;
}

.se-form-container h3 {
    color: var(--se-primary);
    margin-bottom: 20px;
    font-size: 22px;
}

.se-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.se-form-field {
    margin-bottom: 20px;
}

.se-form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--se-text);
}

.se-form-field input,
.se-form-field select,
.se-form-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--se-border);
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s;
}

.se-form-field input:focus,
.se-form-field select:focus,
.se-form-field textarea:focus {
    border-color: var(--se-primary);
    box-shadow: 0 0 0 2px var(--se-primary-light);
    outline: none;
}

.se-form-field textarea {
    min-height: 100px;
    resize: vertical;
}

.se-form-field .help-text {
    font-size: 12px;
    color: var(--se-text-light);
    margin-top: 5px;
}

.se-submit-btn {
    background: var(--se-primary);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.se-submit-btn:hover {
    background: var(--se-primary-dark);
}

.se-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== LISTAGEM DE TURMAS ===== */
.se-turmas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.se-turma-card {
    background: #fff;
    border-radius: var(--se-radius);
    overflow: hidden;
    box-shadow: var(--se-shadow);
}

.se-turma-header {
    background: var(--se-primary);
    color: #fff;
    padding: 20px;
}

.se-turma-header h3 {
    margin: 0;
    font-size: 20px;
    margin-bottom: 5px;
}

.se-turma-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.se-turma-body {
    padding: 20px;
}

.se-turma-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--se-border);
}

.se-turma-stat {
    text-align: center;
}

.se-turma-stat .stat-number {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--se-text);
}

.se-turma-stat .stat-label {
    font-size: 12px;
    color: var(--se-text-light);
}

.se-turma-footer {
    text-align: center;
}

.se-turma-footer .btn-ver {
    display: inline-block;
    padding: 10px 25px;
    background: var(--se-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
}

.se-turma-footer .btn-ver:hover {
    background: var(--se-primary-dark);
}

/* ===== QUESTÕES CARDS ===== */
.se-questoes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.se-questoes-col h3 {
    margin-bottom: 20px;
    color: var(--se-text);
}

.se-questao-card {
    background: #fff;
    border: 1px solid var(--se-border);
    border-radius: var(--se-radius);
    margin-bottom: 15px;
    transition: all 0.2s;
}

.se-questao-card:hover {
    box-shadow: var(--se-shadow);
}

.se-questao-card.vinculada {
    border-left: 4px solid var(--se-success);
}

.se-questao-header {
    padding: 15px;
    background: #f9f9f9;
    border-bottom: 1px solid var(--se-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.se-questao-habilidade {
    background: var(--se-primary-light);
    color: var(--se-primary-dark);
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
}

.se-questao-body {
    padding: 15px;
}

.se-questao-enunciado {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.se-questao-footer {
    padding: 15px;
    background: #f9f9f9;
    border-top: 1px solid var(--se-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--se-text-light);
}

/* ===== RESULTADOS E NOTAS ===== */
.se-resultados-tabela {
    background: #fff;
    border-radius: var(--se-radius);
    overflow: hidden;
    box-shadow: var(--se-shadow);
    margin-bottom: 30px;
}

.se-resultados-tabela table {
    width: 100%;
    border-collapse: collapse;
}

.se-resultados-tabela th {
    background: var(--se-primary);
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.se-resultados-tabela td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--se-border);
}

.se-resultados-tabela .aluno-nome {
    font-weight: 600;
    color: var(--se-text);
}

.se-resultados-tabela .nota {
    font-weight: 700;
    color: var(--se-primary);
}

.se-status-select {
    width: 100%;
    padding: 5px;
    border: 1px solid var(--se-border);
    border-radius: 3px;
}

.se-status-acertou {
    background: var(--se-success);
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
}

.se-status-errou {
    background: var(--se-danger);
    color: #fff;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
}

.se-status-parcial {
    background: var(--se-warning);
    color: #856404;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
}

/* ===== GRÁFICOS ===== */
.se-chart-wrapper {
    background: #fff;
    padding: 20px;
    border-radius: var(--se-radius);
    border: 1px solid var(--se-border);
    margin-bottom: 30px;
}

.se-chart-wrapper h3 {
    margin-bottom: 20px;
    color: var(--se-text);
}

/* ===== MENSAGENS ===== */
.se-alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.se-alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.se-alert-warning {
    background: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
}

.se-alert-danger {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.se-alert-info {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

/* ===== LOADER ===== */
.se-loader-public {
    text-align: center;
    padding: 40px;
}

.se-loader-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top-color: var(--se-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== BOTÕES DE AÇÃO ===== */
.se-action-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.se-btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.se-btn-edit {
    background: var(--se-primary);
    color: #fff;
}

.se-btn-delete {
    background: var(--se-danger);
    color: #fff;
}

.se-btn-view {
    background: var(--se-success);
    color: #fff;
}

/* ===== PAGINAÇÃO ===== */
.se-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 30px;
}

.se-page-btn {
    padding: 8px 12px;
    border: 1px solid var(--se-border);
    background: #fff;
    color: var(--se-text);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
}

.se-page-btn:hover,
.se-page-btn.active {
    background: var(--se-primary);
    color: #fff;
    border-color: var(--se-primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .se-questoes-grid {
        grid-template-columns: 1fr;
    }
    
    .se-dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .se-front-container {
        padding: 0 15px;
        margin: 20px auto;
    }
    
    .se-banner-visitante {
        padding: 40px 20px;
    }
    
    .se-banner-visitante h2 {
        font-size: 28px;
    }
    
    .se-banner-visitante p {
        font-size: 16px;
    }
    
    .se-dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .se-turmas-list {
        grid-template-columns: 1fr;
    }
    
    .se-resultados-tabela {
        overflow-x: auto;
    }
    
    .se-resultados-tabela table {
        min-width: 800px;
    }
}

/* ===== IMPRESSÃO ===== */
@media print {
    .se-action-buttons,
    .se-pagination,
    .se-form-container {
        display: none !important;
    }
    
    .se-dashboard-stats {
        break-inside: avoid;
    }
    
    .se-resultados-tabela {
        box-shadow: none;
    }
}
/* Estilos para visitantes */
.se-visitante-wrapper {
    max-width: 800px;
    margin: 100px auto;
    padding: 20px;
}
.se-banner-visitante {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.se-banner-visitante h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: white;
}
.se-banner-visitante p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
}
.se-btn-login {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
}
.se-btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background: #f0f0f0;
}
/*excluir aqui se obsoleto */
/* ===== ESTILOS PARA OS FILTROS DO DASHBOARD ===== */
/*.se-filtros-card {
/*    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    color: white;
}

.se-filtros-card h3 {
    margin: 0 0 20px 0;
    color: white;
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.se-filtros-card h3:before {
    content: '🔍';
    font-size: 24px;
}

.se-filtros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.se-filtro-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.se-filtro-group label {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
    color: white;
}

.se-filtro-group .se-select,
.se-filtro-group .se-input {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.se-filtro-group .se-select:hover,
.se-filtro-group .se-input:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.se-filtro-group .se-select:focus,
.se-filtro-group .se-input:focus {
    outline: none;
    border-color: #ffd700;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
}

.se-filtro-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.se-filtro-actions .se-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.se-filtro-actions .se-btn-primary {
    background: #ffd700;
    color: #333;
}

.se-filtro-actions .se-btn-primary:hover {
    background: #ffed4a;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.4);
}

.se-filtro-actions .se-btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.se-filtro-actions .se-btn-outline:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.3);
}

/* Responsividade */
/*@media (max-width: 768px) {
    .se-filtros-card {
        padding: 20px;
    }
    
    .se-filtros-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .se-filtro-actions {
        flex-direction: column;
    }
    
    .se-filtro-actions .se-btn {
        width: 100%;
    }
}

/* Animações */
/*@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.se-filtros-card:hover {
    animation: pulse 2s infinite;
}

/* Estilo para quando há resultados carregando */
/*.se-relatorio-container {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.se-relatorio-container .se-loader {
    padding: 40px;
    text-align: center;
    color: #666;
}

.se-relatorio-container .se-loader-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Estilo para mensagens de erro */
/*.se-error {
    color: #dc3545;
    padding: 15px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    margin: 10px 0;
}

/* Estilo para quando não há dados */
/*.se-no-data {
    padding: 40px;
    text-align: center;
    color: #666;
    font-style: italic;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}/*Até aqui*/

/* ===== ESTILOS ESPECÍFICOS PARA OS FILTROS DO DASHBOARD ===== */
/*.se-filtros-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.se-filtros-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.se-filtros-card h3 {
    margin: 0 0 25px 0;
    color: #1e293b;
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 15px;
}

.se-filtros-card h3:before {
    content: '🔍';
    font-size: 1.6rem;
    background: #e9ecef;
    padding: 8px;
    border-radius: 12px;
}

.se-filtros-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

.se-filtro-group {
    flex: 1 1 200px;
    min-width: 180px;
}

.se-filtro-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.se-filtro-group .se-select,
.se-filtro-group .se-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #1e293b;
    background-color: #f8fafc;
    transition: all 0.2s;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.se-filtro-group .se-select:hover,
.se-filtro-group .se-input:hover {
    border-color: #94a3b8;
    background-color: #ffffff;
}

.se-filtro-group .se-select:focus,
.se-filtro-group .se-input:focus {
    outline: none;
    border-color: #3b82f6;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.se-filtro-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.se-filtro-actions .se-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    min-width: 140px;
}

.se-filtro-actions .se-btn-primary {
    background: #3b82f6;
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.se-filtro-actions .se-btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(59, 130, 246, 0.4);
}

.se-filtro-actions .se-btn-outline {
    background: white;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.se-filtro-actions .se-btn-outline:hover {
    background: #f8fafc;
    color: #1e293b;
    border-color: #94a3b8;
    transform: translateY(-2px);
}

/* Ajuste específico para o período (dois inputs lado a lado) */
/*.se-filtro-periodo {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.se-filtro-periodo .se-input {
    flex: 1;
    min-width: 130px;
}

.se-filtro-periodo span {
    color: #64748b;
    font-weight: 500;
}

/* Responsividade */
/*@media (max-width: 768px) {
    .se-filtros-card {
        padding: 20px;
    }
    
    .se-filtros-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .se-filtro-group {
        width: 100%;
    }
    
    .se-filtro-actions {
        width: 100%;
    }
    
    .se-filtro-actions .se-btn {
        flex: 1;
        min-width: auto;
    }
    
    .se-filtro-periodo {
        flex-direction: column;
        gap: 10px;
    }
    
    .se-filtro-periodo .se-input {
        width: 100%;
    }
    
    .se-filtro-periodo span {
        align-self: center;
    }
}

/* Animações suaves */
/*@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.se-filtros-card {
    animation: slideIn 0.3s ease-out;
}*/

/* ===== FILTROS DO DASHBOARD - VERSÃO FINAL ===== */
/*.se-filtros-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
}

.se-filtros-card h3 {
    margin: 0 0 25px 0;
    color: #1a2639;
    font-size: 1.3rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f4f8;
}

.se-filtros-card h3:before {
    content: '🔍';
    font-size: 1.4rem;
}

.se-filtros-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Linha da Turma */
/*.se-filtros-linha-unica {
    width: 100%;
}

.se-filtro-group {
    width: 100%;
    max-width: 400px;
}

.se-filtro-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.se-filtro-group .se-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #1e293b;
    background-color: #f8fafc;
    transition: all 0.2s;
    cursor: pointer;
}

/* Linha do Período */
/*.se-filtros-linha-periodo {
    width: 100%;
}

.se-periodo-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.se-periodo-group {
    flex: 1;
    min-width: 180px;
}

.se-periodo-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.se-periodo-group .se-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #1e293b;
    background-color: #f8fafc;
    transition: all 0.2s;
}

.se-periodo-separador {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #94a3b8;
    padding: 0 5px;
    font-size: 1rem;
    min-width: 40px;
    height: 46px;
}

/* Linha dos Botões */
/*.se-filtros-linha-botoes {
    width: 100%;
    margin-top: 10px;
}

.se-filtro-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.se-filtro-actions .se-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 160px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.se-filtro-actions .se-btn-primary {
    background: #3b82f6;
    color: white;
}

.se-filtro-actions .se-btn-primary:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.se-filtro-actions .se-btn-outline {
    background: white;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.se-filtro-actions .se-btn-outline:hover {
    background: #f8fafc;
    color: #1e293b;
}

/* ===== RESPONSIVIDADE ===== */
/*@media (max-width: 768px) {
    .se-filtros-card {
        padding: 20px;
    }
    
    .se-filtro-group {
        max-width: 100%;
    }
    
    .se-periodo-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .se-periodo-group {
        width: 100%;
    }
    
    .se-periodo-separador {
        height: auto;
        padding: 5px 0;
        text-align: center;
    }
    
    .se-filtro-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .se-filtro-actions .se-btn {
        width: 100%;
        min-width: auto;
    }
}
*/