/* ============================================
   Blog Custom Styles
   ============================================ */

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

.blog-hero {
    background: linear-gradient(135deg, #0b1e35 0%, #1a2f4a 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 0;
}

.blog-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin: 0 0 1rem;
    color: #c4a962;
}

.blog-hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   Filtros Customizados
   ============================================ */

.filters {
    background: white;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(11, 30, 53, 0.1);
    margin-bottom: 2rem;
}

.filters .container {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: #64748b;
}

.filter-select,
.search-input {
    padding: 0.75rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
}

.filter-select:focus,
.search-input:focus {
    outline: none;
    border-color: #0b1e35;
    box-shadow: 0 0 0 3px rgba(11, 30, 53, 0.1);
}

.search-input {
    max-width: 300px;
}

/* ============================================
   Newsletter CTA
   ============================================ */

.newsletter-cta {
    background: linear-gradient(135deg, rgba(0, 77, 64, 0.1), rgba(196, 169, 98, 0.1));
    border: 2px solid rgba(196, 169, 98, 0.2);
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin: 4rem 1.5rem;
}

.newsletter-cta h2 {
    color: #0b1e35;
    font-size: 1.75rem;
    margin: 0 0 0.5rem;
}

.newsletter-cta p {
    color: #64748b;
    margin: 0;
}

/* ============================================
   Paginação
   ============================================ */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.btn-pagination {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-pagination:hover:not(:disabled) {
    border-color: #0b1e35;
    background: #f8fafc;
}

.btn-pagination:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.page-info {
    color: #64748b;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 768px) {
    .filters .container {
        flex-direction: column;
    }

    .filter-group,
    .search-input {
        width: 100%;
    }

    .search-input {
        max-width: 100%;
    }

    .btn-filter {
        width: 100%;
    }

    .blog-hero {
        padding: 2rem 1rem;
    }

    .newsletter-cta {
        margin: 2rem 1rem;
    }
}
