/* Blog Header */
.blog-header {
    background: var(--dark-light);
    padding: 20px 0;
    border-bottom: 1px solid var(--card-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.blog-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-logo img {
    height: 40px;
    width: auto;
}

/* Blog Posts */
.blog-posts {
    padding: 60px 0;
    background: var(--dark-color);
}

.blog-post {
    background: var(--dark-light);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 60px;
    border: 1px solid var(--card-border);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--primary-dark);
    color: white;
}

.post-category {
    background: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.post-date {
    font-size: 0.9rem;
    opacity: 0.8;
}

.post-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 30px 20px;
    color: var(--text-color);
    line-height: 1.3;
}

.post-image {
    margin: 0 20px 30px;
    border-radius: 10px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.post-image:hover img {
    transform: scale(1.02);
}

.post-content {
    padding: 0 20px 40px;
    color: var(--text-color);
}

.post-content h2 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--text-color);
}

.post-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--text-muted);
}

.post-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 10px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Blog Footer */
.blog-footer {
    background: var(--dark-light);
    padding: 40px 0;
    border-top: 1px solid var(--card-border);
}

.footer-logo {
    width: auto;
    margin-bottom: 20px;
}

.blog-footer p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .post-title {
        font-size: 1.8rem;
    }
    
    .post-content h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .post-title {
        font-size: 1.5rem;
        margin: 20px 15px;
    }
    
    .post-header {
        padding: 15px;
    }
    
    .post-image {
        margin: 0 15px 20px;
    }
    
    .post-content {
        padding: 0 15px 30px;
    }
    
    .post-content h2 {
        font-size: 1.2rem;
    }
} 