/* ==========================================================================
   VISAO-MISSAO.HTML - Pilares Filosóficos e Identidade Teológica
   ========================================================================== */

body {
    background-color: #ffffff !important; /* Força o fundo a ser inteiramente branco */
}

/* --- CORREÇÃO: CABEÇALHO DA PÁGINA (Page Header) --- */
.page-header {
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 34, 68, 0.95)), url('../img/page-header.jpg') center center no-repeat;
    background-size: cover;
    background-color: #003366; 
    padding: 40px 0 !important; 
    margin-bottom: 30px !important; /* CORREÇÃO: Alinhamento preciso e eliminação de vãos em branco */
    border-bottom: 4px solid #ffcc00; 
}

/* Texto perfeitamente contrastado no cabeçalho */
.page-header h1, 
.page-header h3 {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 5px;
}

.page-header a {
    color: rgba(255, 255, 255, 0.75) !important;
    transition: color 0.2s ease;
}

.page-header a:hover {
    color: #ffffff !important;
    text-decoration: none;
}

/* --- TIPOGRAFIA E CORES DOS TÍTULOS (Cinza-Grafite Profissional) --- */
.section-title {
    color: #1e293b !important; /* Título principal da seção */
}

.section-title-card {
    color: #0f172a !important; /* Títulos internos dos blocos/cards */
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

.lead-text {
    color: #475569; /* Cor cinza-carvão para leitura limpa e confortável */
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Estilização para o alinhamento e espaçamento da lista de valores */
.values-list li {
    margin-bottom: 10px;
    position: relative;
    text-align: left;
}

/* --- CARDS DOS PILARES (Efeito Hover Sutil) --- */
.card-pillar {
    transition: all 0.3s ease;
    border-color: #e2e8f0 !important;
}

.card-pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06) !important;
    border-color: #cbd5e1 !important;
}

.card-icon-wrapper {
    transition: transform 0.3s ease;
}

.card-pillar:hover .card-icon-wrapper {
    transform: scale(1.08);
}

/* --- BOTÃO FLUTUANTE "VOLTAR AO TOPO" --- */
#backToTop {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #003366 !important;
    border: none;
    transition: all 0.3s ease;
}

#backToTop:hover {
    background-color: #002244 !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* ==========================================================================
   COMPONENTES ADICIONAIS OPTATIVOS (Preservados do original)
   ========================================================================== */

/* Caixa de Destaque Alternativa */
.core-pillar-banner {
    background-color: #f8fafc;
    border-left: 5px solid #003366;
    padding: 35px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 40px;
}

/* Bloco Teológico / Versículos Base */
.scripture-quote-box {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.95)), url('../img/bible-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 50px 40px;
    border-radius: 12px;
    color: #ffffff;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.scripture-text {
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 15px;
}

.scripture-reference {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #38bdf8;
    font-weight: 600;
}