.institucional-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 20px;
    /* Unificado: O gradiente já faz o papel de overlay aqui */
    background:
        linear-gradient(135deg, rgba(7, 16, 34, 0.84), rgba(15, 111, 125, 0.58)),
        url('/midia/pre-sets/case/nb_case_gm.webp') no-repeat center center;
    background-size: cover; 
    background-attachment: scroll !important;
}

.container-inst {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
}

.inst-card-animado {
    background: var(--surface-card);
    padding: 42px;
    border-radius: 22px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-elevated);
    opacity: 0;
    transform: translateY(60px); 
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.inst-card-animado.reveal {
    opacity: 1;
    transform: translateY(0);
}

.inst-content h2 {
    color: var(--text-highlight);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 25px;
    font-weight: 800;
}

.inst-content p {
    line-height: 1.8;
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.divisor-inst {
    border: 0;
    border-top: 1px solid var(--border-soft);
    margin: 40px 0; 
    width: 100%;
}

/* --- FUNDADORES (Layout Lado a Lado) --- */
.fundadores-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 60px; 
    margin-top: 40px;
    width: 100%;
}

.perfil-fundador {
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 300px;
}

/* --- FOTO E TEXTO --- */
.foto-aro {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    padding: 3px;
    background: var(--btn-gradient-blue);
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.foto-aro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.foto-aro:hover { 
    transform: scale(1.05); 
    background: var(--btn-gradient-blue-hover);
}

.info-fundador h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.info-fundador p {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- RESPONSIVIDADE (Mobile) --- */
@media (max-width: 768px) {
    .inst-card-animado { padding: 30px 20px; }

    .inst-content h2 {
        font-size: 2rem;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .inst-content p {
        font-size: 0.98rem;
        line-height: 1.65;
    }
    
    .fundadores-grid {
        flex-direction: column; 
        gap: 35px;
        align-items: flex-start;
        padding-left: 5px;
    }

    .perfil-fundador { min-width: unset; }

    .lista-inst li {
        font-size: 0.98rem; /* Acompanha a redução dos parágrafos no mobile */
        line-height: 1.65;
    }
}
/* --- ESTILO DA LISTAGEM INSTITUCIONAL --- */
.lista-inst {
    list-style-type: none; /* Removemos o ponto padrão para usar um personalizado se quiser */
    padding: 0;
    margin: 20px 0 25px 5px;
}

.lista-inst li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.6;
    color: var(--text-secondary); /* Herda a mesma cor dos seus parágrafos */
    font-size: 1.05rem; /* Mesma fonte do .inst-content p */
}

/* Criando um marcador personalizado que combina com seu gradiente */
.lista-inst li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--text-highlight); /* Usa a cor de destaque do seu H2 */
    font-weight: bold;
    font-size: 1.2rem;
}

.lista-inst li strong {
    color: var(--text-primary); /* Destaque leve para os títulos dos itens */
    font-weight: 700;
}
