/* =================================
   Estilos Gerais e Layout Principal
   ================================= */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.07);
    border-radius: 5px;
}

.site-header, .site-footer {
    text-align: center;
    padding: 20px;
    background-color: #0044cc;
    color: #fff;
}

.site-header h1, .site-footer p {
    margin: 0;
}

/* =================================
   Página de Artigo Completo e Outras
   ================================= */
.full-article .article-image, .featured-card img, .sidebar-post img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.full-article .article-meta {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 20px;
}

.full-article .article-content {
    line-height: 1.7;
    font-size: 1.1em;
}

/* =================================
   Botões de Compartilhamento
   ================================= */
.share-buttons {
    margin: 20px 0;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px; 
}

.share-btn img {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    transition: transform 0.2s ease-in-out;
}

.share-btn img:hover {
    transform: scale(1.1);
}

/* =================================
   Seção de Comentários (ESTILO ELABORADO)
   ================================= */
.comments-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.comments-section h3 {
    font-size: 1.8em;
    color: #333;
    border-bottom: 2px solid #0044cc;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.comment-form {
    background-color: #fdfdfd;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 40px;
}

.comment-form .form-group {
    margin-bottom: 20px;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

/* AQUI ESTÁ O ESTILO PARA OS CAMPOS DE NOME E COMENTÁRIO */
.comment-form input[type="text"], 
.comment-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1em;
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* EFEITO AO CLICAR NOS CAMPOS */
.comment-form input[type="text"]:focus, 
.comment-form textarea:focus {
    border-color: #0044cc;
    box-shadow: 0 0 8px rgba(0, 68, 204, 0.2);
    outline: none;
}

/* BOTÃO DE ENVIAR */
.comment-form button {
    width: 100%;
    padding: 12px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s;
}

.comment-form button:hover {
    background-color: #003d82;
}

/* ESTILO DA LISTA DE COMENTÁRIOS */
.comments-list .comment {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.comments-list .comment p {
    margin: 0;
    line-height: 1.5;
}

.comments-list .comment p:last-child {
    margin-top: 8px;
    color: #343a40;
}

.comments-list .comment strong {
    color: #0056b3;
    font-size: 1.1em;
}

.comment-date {
    font-size: 0.85em;
    color: #6c757d;
    margin-left: 10px;
}
/* =================================
   Faixas Coloridas do Cabeçalho
   ================================= */
.site-header {
    /* Adicione esta linha para evitar que o conteúdo interno ultrapasse as bordas */
    overflow: hidden;
}

.header-faixa {
    width: 100%;
    height: 8px; /* Você pode ajustar a altura (grossura) da faixa aqui */
}

.header-faixa-verde {
    background-color: #009c3b; /* Verde da bandeira do Brasil */
}

.header-faixa-amarela {
    background-color: #ffdf00; /* Amarelo da bandeira do Brasil */
}