/* ===================== MISION / VISION ===================== */
/* Título general */
.mv-header {
  text-align: center;
  margin-bottom: 50px;
}

.mv-header .eyebrow {
  color: var(--green-700);
  letter-spacing: .15em;
  margin-bottom: 6px;
}

.mv-header .h2 {
  margin-bottom: 10px;
}

.mv-header .sub {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

.mv-section {
  padding: 80px 0;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* Caja */
.mv-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 40px 35px;
  border: 1px solid rgba(144,169,85,0.35);
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  position: relative;
}

/* Etiqueta superior */
.mv-tag {
  display: inline-block;
  background: var(--green-700);
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 14px;
}

/* Título estilo fuerte */
.mv-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}

/* Texto */
.mv-text {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}
