/* assets/css/post.css */
.post-completo {
    padding: 2rem 0;
}

.post-header {
    margin-bottom: 2rem;
}

.categorias-lista {
    margin-bottom: 1rem;
}

.categoria {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-right: 0.5rem;
    text-decoration: none;
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.autor-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.autor-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.autor-info time {
    display: block;
    color: #666;
    font-size: 0.875rem;
}

.post-stats {
    display: flex;
    gap: 1rem;
    color: #666;
    font-size: 0.875rem;
}

.post-imagem {
    margin-bottom: 2rem;
}

.post-imagem img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.post-conteudo {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.post-conteudo h2 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem;
}

.post-conteudo h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.post-conteudo p {
    margin-bottom: 1.5rem;
}

.post-conteudo ul, 
.post-conteudo ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.post-conteudo blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #666;
}

.post-tags {
    margin: 2rem 0;
}

.tag {
    display: inline-block;
    color: #666;
    text-decoration: none;
    margin-right: 1rem;
    font-size: 0.875rem;
}

.tag:hover {
    color: var(--primary-color);
}

.post-compartilhar {
    margin: 2rem 0;
    padding: 2rem;
    background: #f5f5f5;
    border-radius: 8px;
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-share {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-share.facebook {
    background: #1877f2;
}

.btn-share.twitter {
    background: #1da1f2;
}

.btn-share.whatsapp {
    background: #25d366;
}

/* Seção de Comentários */
.post-comentarios {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.form-comentario {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 8px;
}

.respondendo {
    background: #e9ecef;
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.comentario {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

.comentario:last-child {
    border-bottom: none;
}

.comentario-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comentario-conteudo {
    line-height: 1.6;
}

.comentario-acoes {
    margin-top: 1rem;
}

.respostas {
    margin-left: 3rem;
    margin-top: 1.5rem;
    padding-left: 1.5rem;
    border-left: 2px solid #ddd;
}

.resposta {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}

.resposta:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

@media (max-width: 768px) {
    .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .respostas {
        margin-left: 1rem;
        padding-left: 1rem;
    }
}