/* ══════════════════════════════════════
   SOBRE NOSOTROS — sobre-nosotros.css
══════════════════════════════════════ */

/* ── Hero ── */
.about-hero {
  margin-top: 58px;
  position: relative;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  /* background-image se inyecta via style= en el HTML */
  background-color: var(--verde);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5% 3rem;
  max-width: 700px;
}
.about-hero-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lima);
  margin-bottom: 0.7rem;
  display: block;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: #fff;
  line-height: normal;
  margin-bottom: 0.7rem;
}
.about-hero h1 span { color: var(--lima-btn); }
.about-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 560px;
}

/* ── Intro + imagen ── */
.about-intro {
  padding: 5rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  background: var(--blanco);
}
.about-intro-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--verde-mid);
  margin-bottom: 0.8rem;
  display: block;
}
.about-intro-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--negro);
  line-height: normal;
  margin-bottom: 1.2rem;
}
.about-intro-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
}
.about-intro-body p + p { margin-top: 1em; }

.about-intro-img { position: relative; }
.about-intro-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 12px 48px rgba(0,0,0,0.12);
}
.img-chip {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--verde);
  color: #fff;
  border-radius: 10px;
  padding: 1rem 1.3rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.img-chip-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--lima-btn);
  line-height: 1;
  display: block;
}
.img-chip-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
  display: block;
}

/* ── Misión / Visión / Valores ── */
.mvv-section {
  background: var(--fondo-episodios);
  padding: 5rem 5%;
  border-top: 1px solid var(--gris-border);
  border-bottom: 1px solid var(--gris-border);
}
.mvv-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3.5rem;
}
.mvv-header-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--verde-mid);
  margin-bottom: 0.7rem;
  display: block;
}
.mvv-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  color: var(--negro);
  line-height: normal;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.mvv-card {
  background: var(--blanco);
  border: 1px solid var(--gris-border);
  border-radius: 12px;
  padding: 2rem 1.8rem;
  transition: box-shadow .25s, transform .25s;
}
.mvv-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}
.mvv-icon {
  width: 44px; height: 44px;
  background: var(--verde);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.mvv-icon svg { width: 20px; color: var(--lima-btn); }
.mvv-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--negro);
  line-height: normal;
  margin-bottom: 0.7rem;
}
.mvv-card-body {
  font-size: 0.87rem;
  color: var(--gris-texto);
  line-height: 1.75;
}

/* ── Valores destacados ── */
.valores-section {
  background: var(--verde);
  padding: 5rem 5%;
  position: relative;
  overflow: hidden;
}
.valores-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1400&q=15') center/cover no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.valores-inner { position: relative; z-index: 1; }
.valores-header {
  margin-bottom: 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.valores-header-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lima);
  margin-bottom: 0.6rem;
  display: block;
}
.valores-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  color: #fff;
  line-height: normal;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.valor-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 1.5rem 1.3rem;
  transition: background .25s;
}
.valor-item:hover { background: rgba(255,255,255,0.1); }
.valor-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--lima);
  margin-bottom: 0.7rem;
  display: block;
}
.valor-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: normal;
}
.valor-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .about-intro { grid-template-columns: 1fr; gap: 3rem; }
  .about-intro-img { order: -1; }
  .img-chip { bottom: -14px; left: 14px; }
  .mvv-grid { grid-template-columns: 1fr 1fr; }
  .valores-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .about-hero { height: 300px; }
  .mvv-grid { grid-template-columns: 1fr; }
  .valores-grid { grid-template-columns: 1fr 1fr; }
}

.about-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,25,10,0.2) 0%, rgba(10,25,10,0.75) 100%);
  pointer-events: none;
}
