/* ============================================
   Sobre Page Styles
   ============================================ */

/* História Section */
.historia-section {
    padding: 6rem 0;
}

.historia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.historia-text h2 {
    margin-bottom: 1rem;
}

.historia-text .subtitle {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.historia-text p {
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 2rem);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 2rem);
    text-align: left;
}

.timeline-date {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content {
    background-color: var(--gray-100);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    color: var(--gray-700);
}

/* MVV Section */
.mvv-section {
    padding: 6rem 0;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mvv-card {
    text-align: center;
    padding: 2.5rem;
}

.mvv-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mvv-card h3 {
    margin-bottom: 1rem;
}

.mvv-card p {
    color: var(--gray-600);
    line-height: 1.8;
}

/* Valores Section */
.valores-section {
    padding: 6rem 0;
}

.valores-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.valor-card {
    text-align: center;
    padding: 2rem;
}

.valor-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.valor-card h3 {
    margin-bottom: 1rem;
}

.valor-card p {
    color: var(--gray-600);
}

/* Equipe Section */
.equipe-section {
    padding: 6rem 0;
}

.equipe-section h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 3rem;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.equipe-card {
    text-align: center;
    padding: 2rem;
}

.equipe-avatar {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.equipe-card h3 {
    margin-bottom: 0.5rem;
}

.equipe-card .cargo {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.equipe-card .descricao {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Números Section */
.numeros-section {
    padding: 6rem 0;
    background-color: var(--gray-100);
}

.numeros-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.numeros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.numero-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.numero {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.numero-card p {
    color: var(--gray-700);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .historia-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .timeline::before {
        left: 0;
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-left: 3rem;
        padding-right: 0;
        text-align: left;
    }
}

@media (max-width: 480px) {    
    .numero {
        font-size: 2rem;
    }
}
