/* Estilos Base para la página About */

.about-page {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Roboto Flex', sans-serif;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
    color: #fff;
} 


/* 2. PILLARS GRID */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pillar-card {
    background: rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-soft);
    transition: 0.3s;
}

.pillar-card:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-5px);
}

.pillar-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.pillar-card p {
    font-size: 1.4rem;
    line-height: 1.5;
    color: #bbb;
}

/* 3. TIMELINE */
.timeline-wrapper {
    position: relative;
    border-left: 2px solid var(--border-soft);
    margin-left: 20px;
    padding-left: 40px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -51px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: var(--text-light);
    border-radius: 50%;
}

.timeline-year {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.timeline-desc {
    font-size: 1.6rem;
    color: #aaa;
}

/* 4. PHILOSOPHY */
.values-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    border-top: 1px solid var(--border-soft);
    padding-top: 60px;
}

.value-item {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.value-label {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.value-item p {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 1.6rem;
    color: var(--text-light);
    opacity: 0.9;
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .pillar-card { padding: 25px; }
    .timeline-wrapper { margin-left: 10px; padding-left: 25px; }
    .timeline-item::before { left: -36px; }
}