        :root {
            --bg-color: #FAFAFA;
            --text-main: #333333;
            --text-light: #555555;
            --primary: #1A3FE8; /* Azul principal */
            --accent: #E8132A; /* Vermelho alerta */
            --box-bg: #F0F4FF;
            --quote-bg: #FFFBF0;
            --quote-border: #FFD54F;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-color);
            color: var(--text-main);
            font-family: 'Merriweather', serif;
            line-height: 1.8;
            font-size: 1.125rem; /* 18px para leitura confortável */
        }

        /* BARRA DE PROGRESSO (JS) */
        .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: #e0e0e0;
            z-index: 9999;
        }
        .progress-bar {
            height: 6px;
            background: var(--accent);
            width: 0%;
        }

        /* CONTAINER PRINCIPAL */
        .article-container {
            max-width: 1000px;
            margin: 60px auto;
            padding: 0 20px;
            background: #ffffff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-radius: 12px;
            overflow: hidden;
        }

        /* CABEÇALHO DA MATÉRIA */
        .article-header {
            padding: 50px 40px 30px;
            border-bottom: 2px solid #EEEEEE;
            text-align: center;
        }
        .category-tag {
            display: inline-block;
            font-family: 'Inter', sans-serif;
            background-color: var(--accent);
            color: #fff;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            padding: 6px 14px;
            border-radius: 50px;
            margin-bottom: 20px;
        }
        .article-header h1 {
            font-family: 'Inter', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            color: #111;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        .article-meta {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: #888;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }

        /* CONTEÚDO */
        .article-content {
            padding: 40px;
        }
        .article-content p {
            margin-bottom: 25px;
            color: var(--text-light);
        }
        
        .article-content h2 {
            font-family: 'Inter', sans-serif;
            font-size: 1.8rem;
            color: var(--primary);
            margin: 45px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--box-bg);
        }

        .article-content h3 {
            font-family: 'Inter', sans-serif;
            font-size: 1.4rem;
            color: #222;
            margin: 35px 0 15px;
        }

        /* CAIXAS DE DESTAQUE (CALLOUTS) */
        .info-box {
            background-color: var(--box-bg);
            border-left: 5px solid var(--primary);
            padding: 25px;
            border-radius: 0 8px 8px 0;
            margin: 35px 0;
            font-family: 'Inter', sans-serif;
            font-size: 1.05rem;
            color: #222;
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }
        .info-box i {
            font-size: 2rem;
            color: var(--primary);
            margin-top: 5px;
        }

        /* CITAÇÕES BÍBLICAS */
        .bible-quote {
            text-align: center;
            font-size: 1.3rem;
            font-style: italic;
            color: var(--primary);
            margin: 40px 0;
            padding: 0 30px;
            position: relative;
        }
        .bible-quote::before, .bible-quote::after {
            content: "“";
            font-family: 'Inter', sans-serif;
            font-size: 4rem;
            color: rgba(26, 63, 232, 0.1);
            position: absolute;
            top: -20px;
        }
        .bible-quote::before { left: 0; }
        .bible-quote::after { content: "”"; right: 0; }
        .bible-ref {
            display: block;
            font-size: 0.9rem;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            margin-top: 10px;
            color: #777;
            font-style: normal;
        }

        /* CITAÇÃO ESPÍRITO DE PROFECIA (EGW) */
        .egw-quote {
            background-color: var(--quote-bg);
            border: 2px dashed var(--quote-border);
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            position: relative;
        }
        .egw-quote p {
            margin-bottom: 0 !important;
            font-style: italic;
            color: #5d4a1f;
        }
        .egw-author {
            display: block;
            text-align: right;
            margin-top: 15px;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 0.9rem;
            color: #b58900;
        }

        /* MARCAÇÕES DE TEXTO */
        mark {
            background-color: rgba(232, 19, 42, 0.15);
            color: var(--text-main);
            padding: 2px 4px;
            border-radius: 3px;
        }

        .highlight-blue {
            background-color: rgba(26, 63, 232, 0.15);
            padding: 2px 4px;
            border-radius: 3px;
        }

        /* RESPONSIVO */
        @media (max-width: 768px) {
            .article-container { margin: 20px; border-radius: 0; }
            .article-header h1 { font-size: 2.2rem; }
            .article-content { padding: 25px 20px; }
            .info-box { flex-direction: column; gap: 10px; }
        }
		
		/* CONTAINER DOS BOTÕES DE NAVEGAÇÃO */
.article-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px auto 80px;
    max-width: 800px;
    padding: 0 20px;
}

/* ESTILO BASE DOS BOTÕES */
.article-navigation .btn-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* CORES ESPECÍFICAS DOS BOTÕES */
.article-navigation .btn-orange {
    background-color: #FF6B00; /* Laranja vibrante */
}
.article-navigation .btn-green {
    background-color: #12A84A; /* Verde moderno */
}

/* COR DO NOVO BOTÃO PÁGINA INICIAL */
.article-navigation .btn-blue {
    background-color: var(--primary); /* Usa o azul principal do seu site */
}

/* EFEITOS DE HOVER (Passar o mouse) */
.article-navigation .btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    color: #fff;
}
.article-navigation .btn-nav:active {
    transform: translateY(1px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* ESTILO DA IMAGEM DE DESTAQUE DA MATÉRIA */
.article-featured-image {
    width: 100%;
    height: auto;
    aspect-ratio: 21 / 9; /* Mantém a proporção panorâmica, pode mudar para 2/1 se preferir */
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* RESPONSIVO PARA CELULARES */
@media (max-width: 600px) {
    .article-navigation {
        flex-direction: column;
        width: 100%;
    }
    .article-navigation .btn-nav {
        width: 100%;
    }
}