/* Estilos para a página de blog */
.blog-header {
    background-color: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

.blog-header .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-header h1 {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.blog-categories {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.blog-categories .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.category-filter {
    margin: 0 10px 10px;
    padding: 8px 20px;
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 30px;
    color: #666;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-filter:hover {
    background-color: #f5f5f5;
}

.category-filter.active {
    background-color: #b99d04;
    color: white;
    border-color: #b99d04;
}

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

.blog-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #000920;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: #b99d04;
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-read-more {
    color: #b99d04;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #e7b171;
}

.blog-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid #ddd;
    color: #666;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background-color: #f5f5f5;
}

.pagination-btn.active {
    background-color: #b99d04;
    color: white;
    border-color: #b99d04;
}

/* Estilos para página de artigo individual */
.article-header {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.article-header .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-category {
    background-color: #000920;
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.article-title {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 16px;
}

.article-meta span {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.article-meta i {
    margin-right: 5px;
}

.article-content {
    padding: 60px 0;
}

.article-content .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-image {
    margin-bottom: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-text {
    font-size: 18px;
    color: #444;
    line-height: 1.8;
}

.article-text p {
    margin-bottom: 25px;
}

.article-text h2 {
    font-size: 32px;
    color: #333;
    margin: 50px 0 25px;
    font-weight: 600;
}

.article-text h3 {
    font-size: 24px;
    color: #333;
    margin: 40px 0 20px;
    font-weight: 600;
}

.article-text ul, .article-text ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.article-text li {
    margin-bottom: 10px;
}

.article-text blockquote {
    border-left: 4px solid #b99d04;
    padding: 20px;
    background-color: #f9f9f9;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

.article-share {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
}

.share-label {
    font-size: 18px;
    color: #333;
    margin-right: 20px;
    font-weight: 600;
}

.share-buttons {
    display: flex;
}

.share-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #b99d04;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.share-button:hover {
    transform: translateY(-5px);
    background-color: #000920;
}

.related-articles {
    background-color: #f9f9f9;
    padding: 80px 0;
}

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

.related-articles-header {
    text-align: center;
    margin-bottom: 50px;
}

.related-articles-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Estilos para CTA e botão de WhatsApp */
.cta-box {
    margin-top: 40px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.whatsapp-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* Responsividade */
@media (max-width: 1200px) {
    .blog-grid, .related-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-header h1, .article-title {
        font-size: 32px;
    }
    
    .blog-grid, .related-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-text {
        font-size: 16px;
    }
    
    .article-text h2 {
        font-size: 28px;
    }
    
    .article-text h3 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .blog-header h1, .article-title {
        font-size: 28px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-meta span {
        margin-bottom: 10px;
    }
}
