/* Estilos para o Diário Oficial - Frontend */

.diario-lidera-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Filtros */
.diario-lidera-filters {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.filter-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
}

.filter-tab {
    background: none;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    font-weight: 500;
    color: #6c757d;
    transition: all 0.3s ease;
}

.filter-tab.active {
    color: #007cba;
    border-bottom-color: #007cba;
}

.filter-tab:hover {
    color: #007cba;
}

.filter-content {
    margin-top: 20px;
}

.filter-panel {
    display: none;
}

.filter-panel.active {
    display: block;
}

.filter-row {
    margin-bottom: 15px;
}

.filter-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #495057;
}

.filter-row input {
    width: 100%;
    max-width: 300px;
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

.filter-row input:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.25);
}

.filter-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background-color: #007cba;
    color: white;
}

.btn-primary:hover {
    background-color: #005a87;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #545b62;
    color: white;
}

.btn-download {
    background-color: #28a745;
    color: white;
    margin-right: 10px;
    margin-bottom: 10px;
}

.btn-download:hover {
    background-color: #218838;
    color: white;
}

.btn-completa {
    background-color: #007cba;
}

.btn-completa:hover {
    background-color: #005a87;
}

.btn-extra {
    background-color: #6f42c1;
}

.btn-extra:hover {
    background-color: #5a32a3;
}

/* Resultados */
.diario-lidera-results {
    margin-top: 30px;
}

.search-results-info {
    background: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 20px;
}

.search-results-info p {
    margin: 0;
    color: #004085;
}

.edicoes-list {
    display: grid;
    gap: 20px;
}

.edicao-item {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.edicao-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.edicao-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.edicao-title {
    margin: 0;
    font-size: 1.25rem;
    color: #212529;
    flex: 1;
}

.edicao-numero {
    background: #007cba;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.edicao-actions {
    margin-bottom: 15px;
}

.edicao-content {
    color: #6c757d;
    line-height: 1.6;
}

.edicao-content p {
    margin-bottom: 10px;
}

/* Paginação */
.diario-lidera-pagination {
    margin-top: 30px;
    text-align: center;
}

.diario-lidera-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 2px;
    border: 1px solid #dee2e6;
    color: #007cba;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.diario-lidera-pagination .page-numbers:hover,
.diario-lidera-pagination .page-numbers.current {
    background-color: #007cba;
    color: white;
    border-color: #007cba;
}

/* Sem resultados */
.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.no-results p {
    font-size: 1.1rem;
    margin: 0;
}

/* Widget de busca */
.diario-lidera-search-widget {
    margin-bottom: 20px;
}

.search-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 200px;
    padding: 10px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 14px;
}

.search-input:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.25);
}

.search-button {
    padding: 10px 20px;
    background-color: #007cba;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.search-button:hover {
    background-color: #005a87;
}

/* Template single */
.diario-lidera-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.diario-lidera-single .entry-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
}

.diario-lidera-single .entry-title {
    margin: 0 0 10px 0;
    color: #212529;
}

.edicao-meta {
    margin-top: 10px;
}

.edicao-downloads {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.edicao-downloads h3 {
    margin: 0 0 15px 0;
    color: #495057;
}

.entry-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
}

.entry-terms {
    margin-bottom: 20px;
}

.terms-label {
    font-weight: 500;
    color: #495057;
    margin-right: 5px;
}

.entry-navigation {
    text-align: center;
}

/* Responsividade */
@media (max-width: 768px) {
    .diario-lidera-container {
        padding: 15px;
    }
    
    .filter-tabs {
        flex-direction: column;
    }
    
    .filter-tab {
        text-align: left;
        border-bottom: 1px solid #dee2e6;
        border-right: none;
    }
    
    .filter-tab.active {
        border-bottom-color: #dee2e6;
        border-left: 3px solid #007cba;
        background-color: #f8f9fa;
    }
    
    .edicao-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .edicao-numero {
        align-self: flex-start;
    }
    
    .filter-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-input {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .diario-lidera-container {
        padding: 10px;
    }
    
    .edicao-item {
        padding: 15px;
    }
    
    .edicao-title {
        font-size: 1.1rem;
    }
}

