body.lideranca-view {
    background-color: var(--fundo-base);
    overflow-y: auto;
}

.hero-interna {
    margin-top: 100px;
    height: 35vh;
    min-height: 250px;
    background: linear-gradient(rgba(13, 18, 38, 0.8), rgba(13, 18, 38, 0.95)), url('../assets/fundo.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero-interna h1 { color: var(--texto); }

.hero-interna p { color: var(--cinza); }


.secao-lideranca { padding: 60px 0; }

.titulo-sessao {
    text-align: center;
    color: var(--laranja);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 40px;
    position: relative;
}

.titulo-sessao::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primaria);
    margin: 10px auto;
}

/* --- ESTILOS DOS PASTORES (DESTAQUE) --- */
.lideranca-foco {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.card-lider {
    background-color: var(--fundo-solido);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.destaque-ouro { width: 100%; max-width: 900px; }
.destaque-prata { width: 100%; max-width: 750px; }

.lider-foto { flex: 0 0 40%; height: 400px; }
.lider-foto img { width: 100%; height: 100%; object-fit: cover; }

.lider-info { flex: 1; padding: 40px; }
.lider-info h3 { font-size: 2rem; color: var(--texto); margin-bottom: 15px; }
.lider-info p { color: var(--cinza); font-style: italic; line-height: 1.6; }

/* --- GRID DE OBREIROS --- */
.obreiros-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.card-obreiro {
    position: relative;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.card-obreiro img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }

.obreiro-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, var(--fundo-solido), transparent);
    text-align: center;
}

.obreiro-overlay h4 { color: var(--texto); font-size: 1.1rem; }
.obreiro-overlay span { color: var(--primaria); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; }

.card-obreiro:hover img { transform: scale(1.1); }

/* --- BOTÃO REVELAR (PADRÃO) --- */
.container-botao-final {
    display: flex;
    justify-content: center;
    padding: 40px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    pointer-events: none;
}

.container-botao-final.revelar {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.btn-saiba-mais {
    display: inline-block;
    background-color: var(--laranja);
    color: var(--texto);
    padding: 18px 45px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.9rem;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .card-lider { flex-direction: column; text-align: center; }
    .lider-foto { flex: 0 0 auto; width: 100%; height: 300px; }
    .obreiros-grid { grid-template-columns: repeat(2, 1fr); padding: 0 10px; }
}

@media (max-width: 600px) {
    .obreiros-grid { grid-template-columns: 1fr; }
    .lider-info h3 { font-size: 1.5rem; }
    .btn-saiba-mais { width: 85%; text-align: center; }
}