/* Estilos específicos para a página "Quem Somos" */

/* --- Seção de Introdução --- */
.about-intro-section {
    background-color: var(--light-gray);
}
.about-intro-content {
    display: flex;
    align-items: center;
    gap: 60px;
}
.about-intro-text {
    flex: 1;
}
.about-intro-text h1 {
    font-size: 3.5rem;
    color: var(--primary-dark);
    text-align: left;
    line-height: 1.2;
    margin-bottom: 20px;
}
.about-intro-text p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}
.about-intro-image {
    flex: 1;
}
.about-intro-image img {
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}


/* --- Seção de Propósito, Missão, Visão --- */
.purpose-section {
    background-color: var(--white);
}
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.purpose-card {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}
.purpose-card i {
    font-size: 2.5rem;
    color: var(--highlight-gold);
    margin-bottom: 20px;
}
.purpose-card h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}


/* --- Seção Linha do Tempo --- */
.timeline-section {
    background-color: var(--primary-dark); /* CORRIGIDO: Fundo cinza-chumbo */
    color: var(--white); /* CORRIGIDO: Texto branco */
}
.timeline-section h2 {
    color: var(--white); /* CORRIGIDO: Título branco */
    margin-bottom: 60px;
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--highlight-gold);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}
.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}
.timeline-dot {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border: 4px solid var(--highlight-gold);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}
.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}
.timeline-content {
    padding: 20px 30px;
    background-color: rgba(255,255,255,0.1); /* Um branco transparente sutil sobre o cinza-chumbo */
    position: relative;
    border-radius: 8px;
    color: var(--white); /* CORRIGIDO: Garantir texto branco dentro do conteúdo */
}
.timeline-content h3 {
    color: var(--highlight-gold); /* CORRIGIDO: Título em dourado */
}
.timeline-content p {
    color: rgba(255, 255, 255, 0.8); /* CORRIGIDO: Parágrafo em branco mais suave */
}


/* --- Seção Nossos Pilares de Atuação --- */
.pillars-section {
    background-color: var(--white);
}
.pillars-section h2 {
    margin-bottom: 60px;
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.pillar-card {
    text-align: center;
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.pillar-card i {
    font-size: 3rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}
.pillar-card h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 15px;
}
.pillar-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}


/* --- RESPONSIVIDADE PÁGINA QUEM SOMOS --- */
@media (max-width: 992px) {
    .about-intro-content {
        flex-direction: column;
        text-align: center;
    }
    .about-intro-text h1 {
        text-align: center;
    }
    .purpose-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-intro-text h1 { font-size: 2.5rem; }

    .timeline::after {
        left: 10px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 40px;
        padding-right: 0;
    }
    .timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }
    .timeline-item:nth-child(odd) .timeline-dot, .timeline-item:nth-child(even) .timeline-dot {
        left: 0;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }
}