/* Guias & Dicas - Custom Styles */

.blog-hero {
    padding: 120px 0 60px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/banner-guias-dicas.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
}

.blog-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.blog-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: #f1f1f1;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    font-weight: 300;
}

.articles-section {
    padding: 80px 0;
    background-color: #f9f7f2;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .article-grid {
        grid-template-columns: 1fr;
    }
}

.article-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.article-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-date {
    font-size: 0.85rem;
    color: #c5a059;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #333;
}

.article-summary {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.read-more-btn {
    align-self: flex-start;
    padding: 10px 25px;
    background-color: #c5a059;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.read-more-btn:hover {
    background-color: #a68549;
    color: #fff;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 8px 15px;
    border: 1px solid #c5a059;
    background: transparent;
    color: #c5a059;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pagination-btn.active {
    background-color: #c5a059;
    color: #fff;
}

.pagination-btn:hover:not(.active):not(:disabled) {
    background-color: #f4f1ea;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #ccc;
    color: #ccc;
}

.page-numbers {
    display: flex;
    gap: 10px;
}

/* Loading state */
.loading-indicator {
    text-align: center;
    padding: 50px;
    font-size: 1.2rem;
    color: #c5a059;
}