/* Estilos específicos para as páginas de artigos */

.artigo-container {
    padding: 80px 0 60px;
    background-color: #f9f9f9;
    min-height: calc(100vh - 400px);
}

.artigo-completo {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 40px;
}

.artigo-cabecalho {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.artigo-categoria {
    display: inline-block;
    background: #8e44ad;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.artigo-completo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.artigo-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
    color: #7f8c8d;
    font-size: 0.95rem;
}

.artigo-imagem-destaque {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.artigo-imagem-destaque img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.artigo-imagem-destaque:hover img {
    transform: scale(1.03);
}

.artigo-conteudo {
    line-height: 1.8;
    color: #34495e;
    font-size: 1.1rem;
}

.artigo-conteudo h2 {
    font-family: 'Playfair Display', serif;
    color: #2c3e50;
    margin: 30px 0 15px;
    font-size: 1.8rem;
}

.artigo-conteudo h3 {
    color: #2c3e50;
    margin: 25px 0 12px;
    font-size: 1.4rem;
}

.artigo-conteudo p {
    margin-bottom: 20px;
    text-align: justify;
}

.artigo-conteudo ul, .artigo-conteudo ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.artigo-conteudo li {
    margin-bottom: 10px;
}

.artigo-conteudo strong {
    color: #2c3e50;
}

.artigo-tags {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.artigo-tags span {
    font-weight: 600;
    margin-right: 10px;
    color: #2c3e50;
}

.artigo-tags a {
    display: inline-block;
    background: #f4f6f7;
    color: #7f8c8d;
    padding: 5px 12px;
    border-radius: 4px;
    margin-right: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.artigo-tags a:hover {
    background: #8e44ad;
    color: white;
}

.artigo-acoes {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
}

.btn-primary {
    background: #8e44ad;
    color: white;
    border: 2px solid #8e44ad;
}

.btn-primary:hover {
    background: transparent;
    color: #8e44ad;
}

.btn-secondary {
    background: transparent;
    color: #8e44ad;
    border: 2px solid #8e44ad;
}

.btn-secondary:hover {
    background: #8e44ad;
    color: white;
}

/* Responsividade */
@media (max-width: 768px) {
    .artigo-completo {
        padding: 25px;
    }
    
    .artigo-completo h1 {
        font-size: 2rem;
    }
    
    .artigo-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .artigo-acoes {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}