/* ── About / Quiénes Somos ────────────────────────────────── */

/* ── ORIGIN ─────────────────────────────────────────────── */
.ab-origin {
  padding-block: 5.5rem;
  background: var(--bg-primary);
}
.ab-origin__grid {
  max-width: 720px;
  margin-inline: auto;
}
.ab-origin__content h2 {
  margin: 0.35rem 0 1.25rem;
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  line-height: 1.2;
}
.ab-origin__content p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.72;
  max-width: 600px;
  margin-bottom: 1rem;
}
.ab-origin__milestones {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
  border-left: 2px solid var(--border);
  padding-left: 1.5rem;
}
.ab-origin__ms {
  position: relative;
  padding-block: 0.75rem;
}
.ab-origin__ms::before {
  content: '';
  position: absolute;
  left: -1.625rem;
  top: 1.05rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 0 2px var(--primary);
}
.ab-origin__ms-year {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.ab-origin__ms-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── FOUNDER ─────────────────────────────────────────────── */
.ab-founder {
  padding-block: 5.5rem;
  background: var(--primary-dark);
}
.ab-founder__grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: center;
}

/* Photo placeholder */
.ab-founder__photo {
  position: relative;
}
.ab-founder__photo-inner {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
}
.ab-founder__photo-inner::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(0,83,115,0.35), transparent);
  pointer-events: none;
}
.ab-founder__photo-inner svg {
  width: 72px;
  opacity: 0.5;
}
.ab-founder__photo-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

/* Quote */
.ab-founder__quote-block {
  position: relative;
}
.ab-founder__quote-mark {
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 0.7;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 0.5rem;
  user-select: none;
}
.ab-founder__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.2vw, 1.375rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  margin: 0 0 2rem;
  max-width: 560px;
}
.ab-founder__signature {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.ab-founder__sig-line {
  width: 40px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}
.ab-founder__sig-name {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.15rem;
}
.ab-founder__sig-role {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* ── MISIÓN Y VISIÓN ─────────────────────────────────────── */
.ab-mv {
  padding-block: 5.5rem;
  background: var(--bg-secondary);
}
.ab-mv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.ab-mv__card {
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.ab-mv__card--mission {
  background: var(--primary);
  color: #fff;
}
.ab-mv__card--vision {
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.ab-mv__card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}
.ab-mv__card-icon {
  width: 44px; height: 44px;
  margin-bottom: 1.25rem;
}
.ab-mv__card-icon svg { width: 100%; height: 100%; }
.ab-mv__card--mission .ab-mv__card-icon { color: rgba(255,255,255,0.8); }
.ab-mv__card--vision  .ab-mv__card-icon { color: var(--primary); }

.ab-mv__card-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.ab-mv__card--mission .ab-mv__card-label { color: rgba(255,255,255,0.55); }
.ab-mv__card--vision  .ab-mv__card-label { color: var(--primary); }

.ab-mv__card-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: none;
  margin: 0;
}
.ab-mv__card--mission .ab-mv__card-text { color: rgba(255,255,255,0.88); }
.ab-mv__card--vision  .ab-mv__card-text { color: var(--text-secondary); }

/* ── VALUES ──────────────────────────────────────────────── */
.ab-values {
  padding-block: 5.5rem;
  background: var(--bg-primary);
}
.ab-values__header {
  text-align: center;
  margin-bottom: 3rem;
}
.ab-values__header h2 {
  margin: 0.35rem 0 0;
}
.ab-values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.ab-val {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border-top: 3px solid var(--primary);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition-md), box-shadow var(--transition-md);
}
.ab-val:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ab-val__icon {
  width: 40px; height: 40px;
  background: var(--primary-tint);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.ab-val__icon svg { width: 100%; height: 100%; }
.ab-val__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.6rem;
}
.ab-val__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: none;
  margin: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ab-values__grid { grid-template-columns: repeat(2, 1fr); }
  .ab-founder__grid { grid-template-columns: 260px 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .ab-founder__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ab-founder__photo-inner {
    aspect-ratio: 16 / 9;
    max-height: 220px;
  }
  .ab-mv__grid { grid-template-columns: 1fr; }
  .ab-values__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ab-values__grid { grid-template-columns: 1fr; }
  .ab-founder__quote { font-size: 1.0625rem; }
}
