/* =========================================================
   ABOUT PAGE
========================================================= */

/* ── HISTORIA ── */
.about-section {
    padding: 80px 40px;
    background: var(--white);
}
.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 72px;
    align-items: start;
}
.about-photo-col { position: sticky; top: calc(var(--nav-h) + 24px); }
.about-photo-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--brand-light);
}
.about-photo { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.about-exp-badge {
    position: absolute;
    bottom: 20px; right: 20px;
    background: var(--brand);
    border-radius: 12px;
    padding: 14px 18px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(39,74,187,.4);
}
.about-exp-num {
    font-family: 'Playfair Display', serif;
    font-size: 32px; font-weight: 700;
    color: #fff; display: block; line-height: 1;
}
.about-exp-lbl {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; color: rgba(255,255,255,.75);
    line-height: 1.4; margin-top: 4px; display: block;
}
.about-divider {
    width: 48px; height: 3px;
    background: var(--brand);
    border-radius: 2px;
    margin: 16px 0 28px;
}
.about-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; line-height: 1.8;
    color: var(--muted); margin-bottom: 28px;
}

/* Timeline */
.about-timeline { display: flex; flex-direction: column; gap: 0; }
.abt-item {
    display: flex;
    gap: 20px;
    padding-bottom: 28px;
    position: relative;
}
.abt-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 38px;
    top: 32px;
    bottom: 0;
    width: 1px;
    background: var(--border);
}
.abt-year {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--brand-light);
    border: 2px solid var(--brand);
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 600;
    color: var(--brand);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.abt-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 500;
    color: var(--text); margin-bottom: 6px;
}
.abt-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; color: var(--muted); line-height: 1.7;
}

/* ── MISIÓN Y VISIÓN ── */
.mv-section {
    background: var(--surface);
    padding: 80px 40px;
    border-top: 1px solid var(--border);
}
.mv-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.mv-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
}
.mv-card--accent {
    background: var(--brand);
    border-color: var(--brand);
}
.mv-card--accent .mv-icon { background: rgba(255,255,255,.15); color: #fff; }
.mv-card--accent .mv-title { color: #fff; }
.mv-card--accent .mv-text { color: rgba(255,255,255,.75); }
.mv-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--brand-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--brand);
    margin-bottom: 20px;
}
.mv-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 600;
    color: var(--text); margin-bottom: 12px;
}
.mv-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; line-height: 1.8; color: var(--muted);
}

/* ── VALORES ── */
.values-section { padding: 80px 40px; background: var(--white); border-top: 1px solid var(--border); }
.values-inner { max-width: 1200px; margin: 0 auto; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.value-card {
    padding: 28px 22px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    transition: border-color .2s, transform .2s;
}
.value-card:hover { border-color: var(--brand); transform: translateY(-4px); }
.value-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--brand-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--brand);
    margin-bottom: 16px;
    transition: background .2s, color .2s;
}
.value-card:hover .value-icon { background: var(--brand); color: #fff; }
.value-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 600;
    color: var(--text); margin-bottom: 8px;
}
.value-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; color: var(--muted); line-height: 1.7;
}

/* ── ÁREAS ── */
.areas-section { padding: 80px 40px; background: var(--surface); border-top: 1px solid var(--border); }
.areas-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.areas-grid {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 24px;
}
.area-chip {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 8px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 500;
    color: var(--text);
    transition: border-color .2s, background .2s, color .2s;
    cursor: default;
}
.area-chip i { color: var(--brand); font-size: 13px; }
.area-chip:hover { border-color: var(--brand); background: var(--brand-light); color: var(--brand); }
.areas-map-placeholder {
    aspect-ratio: 1;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 12px;
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
}
.areas-map-placeholder i { font-size: 48px; color: var(--brand); opacity: .3; }

/* ── PROCESO ── */
.process-section { padding: 80px 40px; background: var(--white); border-top: 1px solid var(--border); }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.process-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    position: relative;
}
.ps-num {
    font-family: 'Playfair Display', serif;
    font-size: 13px; font-weight: 600;
    color: var(--brand); letter-spacing: 1px;
    margin-bottom: 12px;
}
.ps-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--brand-light);
    border: 2px solid var(--brand);
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--brand);
    margin: 0 auto 16px;
    transition: background .2s, color .2s;
}
.process-step:hover .ps-icon { background: var(--brand); color: #fff; }
.ps-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 600;
    color: var(--text); margin-bottom: 8px;
}
.ps-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; color: var(--muted); line-height: 1.7;
}
.process-connector {
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: var(--border);
    margin-top: 42px;
    position: relative;
}
.process-connector::after {
    content: '';
    position: absolute;
    right: -5px; top: -4px;
    width: 10px; height: 10px;
    border-top: 2px solid var(--border);
    border-right: 2px solid var(--border);
    transform: rotate(45deg);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { flex-wrap: wrap; justify-content: center; }
    .process-connector { display: none; }
    .process-step { min-width: 200px; margin-bottom: 32px; }
}
@media (max-width: 900px) {
    .about-inner, .mv-inner, .areas-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-photo-col { position: static; max-width: 340px; margin: 0 auto; width: 100%; }
    .areas-map-placeholder { aspect-ratio: 16/9; }
}
@media (max-width: 600px) {
    .about-section, .mv-section, .values-section,
    .areas-section, .process-section { padding: 60px 20px; }
    .values-grid { grid-template-columns: 1fr; }
}