/* Estilos para os boxes nos artigos */
.box-alert { 
    background-color: #fff8f8;
    border-left: 4px solid #dc3545;
    border-radius: 4px;
    padding: 15px 20px;
    margin: 15px 0;
    color: #333;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

article h1 {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #33608d;
    text-align: left;
}

article p {
    color: #333;
}

article h2 {
    font-size: 20px;
}

.box-info {
    background-color: #f8f9ff;
    border-left: 4px solid #0066cc;
    border-radius: 4px;
    padding: 15px 20px;
    margin: 15px 0;
    color: #333;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.box-tip {
    background-color: #f8fff9;
    border-left: 4px solid #28a745;
    border-radius: 4px;
    padding: 15px 20px;
    margin: 15px 0;
    color: #333;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Estilo da Lista Destacada */
.lista-destacada {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.lista-destacada-header {
    background-color: #0066cc;
    color: white;
    padding: 10px 15px;
    border-radius: 5px 5px 0 0;
    margin: -20px -20px 15px -20px;
    font-size: 1.2em;
    font-weight: bold;
}

.lista-destacada-content {
    color: #333;
    line-height: 1.6;
}

.lista-destacada-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lista-destacada-content li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.lista-destacada-content li:before {
    content: "♦";
    color: #3399ff;
    position: absolute;
    left: 0;
    top: 0;
}

.lista-destacada-footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    font-style: italic;
    color: #666;
}

/* Lista Destacada Light - Variação mais suave */
.lista-destacada-light {
    background-color: #e8f4f8;  /* Tom suave de azul-verde */
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    border: 1px solid #d1e7ef;
}

.lista-destacada-light-header {
    background-color: #00b8d4;  /* Tom mais vibrante para o cabeçalho */
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    margin: -20px -20px 15px -20px;
    font-size: 1.2em;
    font-weight: bold;
}

.lista-destacada-light-content {
    color: #2c3e50;
    line-height: 1.6;
}

.lista-destacada-light-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lista-destacada-light-content li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
}

.lista-destacada-light-content li:before {
    content: "•";  /* Bullet point em vez de diamante */
    color: #00b8d4;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
}

/* Estilo para Citações Bíblicas */
.citacao-biblica {
    background-color: #fcfcfc;
    padding: 25px 30px;
    margin: 20px 0;
    border-left: 3px solid #0066cc;
    position: relative;
    font-style: italic;
    line-height: 1.8;
    color: #2c3e50;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.citacao-biblica::before {
    content: '"';
    font-size: 60px;
    color: #0066cc;
    opacity: 0.2;
    position: absolute;
    left: 10px;
    top: 0;
    font-family: Georgia, serif;
    line-height: 1;
}

.citacao-biblica-texto {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.citacao-biblica-referencia {
    color: #666;
    font-size: 0.9em;
    text-align: right;
    margin-top: 10px;
    font-weight: 500;
}

/* Estilo para Linha do Tempo */
.linha-tempo {
    position: relative;
    padding-left: 50px;
    margin: 30px 0;
}

.linha-tempo::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #0066cc;
    opacity: 0.3;
}

.linha-tempo-item {
    position: relative;
    margin-bottom: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e9ecef;
}

.linha-tempo-item::before {
    content: '';
    position: absolute;
    left: -46px;
    top: 20px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #0066cc;
}

.linha-tempo-ano {
    position: absolute;
    left: -110px;
    top: 15px;
    font-weight: bold;
    color: #0066cc;
    font-size: 1.2em;
}

.linha-tempo-titulo {
    font-size: 1.3em;
    font-weight: bold;
    color: #0066cc;
    margin-bottom: 10px;
}

.linha-tempo-conteudo {
    color: #2c3e50;
    line-height: 1.6;
}

/* Estilo para Box de Curiosidades */
.box-curiosidade {
    background-color: #f0f7ff;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
    border: 1px solid #cce3ff;
    position: relative;
}

.box-curiosidade::before {
    content: '💡';
    font-size: 24px;
    position: absolute;
    top: -12px;
    left: 20px;
    background: #f0f7ff;
    padding: 0 10px;
}

.box-curiosidade-titulo {
    color: #0066cc;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
    padding-top: 5px;
}

.box-curiosidade-conteudo {
    color: #2c3e50;
    line-height: 1.6;
}

/* Estilo para Box de Oração */
.box-oracao {
    background-color: #fdfbf7;
    border: 1px solid #e6e0d5;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.box-oracao::before {
    content: '🙏';
    font-size: 24px;
    position: absolute;
    top: -12px;
    left: 20px;
    background: #fdfbf7;
    padding: 0 10px;
}

.box-oracao-titulo {
    color: #0066cc;
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    font-family: Georgia, serif;
}

.box-oracao-texto {
    color: #2c3e50;
    line-height: 1.8;
    font-size: 1.1em;
    font-style: italic;
    text-align: justify;
    margin-bottom: 15px;
}

.box-oracao-amem {
    text-align: right;
    color: #666;
    font-style: italic;
    margin-top: 20px;
    font-size: 0.9em;
}

/* Estilo para separador de conteúdo */
hr {
    border: none;
    height: 1px;
    background-color: transparent;
    margin: 25px 0; /* Espaçamento vertical de 40px acima e abaixo */
}

/* Alternativa: se quiser uma separação mais sutil com uma linha bem clara */
hr.separador-suave {
    border: none;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.05); /* Linha bem suave, quase invisível */
    margin: 30px 0;
}

/* Novos Templates */

/* Box de Reflexão Bíblica */
.box-reflexao {
    background: #f7f6f2;
    border-left: 4px solid #8b7355;
    padding: 20px;
    margin: 15px 0;
    font-style: italic;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.box-reflexao-titulo {
    color: #8b7355;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
}

.box-reflexao-texto {
    color: #2c3e50;
    line-height: 1.8;
}

/* Box de Versículo em Destaque */
.box-versiculo-destaque {
    background: #f8f9ff;
    text-align: center;
    padding: 30px;
    font-size: 1.2em;
    font-family: Georgia, serif;
    border: 1px solid #e6e9f0;
    border-radius: 8px;
    margin: 20px 0;
}

.box-versiculo-destaque-texto {
    color: #0066cc;
    font-size: 1.3em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.box-versiculo-destaque-referencia {
    color: #666;
    font-size: 0.8em;
}

/* Box de Referências Bíblicas */
.box-referencias {
    background: #fafafa;
    padding: 15px 20px;
    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 0.9em;
    margin: 15px 0;
}

.box-referencias-titulo {
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.box-referencias ul {
    margin: 0;
    padding-left: 20px;
    color: #444;
}

.box-referencias li {
    margin: 5px 0;
}

/* Box de Significado Bíblico */
.box-significado {
    background: #f9f7ff;
    border: 1px solid #e8e5f5;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
}

.box-significado-titulo {
    color: #6b4dc3;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
}

.box-significado-texto {
    color: #2c3e50;
    line-height: 1.6;
}

/* Box de Nota Histórica */
.box-nota-historica {
    background: #fff8f0;
    border: 1px solid #ffe8cc;
    border-radius: 8px;
    padding: 20px;
    margin: 15px 0;
}

.box-nota-historica-titulo {
    color: #b35900;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
}

.box-nota-historica-texto {
    color: #2c3e50;
    line-height: 1.6;
}

/* Classe para imagens responsivas */
.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
} 